How do I change the loading of quotes from ‘random’ to ‘sequential’?
currquote = Math.floor(Math.random()*(quotearr.length - 1));to
currquote = -1;Then open fla->home.fla and publish it.
I’d like to have fade in/out transition for the BG slideshow and image galleries rather than wipe in/out transition. How can I do this?
Download instructions here
How can I make tha images of the background slideshow ‘fit’ the screen rather than ‘fill’ it?
Download instructions here
How do I disable the ‘HOW-TO’ dialog box in galleries?
Open as->template->Gallery.as.as and delete or comment out lines 151 to 167. Then open fla->gallery.fla and fla->logingallery.fla and publish them.
How can I make a link in the main menu open in the same page than in a new page?
getURL(initobj.file, "_blank");to
getURL(initobj.file, "_self");Then open fla->main.fla and publish it.
I’m not able to understand from the help file about how to add new users to the client login section. Any other resources?
Check out this blog post
My gallery thumbnail images are smaller than the default dimensions (220×138). How can I center these images into their placeholders?
Open as->imagegal->Thumb.as
Replace line 51 that sayst1_mc._x = t1bg_mc._x;with
t1_mc._x = t1bg_mc._width/2; t1_mc._y = t1bg_mc._height/2;
Publish gallery.fla and logingallery.fla
