Flash gallery related question...

Hi,
I have downloaded the free Flash Gallery/Slide Show which works fine using index.html file. But I would like to add it to my Flash_Website instead of using as seperate html file.
How can I add it to my Flash_Website so that the slide show can be viewed inside my Flash File not in Web Browser using as index.html? Please do help me to solve this problem.
Since I can't see any option to attach the zip file, please find below the link for this free XML Image Slideshow.
http://www.flabell.com/flash-components#sorttype:date-sortmode:desc-filter:free-view:detai ls-onepage:no-perPage:10-page:2
The second one with the following title:XML Image Slideshow
Thanks in advance.
Note: Actually the index.html file content to be written in somewhere in the .Fla file which runs the slide show. The following is the index.html content for your reference:
<html>
<head>
<title>XML Image Slideshow</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#ffffff" style="margin:0;padding:0;" scroll="yes">
<script type="text/javascript" src="js/swfobject.js"></script>
<script type="text/javascript">
// JAVASCRIPT VARS
// cache buster
var cacheBuster = "?t=" + Date.parse(new Date());
// stage dimensions
var stageW = 560;//"100%";
var stageH = 350;//"100%";
// ATTRIBUTES
var attributes = {};
attributes.id = 'FlabellComponent';
attributes.name = attributes.id;
// PARAMS
var params = {};
params.bgcolor = "#ffffff";
/* FLASH VARS */
var flashvars = {};
/// if commented / delete these lines, the component will take the stage dimensions defined
/// above in "JAVASCRIPT SECTIONS" section or those defined in the settings xml
flashvars.componentWidth = stageW;
flashvars.componentHeight = stageH;
/// path to the content folder(where the xml files, images or video are nested)
/// if you want to use absolute paths(like "http://domain.com/images/....") then leave it empty("")
flashvars.pathToFiles = "banner/";
flashvars.xmlPath = "xml/banner.xml";
/** EMBED THE SWF**/
swfobject.embedSWF("preview.swf"+cacheBuster, attributes.id, stageW, stageH, "9.0.124", "js/expressInstall.swf", flashvars, params);
</script>
<table width="100%" height="100%" cellpadding="0" cellspacing="0">
<td align="center">
<!-- this div will be overwritten by SWF object -->
<div id="FlabellComponent">
<p>In order to view this object you need Flash Player 9+ support!</p>
<a href="http://www.adobe.com/go/getflashplayer">
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player"/>
</a>
</div>
</td>
</table>
</body>
</html>

You can use Loader class to achieve this. In your code you will need to load your preview.swf from your Flash_Website.
Loader class help along with sample code is available here http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/Loader.ht ml?allClasses=1
Google for loading/embedding swf file, e.g. http://www.google.co.in/search?hl=en&q=as3+embed+swf+inside+another+swf

Similar Messages

  • Can I use Bridge Flash Gallery in Dreamweaver

    LOVE Bridge's design for a photo gallery!  Is there a way that I can use that flash gallery as a gallery in a web design?  In otherwords, in a web design or as a link.  I have a main page designed in Dreamweaver and want to use the gallery created in Bridge as a means to view my artwork.  Is that possible.  I see that I can publish it, but how can I use as a link.  I thought this more a Bridge Forum question I hope...
    MANY THANKS in advance!!

    I appreciate all of your comments. I am also working throught this problem with my site www.jakgallery.com
    I used iFrame to incorporate but when uploaded it does not work. I contacted Adobe and suggested that many users are having similiar problems and that it seems like an issue they could address. They suggested I go to www.adobe.com/devnet and post my problem there and Adobe people would review this problem to find a fix.
    Just a suggestion. I think this is something that would be obvious to connect Bridge and Dreamweaver in an easier way. We'll see.
    Thanks, Mike

  • Auto start (play) flash gallery

    Hi,
    i have got a simple question. I created a flash gallery in Adobe Lightroom 3, which I use on my homepage ( http://joern-constabel.de/main.html?live ). How can I set this gallery to start rotation the images automaticly? (So, that you don't have to push the "play-button".)
    THX
    jörn

    I don't believe that feature is supported in Lightroom's default Flash galleries. You could have a look at SlideShow Pro Lr Plug-in, which is altogether much more powerful and flexible tool for making web galleries and slideshows.
    http://slideshowpro.net/products/slideshowpro_player/#ssplr

  • Modifying Lightroom Flash Gallery Templates

    I have created a Photo Gallery using Lightroom Flash Gallery in Bridge CS5 and have integrated it into a web site so far so good.
    I would like to replace the file name shown under the image with the Image Title from the Metadata and not to show the Title Bar.
    Does anyone know if other Templates are available that may do this?
    Otherwise is it possible to make changes to the existing templates?
    I have located the existing templates in the resources folder but have not figured out how to make the changes I want.
    Advice and guidance welcomed.
    Thanks
    Derek

    I have answered my own question, simple when you find where in the code it is done.

  • Flash Gallery --- Image size

    First, does anyone know of a good free program to create a
    flash gallery?
    I am currently using SimpleViewer and I have a question about
    the size of the photos. All the pictures are different sizes and
    SimpleViewer allows me to set a maxium height and width.
    (maxImageWidth)
    For some reason, it stretches some photos and it doesn't keep
    the size of the photos (I have it set at 480 for both height and
    width). I am looking for gallery that will allow me to 'auto' set
    the height and width so that the size of the photos won't be
    stretched out and will appear as I have uploaded them.

    help

  • Flash Gallery Template not working as expected

    I am very new to Flash and barely know ActionScript. I have created a flash gallery using the in built template in Flash8, which works fine. The gallery forms part of my gallery page of a separate SWF flash site. I load the gallery using a loder component. Since the gallery navigation works by targeting the root folder, my site gets screwed up. The question is, how do i modify the ActionScript in the gallery.fla file (flash inbuilt template), so that once loaded into the main site, it doesnt target the root timeline, but targets its own timeline i.e. the gallery's own timeline. I hope i'm making sense?
    Please see below for the code in the Flash Gallery. PS: I didnt write the code - its inbuilt into the template:
    function updateFrame (inc) {
    // send slides to new frame
    newFrame = _level1._currentFrame + inc;
    _level1.gotoAndStop(newFrame);
    updateStatus();
    if (_level1._currentFrame == 1) {
      prevBtn.gotoAndStop(2);
    } else {
      prevBtn.gotoAndStop(1);
    if (_level1._currentFrame == _level1._totalFrames) {
      nextBtn.gotoAndStop(2);
    } else {
      nextBtn.gotoAndStop(1);
    function updateStatus () {
    _level1.statusField = _level1._currentFrame + " of " + _level1._totalFrames;
    function autoplayInit () {
    startTime = getTimer();
    hideControls();
    updateStatus();
    function autoplay () {
    if (autoplayStatus != 0) {
      // get the current time and elapsed time
      curTime = getTimer();
      elapsedTime = curTime-startTime;
      // update timer indicator
      indicatorFrame = int(4/(delay/(elapsedTime/1000)));
      indicator.gotoAndStop(indicatorFrame+1);
      // if delay time if met, goto next photo
      if (elapsedTime >= (delay*1000)) {
       if (_level1._currentframe == _level1._totalframes) {
        _level1.gotoAndStop(1);
       } else {
        _level1.nextFrame();
       autoplayInit();
    function hideControls () {
    nextBtn.gotoAndStop(2);
    prevBtn.gotoAndStop(2);
    updateFrame();
    autoplayStatus = 0;

    use this._lockroot=true in your template.

  • Centering a Flash Gallery made in PS CS3

    Hi,
    I'm in DW CS3 and I did an automated web gallery (Flash
    version) from PS CS3 and put it into DW CS3. You can see the
    gallery here:
    Flash
    Gallery
    As you can see, the flash gallery is not quite centered
    relative to the table. And believe me, it took me a long time to
    get it this close. I'm no coder, much less a CSS expert; I tried
    working within the <div> type format, and putting <div
    align="center"> into the code. No luck there. And I tried
    editing the CSS style from DW's CSS interface (the pencil icon
    thing). I found no way of centering it there.
    The final method you see here came closer; I selected the
    <div> in the design mode and cut and pasted it into a table
    and centered it there.
    So what have I done wrong so that it is still not centered?
    Tables should be a no-brainer.
    I appreciate any help on this. Many Thanks,
    Frank B.

    Wade's got it right.
    You need to use the Edit menu... not the Image menu.
    One will do the selection, the other does the whole picture.

  • Output Lightroom Flash Gallery for a website gallery?

    LOVE Bridge's design for a photo gallery!  Is there a way that I can use that flash gallery as a gallery in a web design?  In otherwords, in a web design or as a link.  I have a main page designed in Dreamweaver and want to use the gallery created in Bridge as a means to view my artwork.  Is that possible.  I see that I can publish it, but how can I use as a link.  I thought this more a Bridge Forum question I hope...
    MANY THANKS in advance!!

    Works fine on Windows 7 in Firefox 14, but not in IE 9...
    Marc

  • Two related questions:  ColdFusion 10/Java applications and J2EE supported servers

    I have two related questions:
    1.  CF10 and integration with Java Web applications
    We have a couple of Java applications running on JRun and interfacing with CF9 applications.  The JRun clusters were created through the JRun Admin and, apart from lack of Axis 2.0 support, have served us well for years now.  And, as would be the case, the ColdFusion9/Java/Flash application is a critical public-facing application that the business uses for bidding on projects.
    It appears that with ColdFusion 10 on Tomcat, we will not be able to run those Java applications on a Tomcat-CF10 JVM cluster.  Is this correct?  IF so, what are our options? 
    2.  J2EE Application Servers supported by Adobe for CF10
    Which of these is correct?
    A.  This URL (http://www.adobe.com/products/coldfusion-enterprise/faq.html) states "ColdFusion 10 supports IBM® WebSphere, Oracle® WebLogic, Adobe JRun, Apache Tomcat, and JBoss."
    B.  This URL (http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/products/coldfusion/pdfs/cf1 0/coldfusion10-support-matrix.pdf) states:
    "J2EE application servers: WebLogic Server 10.3, 11.1, WebSphere Application Server 7, ND 7 JBoss 5.1, 6.0, 7.1.0"
    I *think* "A" above is wrong re. support for Adobe JRun.  It does not specify a version of Apache Tomcat unless it is simply referring to the custom version the comes with CF10.
    Option "B" above shows no support of Adobe JRun or 'standard' Apache Tomcat.
    Thanks,
    Scott

    Question 1 above was answered:  "No support for Java web applications under CF10's custom version of Tomcat"
    Question 2:  No answer yet:  Is Apache Tomcat (NOT Adobe's customized version) supported for CF10 J2EE deployment?  I do not see any installation instructions on how to install CF10 on Apache Tomcat 6 or 7.
    Is anybody using Apache Tomcat as their J2EE app servers and, again, NOT Adobe's customized/limited version? 
    Thanks,
    Scott

  • Removing Flash Gallery From Web Site

    I recently created and uploaded an LR flash gallery to my web site. Although I previewed it, once it was up I noticed something I didn't like and wanted to remove the whole gallery. When I go to the site I see my original file is gone and the gallery has been split into little component files, flash, pictures, etc.
    Is there a simple method to remove the gallery or do I have to do it piece by piece?

    IT should all be in its own subfolder (best way). then all you have to do is delete that whole folder.
    Don
    Don Ricklin, MacBook 2Ghz Duo 2 Core running 10.5.1 & Win XP, Pentax *ist D See LR Links list at http://donricklin.blogspot.com for related sites.

  • Flash Player ActiveX Failure... Flash Gallery

    I can not watch my web-sites made with LR - "flash-gallery" anymore, before I have uninstalled The Flash Player; and re-installed it again, but as soon I have restarted my computer: The same problem! (and the links do not work proberly)
    I run Vista and ie7( the same problem in Firefox)
    Regards Lars Boesen

    Please ask your question on a forum for the Flash Player

  • Plz help i need to build a flash gallery with thumbs

    plz help me i need to build a flash gallery with thumbs plz
    give me the code or the fla file ........ !

    You don't give a lot of information about your set-up but there are a couple ways to do this.
    You can run Open Directory on your OS X Server and bind that to your Active Directory forest. This will allow people to authenticate against your OD using their AD credentials. This will work (it's better/easier in 10.5 than 10.4) but will result in Kerberos ticket which you would need to integrate to your site's permissions. You might be able to use Service ACLs to only allow authenticated users to access a certain site or service and that would take care of the authentication and control for you - but would require a certain amount of server manipulation and ODAD interaction. From the tone of your question I'm guessing this is an answer beyond what you were looking for.
    Alternately you should be able to build a website that presents a dialogue and uses LDAP against the AD server. Almost all the examples of this are, of course, using MS specific tools and code like C# and .Net. But even to get this working would certainly programming (using PHP, Java or some other language) to handle the request and answer from the server and this will be beyond anything included in CS4. Depending on your resources maybe you could create the whole website except for the authentication and have someone code that for you. But it would need to be someone not from the MS world because they will probably want to use tools that are Windows specific.
    Lastly there is the web specific .htaccess method that you could use without programming, but as you anticipate it will require you to manage the file that has the name/password information in it and will not talk to AD for information. This is the easy and local way to do it because it cuts AD out of the picture, but that puts the burden of maintenance on you.
    I guess the answer is yes this is possible, but it is not easy or automatic.
    Good luck,
    =Tod

  • LR 1-2 - export flash gallery to MobileMe - is it possible?

    Anyone tried to upload a flash gallery made in LR 1-2 and got it uploaded to MobileMe (.Mac)? Can not figure out how to do this or if it´s even possible..

    As a novice to lightroom I still have several questions:
    I have uploaded the files, they are visible on the iDisk (in finder), but I do not know how to give the gallery a password, or even give the url to another person.
    I can open the gallery on the I disk, but I don't see the gallery when I go the gallery on the webbrowser.
    I use LR 2.0, iMac with OS10.5
    Thanks for your help
    Jos Govaarts

  • Flash gallery output help

    Is there a way to create more than one column, either before or after, Bridge creates a flash gallery?  Thanks.

    Yor question is not very clear.
    If I understand it right, what you are seeing is because the Preview only shows the first 10 pictures.
    If you Save the gallery locally you will see them all.

  • How to Increase Number of Images from 500 in a LR3 Flash Gallery

    I noticed people asking (and I myself needed to know) so I thought I would explain how to increase the number of images (from 500) in a Flash gallery in Light Room 3
    1. I exported a Flash gallery from LR3 and it capped the gallery at 500 images.
    2.  Because I had roughly 600 images to put in the gallery, I exported the  remaining 100 as a separate flash gallery. (Going ahead and exporting 2  galleries will save you headache in a later step)
    3. I combined  all the images folders (copying "large" images from one folder to the  "large" folder in the gallery I want to upload to my site, etc.) so that  the files are all in one location.
    4. The next step is to  increase the gallery maximum in the code. Access (from the exported  gallery) GALLERYNAME/resources/mediaGroupData/group.xml and open the group.xml file. The line of code you will be changing is <media totalGallerySize="500"> Change the 500 to the number of photos you want in the gallery.
    5.  This next step isn't too complicated, but it is specific. You know have  to tell that flash file to look for the images you just transferred to  the images folder. The best way to do this is to open the group.xml file  for the second gallery you exported. Copy all the code beginning with <item>  to the bottom of the page. This code tells the gallery to look at your  specific images (Note: you'll notice within each item the names of your  image file)
    6. Return to the (other) group.xml file of the gallery you plan to use (with all your images in it). Scroll to the bottom and erase the lines </media> and </mediagroup> becaue you will repaste them in a moment. Next, paste the copied code there.
    7. Save & check your browser!
    I hope this was clear...please comment back and I'll clarify if needed.
    ro

    500 images in a single gallery is too many - think of the poor viewer!
    But if you must create Flash galeries with more than 500 images, you're better off editing the underlying engine - here's one link showing how to do it

Maybe you are looking for