Search  

XML OVERLIGHT IMAGE VIEWER

HomeBrowse CategoriesFlashApplications and UtilitiesImage ViewersXML overlight image viewer
Flash 8 Flash File or higher.
Resizable XML image viewer with overlight animated effect.
Very easy to change at XML file:
1. Number of images.
2. Duration of display of a image.
5. URL for each of images (the current URL is my portfolio on the FlashDen.net).

Check out my files:

Image viewers:

Old Movie Slideshow XML Old Movie Slideshow XML Slideshow With Blocks Transition XML Overlight Image Viewer XML Multiblocks Slideshow

 

Utilites:

Bubbles Clock

 

Animations:

Microscopic bubbles animation Posted about 1 month ago

nice

Posted about 1 month ago

It`s 1 URL for all pictures. Could you customize your flash to have 1 URL by picture ? Thanks

Posted about 1 month ago

stephane, I’ll make changes at the near future :)

Posted about 1 month ago

Item was updated. You can add 1 URL by picture now.

Posted about 1 month ago

Hello, drfisher.

Thank’s for your products. i am enjoing it. But one problem – is image rotation. CAn you help me to change image rotation to random?

Thank’s for your help.

Posted about 1 month ago

wideprofile, open FLA file, press F9, remove old ‘showNext’-function and copy/paste this ‘showNext’-function:

function showNext():Void {
    myPause = (_global.myDelay + animTime) * 1000;
    picCount = Math.floor(Math.random()*imgLoader.bmp_array.length);
    img_mc.attachBitmap(imgLoader.bmp_array[picCount],0);
    _global.slShow.link_mc.setURL(_global.slShow.links_ar[picCount]);
    _global.slShow.changePic.intervalID = setInterval(_global.slShow.changePic, myPause);
}
Posted about 1 month ago

Thank you for help. It works.

Best regards

Posted about 1 month ago

Hi,

I have bought your file which I love, thank you. BUT is there anyway that I can change the gap between the images to a smaller time? Ideally I don’t want their to be a blank space at all between images. So it merges from one image to another so if I could reduce that time it would be great?

Thanks

Kt

Posted 29 days ago

kjmedia, open FLA file and press F9 to open Actions panel. Set the ‘animTime’ at the 20 line as you wish (use seconds).

Posted 29 days ago

Can this be used as is without publishing / building ? I just need to be able to rotate a few images with this that I will specify in the XML file. Do you have a sample file that shows this? The help.txt file doesn’t go into any detail other than how to publish this via Flash 8 or CS3 . Thanks.

Posted 23 days ago

You can use this as is. Just edit XML file and edit ‘width’ and ‘height’ values in ‘object’ and ‘embed’ tags in HTML . XML file must be in a same folder with SWF movie.

Posted 22 days ago

Setting height / width as per the markup below does not seem to have any effect for me. Any ideas?

<OBJECT classid=”clsid:D27CDB6E-AE6D-11cf-96B8-444553540000” codebase=”http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0” WIDTH =”747” HEIGHT =”266” id=”myMovieName”> <EMBED src=”overlight_slideshow.swf” quality=high bgcolor=#000000 WIDTH =”747” HEIGHT =”266” NAME =”myMovieName” ALIGN =”” TYPE =”application/x-shockwave-flash” PLUGINSPAGE =”http://www.macromedia.com/go/getflashplayer”>

Posted 18 days ago
okains, try this:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="747" height="266" id="myMovieName" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="URL_of_the_SWF_file" />
<param name="quality" value="high" />
<param name="bgcolor" value="#000000" />
<embed src="URL_of_the_SWF_file" quality="high" bgcolor="#000000" width="747" height="266" name="myMovieName" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>
Posted 18 days ago

How can I stop the swf on the last image

Posted 5 days ago

samirtuladhar, replace the ‘showNext’ function at the first frame in the FLA -file with this

function showNext():Void {
    var myPause:Number;
    myPause = (_global.myDelay + animTime) * 1000;
    picCount++;
    img_mc.attachBitmap(imgLoader.bmp_array[picCount],0);
    _global.slShow.link_mc.setURL(_global.slShow.links_ar[picCount]);
    if (picCount != (imgLoader.bmp_array.length - 1)) {
        _global.slShow.changePic.intervalID = setInterval(_global.slShow.changePic, myPause);
    }
}

Posted 4 days ago