Use the product in ONE SINGLE NON-COMMERCIAL project ( website or other multimedia project not generating income ), your personal work or work for a client. You may not redistribute / resell the product, without the FlashTuning.net written permission, but you may modify its content.
Use the product in ONE SINGLE COMMERCIAL project (website, CD-ROM, offline presentation etc), your personal work or work for a client. You may not redistribute / resell the product, without the FlashTuning.net written permission, but you may modify its content.
Use the product in MULTIPLE COMMERCIAL / NON-COMMERCIAL projects (websites, CD-ROMs, offline presentations etc), your personal work and work for a client. You may not redistribute / resell the product, without the FlashTuning.net written permission, but you may modify its content.
×
I’m using 720×480 images. I updated the sizing parameters and everything is working great, except the play/previous/forward buttons are no longer on the far right (closer to center since the movie is larger). Is there a setting to keep these buttons on the far right? Or always keep them in the center?
Thanks
Jim
Edit the config.xml file and adjust the itemsX / Y params.
HI,
I need to make the source of the description appears accents (á, í, is, etc.) and ç. how I do it?
Check question number 2 from the FAQ area.
Hi,
the font of file no have special characters how i can change? if is a dynamic text and dont have in flash file? I need help quick. Thank you.
See the answer below, you can also edit the text field in Flash and open the properties panel and de-activate the embed character set if activated.
thank you
hello, i am interested in this flash gallery but i was wondering if I can imported to the fla file that I am already working.the page I am working is actionscript 3 and it is an xml flash site.
thanks
Hi,
Thank you for your interest.
Check this code snippet on flashforum site on how to correctly load any external swf or image in as3:
http://www.flashforum.net/questions/95/loading-swfs-or-images-using-as3
FT
I bought the XML Image Gallery. Thank you for your great work! I have two questions, as follows:
1. How can I get rid of the category dropdown list box in the displayed image? I do not want to show this category but I do not see a parameter to get rid of it.
2. I would like to use this component in two different pages but I do not want to have all the resources twice. Is it a way to define the config.xml file in the html page so each page know what config file to use? I would like page A to open the XML scroller with certain configuration, and page B to open the scroller with a different configuration. Both using the same resources or directories.
Thanks,
Maurice
Hi,
Thank you for purchasing the Image Gallery AS3 product.
1. Drop down category list is not visible in this product version ( as you can see in the online example )
2. You can use FlashVars inside the html page for the object and embed tags of the Flash object. Check question number 21,7,8 and other useful questions from the FAQ area on our site
Regards,
Flashtuning
Edit the bigImageBox clip, go to the ReadMe layer / go to line 41 and on top of the finished_loading function put:
e.target.content.smoothing = true;
hello, again
sorry to be a pest but i am still having trouble getting the smoothing to work; the comboBox code worked, thank you!
i had a friend who is a better programmer add some code to test the presence of smoothing (i have placed it below, fyi), and the bigimages do not in fact have smoothing – this is crucial to my project, and must be on, so your help would be greatly appreciated
the thumbnails do in fact have smoothing, but what would be helpful is to know where the bigimages are actually being loaded and added, or if you could please check your code and perhaps modify it to force smoothing to be on for the bigimages
if you add the code below into frame 1, you will see that all of the bigimages will give this result -
BITMAP DETECTED! SMOOTHING IS false
thank you, the component is great but the images have to be smooth
best, jodi
code here:
/////////////////////////////
//Danny’s Child Finder Code//
/////////////////////////////
this.addEventListener(MouseEvent.CLICK, trace_clicked);
function trace_clicked(e:MouseEvent):void{
trace ();
trace (“CLICKED: “+e.target+”, NAMED “+e.target.name+”, WITH “+e.target.numChildren+” CHILDREN:”);
trace(find_children(e.target));
/*for (var i:int =0; i<e.target.numChildren; i++){
trace (" "+e.target.getChildAt(i)+" AT DEPTH "+i);
//childArray.push(e.target.getChildAt(i));
}*/
}
function find_children(mother:DisplayObjectContainer):Array{
trace (mother.name+": FIND MY CHILDREN! I HAVE "+mother.numChildren+"!");
var childrenArray:Array = new Array();
for (var i:int =0; i<mother.numChildren; i++){
var daughter:DisplayObject = mother.getChildAt(i);
var daughterStatsArray = [daughter, daughter.name, i, mother.name, mother];
//trace (daughterStatsArray);
childrenArray.push(daughterStatsArray);
if (daughter is DisplayObjectContainer && daughter.numChildren){
trace(find_children(daughter));
} else if (daughter is Bitmap){
trace ("BITMAP DETECTED! SMOOTHING IS "+daughter.smoothing);
//trace (daughter.name+" has no children and is a "+daughter+". Her mother is "+mother.name+", the "+mother);
}
}
return childrenArray;
}
function read_children(childrenArray:Array):void{
trace (" "+childrenArray[0]+" NAMED "+childrenArray[1]+" AT DEPTH "+childrenArray[2]+", CHILD OF "+childrenArray[3]+" WHICH IS A "+childrenArray[4]);
}
/////////////////////////////
//end of Code//
/////////////////////////////
hi there
i bought this and am trying to customise the pulldown a bit – i can skin the comboBox but all of the regular as3 setStyle commands are not working
all i want to do is increase the font size, change the colour, and hopefully, the font – please advise
also, how do i apply smoothing to the loaded bigimages, please? thanks
Hi,
Edit the .fla file in Flash / edit the thumbnailsMenu clip / go to the readMe layer and set the useBitmapSmoothing parameter value to 1. To adjust the font attributes you need to edit the css style fie in side the css folder and apply the styles you create there into the description text inside the config.xml file CDATA area for each image.
Also you can edit the description text box in Flash / select the text properties panel and adjust the text attributes.
FT
I’d like to use this on our company website, as it’s simple sleek and polished.
First though, I need to know if it can be imported as a MovieClip into an existing flash website and if I can specify its dimensions to fit the area I want to put it.
I also see all the images are the same size, all my images to put inside a gallery are various sizes, will it stretch images to fit or can it maintain image aspect ratios (full size as well as thumbnails).
Thanks!
Hi,
Sure you can change the swf object / embed tags width/height inside the html file(s) of your site. You need to have the images at a fixed size in this product version. To load an external resource in AS3 check this tutorial on flashuser.net:
http://www.flashuser.net/flash-tricks/loading-external-images-swfs-as3.html
Regards,
Flashtunng
The code on that page doesn’t work, I tried leaving comments but the page doesn’t seem to let me.
(line 07 doesn’t make sense – I get errors when using the code)
any help?
I am trying to load an xml image gallery resource in my flash site but whenever I try a sample image gallery, it resizes my site within my html page and clicking on any thumbnail just reloads the same image… I’m afraid If I purchase one, it still won’t work within my flash site.
Hy,
On line 7, you’ll have to close the right bracket, that’s why the code doesn’t work.
Test it in an empty project, then try using it in your flash project.
function loadResource(resURL) { var url = resURL; var request1 = new URLRequest(url); var loader1 = new Loader(); var mc1 = this.getChildByName("mc"); var nc = mc1.numChildren; if (nc) { var l1 = mc1.getChildAt(0); mc1.removeChild(l1); l1 = null; } loader1.load(request1);//start loading img/swf mc1.addChild(loader1); loader1.contentLoaderInfo.addEventListener("complete", finished_loading); loader1.contentLoaderInfo.addEventListener("progress", progress_loading); } function progress_loading(e:Event) {} function finished_loading(e:Event) {trace("Loading completed.");} loadResource("yourMcName.swf");Note: var mc1 = this.getChildByName(“mc”);
-> mc is the instance name of an empty MovieClip from the stage
Also the “README FIRST” document says to find support at http://www.flashtuning.net/tutorials/, this page is a 404, so no support
Bye
Hi,
Please send your PayPal transaction is to contact[at]flashtuning.net so we can check your details and describe what is the issue and we’ll get back to you as soon as we can with an answer. Also check the FAQ area link on top.
Regards,
FT
I’ve bought but I’ve problems to implement this thing
There’s no info to contact the developer.
So….what’s up?
Cheers