ActiveDen

full screen picture and banner background template rotator FADE

  • Has been a member for 3-4 years
  • Bought between 1 and 9 items
dianefleischer says
Purchased

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)

3 years ago
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
chromemoustache says
Purchased

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

3 years ago
  • Has been a member for 4-5 years
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Bought between 1 and 9 items
  • Europe
  • Referred between 100 and 199 users
dSKY says
Author

try removing the “delay” property.

3 years ago
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
chromemoustache says
Purchased

could you please tell me how i could use a next and previous button to manually flick through the images?

thanks

3 years ago
  • Has been a member for 4-5 years
  • Bought between 50 and 99 items
vektorslart says
Purchased

hi everything works fine but when i refresh my html page, e images don’t load up. why is that so.

3 years ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
rand0mroll77 says

was there ever an as3 version?

2 years ago
Author
dSKY dSKY replied

As3 version is in the queue. It will go live in next few days :)

2 years ago
  • Has been a member for 3-4 years
  • Bought between 1 and 9 items
pfngised says
Purchased

Hi,

It is possible to put this background in dreamweaver and make whole website in dreamweaver with tables and images above this “aplication”?

Thanks.

2 years ago
  • Has been a member for 3-4 years
  • Bought between 1 and 9 items
star5oup says
Purchased

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.

2 years ago
Author
dSKY dSKY replied

best thing you can do is to set the image to be displayed for a long period like 10000 seconds. ;)

2 years ago
Purchased
Default-user star5oup replied

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.

2 years ago
  • Has been a member for 4-5 years
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Bought between 1 and 9 items
  • Europe
  • Referred between 100 and 199 users
dSKY says
Author

yes it does. Try using images with higher quality. Because todays monitors are very big :)

2 years ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
matteosquassoni says
Purchased

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

2 years ago
Author
dSKY dSKY replied

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.

2 years ago
Purchased
Default-user matteosquassoni replied

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

2 years ago
  • Has been a member for 4-5 years
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Bought between 1 and 9 items
  • Europe
  • Referred between 100 and 199 users
dSKY says
Author
try this function:
    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.
2 years ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
matteosquassoni says
Purchased

does not work for me…i just fix the dimensions of the images and look better. Thanks

2 years ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
  • Australia
pouya099 says
Purchased

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?

2 years ago
Author
dSKY dSKY replied

You can go to flash IDE , and just delete the toggle button.
Check out the FAQ for the file, about refreshing the file in IE8

2 years ago
  • Has been a member for 3-4 years
  • Bought between 50 and 99 items
rosina says
Purchased

How can I remove the toggle button?

9 months ago
Author
dSKY dSKY replied

if you are referring to a full screen button, you can disable it through xml.

9 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
  • Lebanon
Alina1980 says
Purchased

hi everything works fine but when i refresh my swf page, e images don’t load up in html . why is that so.

5 months ago
Author
dSKY dSKY replied
Hi Alina
You might have an issue with browser caching the flash file. Try changing this line of code in html
var so = new SWFObject("full screen background.swf?" + Math.round(Math.random() * 10000, "fullScreen", "100%", "100%", "6", "#000000");
5 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
  • Lebanon
Alina1980 says
Purchased

when i publish the swf the error message is Scene=Scene 1, layer=actionscript code, frame=1, Line 324 Type mismatch.

5 months ago
Author
dSKY dSKY replied
If I’m correct, it appears to be this line of code:
setTimeout(mainTimeline, 'startAnimation', 400); // 
Try changing it to this:
_global['setTimeout'](mainTimeline, 'startAnimation', 400);
5 months ago
by
by
by
by
by