OK. I inserted all the code you said to do, and I still cannot get this to work correctly. I’m about to give up on this as a lost cause, and look for another download that will be easier to modify. (If I had realized how difficult it would be to simply move the “toggle screen” button I never would have downloaded your file. It works great without the button, anyway! My last hope is that you could email me a new “pictures_background_preview.as” file that has the modified code you gave me in 2 separate comments above, with a position number that would place your button in the bottom-left corner of the movie, rather then in the center as you have it on the preview. Also… let me know if there are any modifications required within the actual .fla file as well. (My email is diane@simplydesign.net)
hello mate, i am looking to blur fade the images into each other. the following code blur fades in and out for the old clip, but only alpha fades in on the newclip.
Tweener.addTween(oldClip, { delay:0.2,time:3,_Blur_blurX:40,_Blur_blurY:40, _alpha:0, transition:tweenerTransition,onComplete:hideMc,onCompleteParams:[oldClip]} );
Tweener.addTween(newClip, { delay:0.3,time:6,_alpha:100, _Blur_blurX:0,_Blur_blurY:0, transition:tweenerTransition } );
assistance would be greatly appreciated
cheers
- Has been a member for 4-5 years
- Author was Featured
- Exclusive Author
- Sold between 50 000 and 100 000 dollars
- Bought between 1 and 9 items
- Europe
- Referred between 100 and 199 users
try removing the “delay” property.
could you please tell me how i could use a next and previous button to manually flick through the images?
thanks
hi everything works fine but when i refresh my html page, e images don’t load up. why is that so.
was there ever an as3 version?
Hi,
It is possible to put this background in dreamweaver and make whole website in dreamweaver with tables and images above this “aplication”?
Thanks.
Hi,
I know this is a banner rotator, but is it possible to set one image to display the whole time? Like in my case, I have one image to show initially and will add up more images later on.
Thanks.
Thanks! Works well now.
I just have another question, does the script for this fullscreen image includes bitmap or image smoothing? Because I just noticed that when the browser window is resized or if it is displayed on a bigger monitor, the image shows pixelation or distortion.
Thanks.
- Has been a member for 4-5 years
- Author was Featured
- Exclusive Author
- Sold between 50 000 and 100 000 dollars
- Bought between 1 and 9 items
- Europe
- Referred between 100 and 199 users
yes it does. Try using images with higher quality. Because todays monitors are very big 
Hi is it possible to CENTER vertically and horizontally the background images (or the clip that hold the images) ? I’ve found the align.as file and try to add some customization but without result.
Please help me
Yes it is possible , but that need some customization , you need to change the setBgSize function.
Try adjusting the image by height, there is a comment in the setBgSize function that says:
“match height and adjust width to fit” , so leave just that portion of the “if” statement.
I think that that would work.
Hi Thank you for the quick reply… I’ve found the setBgSize function but there is no code commented inside.
//FUNCITON TO SCALE ANY MOVIE CLIP TO FIT THE WHOLE SCREEN
// scales the mc proportionally to fit full screen
function setBgSize(mc:MovieClip) { // pass in the mc to be scaled
var imageRatio:Number = mc._width/mc._height;
var stageRatio:Number = Stage.width/Stage.height;
if (stageRatio>=imageRatio) {
// match image width and adjust height to fit
mc._width = Stage.width;
mc._height = Stage.width/imageRatio;
} else {
// match image height and adjust width to fit
mc._height = Stage.height(;
mc._width = Stage.height*imageRatio;
}
}
I tryed to comment the if and else condition to see any results but nothing hapened. All the images remains Top Left aligned
Sorry for my bad english and thank you
- Has been a member for 4-5 years
- Author was Featured
- Exclusive Author
- Sold between 50 000 and 100 000 dollars
- Bought between 1 and 9 items
- Europe
- Referred between 100 and 199 users
function setBgSize(mc:DisplayObject) { // pass in the mc to be scaled
var imageRatio:Number = mc.width/mc.height;
var stageRatio:Number = stage.stageWidth / stage.stageHeight;
// match image height and adjust width to fit
mc.height = stage.stageHeight;
mc.width = stage.stageHeight * imageRatio;
// add this line:
Align.topMiddle(mainTimeline.imagesHolder)
}
I think that should work.
does not work for me…i just fix the dimensions of the images and look better. Thanks
i have had problem with full screen in ie8 and also when leave the slideshow page come back to it it does not load (in ie8). also gave up on removing the toggle screen button. just made it invisible. Why is that put in the middle anyway?
How can I remove the toggle button?
hi everything works fine but when i refresh my swf page, e images don’t load up in html . why is that so.
when i publish the swf the error message is Scene=Scene 1, layer=actionscript code, frame=1, Line 324 Type mismatch.



141 Purchases
56 Comments