How to use downloaded gallery in your portfolio website?

i'm fairly new to flash and decided to build my own portfolio website. using flash cs4
the overall website is looking and functioning fine but i want to add an image gallery.
I downloaded one which included .fla .as xml and swf files but i dont know what to do with them in the sense of adding them to a particular page in my flash site.........
if anyone knows what to do , help would be great!!

First make sure what you downloaded works per your expectations.  Then look into using the Loader class to dynamically add the gallery swf to your existing Flash file.  You can probably find a tutorial on Google using terms like "AS3 Loader tutorial".
The basic scenario involves using the Loader class to add the swf dynamically and then positioning it as desired.  You might have an empty movieclip on teh stage ready to be a home for it, or you might just want to add it to a timeline.  There is no guarantee the gallery is designed to be readily addable this way though, so you may need to end up tweaking that file via the fla/as files you acquired.

Similar Messages

  • How to use downloaded Adobe color theme (.ase) in Photoshop cc?

    How to use downloaded Adobe color theme (.ase) in Photoshop cc?

    I can confirm this functions but there is no indication it's been successful and the swatches appear in the Swatches panel, *not* in the Libraries panel where I would expect them.  My issue is that IMO this should not even be an issue, because a palette created on color.adobe.com should just show up in PS CC unless I'm not understanding the intended behavior.
    Anyone?

  • How do you download music from your home computer to your ipod?

    How do you download music from your home computer to your ipod?

    Connect it to your omputer; iTunes should open; select the files you want on your iPod in the various categories (music, podcasts, photos, etc); click on Sync.
    Read the annual: http://support.apple.com/manuals/#ipod

  • How do you download photos from your computer to the iphone 4s?

    How do you download photos from your computer to the iphone 4s?

    You sync as you do everything else.
    Open itunes connect iphone, select what you want to sync, sync.
    iPhone User Guide (For iOS 5.0 Software)

  • HT4623 how do you download apps on your computer and sync them to your iPad?

    how do you download apps on your computer then sync them to your iPad?

    Take a look at this link under iCloud & iTunes, http://www.apple.com/support/ipad/

  • How do you download videos in your ipod nano??? Can you even???

    How do you download videos in your ipod nano??? Can you even???

    Nano doesn't load and play video, BUT if your just wanting to transfer a video file from one PC to another you can do that.

  • How do I download pdf file directly from website on safari?

    how do I download an pdf file from website on Safari?

    Safari will use OSX' Preview to display PDFs unless you tell it otherwise, so I'm not sure what exaxctlyy you are asking...
    Mylenium

  • How I can download from the adobe's website the livecycle rights management licenses?

    How I can download from the adobe's website the livecycle rights management licenses?

    Try using a different browser.

  • How can you download photos from your iphone to your macpro book

    How can I download photos from my iphone onto my macpro?

    You import pics taken with your iphone as you would with any digital camera.
    Open iphoto, connect iphone, import pics

  • How do you download data from your macbook to the ipad?

    how do you transfer data from your macbook to the ipad?

    What data do you want to transfer ? Music, films, tv shows, photos and ibooks are done by syncing in iTunes (for which there is some help in the iPad manual which can be downloaded from here http://support.apple.com/manuals/#ipad). Documents can also be done via iTunes, but it depends upon the app and the transfer method(s) that it supports e.g. file sharing via the bottom of the device's apps tab on your computer's iTunes, via your wifi network, cloud services, email attachments etc
    Edit : have you got the Keynote app on your iPad, or any other app that supports keynote presentations ? Without a 'suporting' app you can't store a document/file on the iPad (unlike computers files have to be stored within an app)..
    Message was edited by: King_Penguin

  • How do I download an  app from a website?

    I would like to download apps from website that offer them.  How do I do it?

    If you mean a site apart from the Play store, you will need to set "Unknown Sources".  In Gingerbread, this is usually under
    Settings>Applications>Unknown sources and check the box.   This allows apps to be installed from sources other than the Play store.
    Then, you can use the browser on your device to go to the web site, download the app and then install it.  You can also use a browser on your computer if you have a way to transfer files to the phone (SD card or USB for example).
    BUT....., make sure you that you really trust the web site!  Turning Unknown Sources on is considered dangerous as you can easily install malware, it is safer to only download apps from the Play store.   Once you have downloaded the app you need, turn Unknown Sources off again.
    That said, there are times it makes sense for certain versions of apps that aren't in the Play store, but again, make sure that you understand the risks.

  • How to use Xserve to host my ecommerce website

    Hi everyone,
    I'm really confused on how to use an xserve to host an ecommerce website I want to start for my business. I'm familiar with webpage code and stuff, but not really with the hosting/dns type stuff. If I were to purchase an Xserve, what exactly would that allow me to do? I'm very wary of hosting my website with some of these hosts out here, and I also believe I'm going to need a reliable website capable of handling a good amount of people all at once. If anyone could please fill in the blanks for me about how I would hook the Xserve up and have it attached to my domain name (for an example we can use mydomain.com as the domain name) and how it would work with the internet coming into my house now, that would be great. I just don't understand how any of that works. THANKS!

    Askacel,
    We do this trick for our customers. We are an ISP that manage the Xserve's, Dns and everything,only for Mac's. Find an ISP that gives you co-location and supports Xserves, this way you can concentrate on building your commerce site and let the ISP handle server stuff.
    Willem
    appleisp.nl

  • When using a new pc, how do you download all of your music and playlists at the same time?

    I bought a new pc, and I would like all of my itunes content on here. I seem to be able to only download one song at a time. How can I get my entire library on my new pc

    Hello beckyinindiana,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/ht4527
    Best of luck,
    Mario

  • How to use download listener for xml files?

    Hi all,
    In my usecase I should write the xml contents to the file using Output Stream writer.
    As of now I am using the below lines of code in the download listener method.
    String s = myDoc.getContent().toString();
    w.write(s);
    myDoc is my xml document. I can see the file but there is no content.
    Kindly come out with your help in which I could achieve this.
    Thanks,
    Phani.

    Hi john,
    What all I am trying to ask is how could I write xml data to external file by clicking a button or a link etc.. which is in the JSF page.
    Now for that I created a button and dragged the <af:fileDownloadActionListener> into the button.
    I binded the listener with the backing bean method.
    public void sayHello(FacesContext context, OutputStream out) throws IOException
    OutputStreamWriter w = new OutputStreamWriter(out, "UTF-8");
    IDocument myDoc = new Document2004();
    myDoc.addEle("sai");
    w.write(myDoc.getContent().toString());
    w.flush();
    in the method you can see IDocument that is an interface which I have in the external JAR files that I am using to write data to MS Word.
    The myDoc which I created as an object of IDocument has lot of methods in which I am using addEle(String) which writes a string to word document.
    in the writer object writer I am getting the content of the myDoc inorder to convert that to string as it will be in xml format.
    When I am writing every thing I can download and save the document but unable to see the data that I have written that is "*sai*" instead a blank page is getting opened.
    When I do the same with Creating a file object in the local disc using File f = new File(path) rather than downloading it using the listener I can see the contents what I have written.
    This is what all I mean to ask. Kindly come up with your help
    Thanks,
    Phani.

  • How do you download music from your other computer to your new one?

    I have 2 ipods with music from my old computer on it and now my new computer doesnt give me the option to download my music to itunes. I REALLY WANT TO BUY NEW SONGS! please help us figure out how to do this! thanks

    You need to transfer the music from your old computer to the new one. You can use Migration Assistant or just copy the files from one to another.
    If they were purchased from the iTunes Store all you have to do is "authorize" the computer to play them. You can authorize up to five computers.
    How to move your music to a new computer

Maybe you are looking for

  • Restore a Macbook Pro without the disc...

    Hello!   I have had some issues with my Macbook Pro latley, so I have been trying to completly reset my Mac to the factory-preferences, without succes. The disc that I need to do this has somehow vanished and can't find it anywhere.    So my question

  • HT201210 i am trying to restore an iphone 3g but it keeps failing

    can anyone help with this ?

  • Joining Multiple Line Segments

    Is there a way to join any number of line segments into one continuous line? The end points overlap, but selecting all and going to Object>Path>Join seems to have no effect. Making a compound path helps, but doesn't allow me to smooth the final path.

  • Batch Rename Multiple files with different names

    Hi, Is there any way to batch rename multiple files with individual names? I.e IMG_123 changed to  RSP45AS IMG_124 changed to MOL157A IMG_125 changed to AGKH135 IMG_126 changed to MNOLH13 IMG_127 changed to ASFBLUG Etc. Are they any programs or scrip

  • Enter Key

    I have a chart in a fillable PDF form built in Acrobat Pro X that functions using JavaScript. Unlike any of the other charts and fields in the form, this chart doesn't recognize the Enter key to submit and answer or tabulate a calculation. Any though