A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: loading jpegs into movie clips from xml, txt files

  1. #1
    Member
    Join Date
    Jun 2002
    Location
    Brixton, London UK
    Posts
    95

    loading jpegs into movie clips from xml, txt files

    I've used flash to load txt and xml files to create a list of links that when clicked on will load jpegs into a html frame. Does anyone know what actionscript can be used in either xml or text files that will load jpegs into a movie clip.
    cribology.com / bloodclart.com / blackwallpapers.net

  2. #2
    Senior Member pellepiano's Avatar
    Join Date
    Feb 2000
    Location
    Stockholm, Sweden
    Posts
    15,151
    In textfile.......

    image1=mona_Lisa.jpg

    In Flash........

    containerMC.loadMovie(image1);

    ...where containerMC is the instance name of a empty movieclip.Only non progressive jpg's will work.

    -Pelle Piano
    // Image Gallery
    www.studiobild.com
    // Photo Blog
    http://talesofthepixel.blogspot.com

  3. #3
    Member
    Join Date
    Jun 2002
    Location
    Brixton, London UK
    Posts
    95

    thanks, but!

    i shall give it ago, but the text file will have a couple hundred jpegs listed

    like mona_lisa1 upto 200

    will flash need a new (containerMC.loadMovie(mona_lisa1) for each image
    or will something like: containerMC.loadMovie(mona_lisa1-200); work
    cribology.com / bloodclart.com / blackwallpapers.net

  4. #4
    Senior Member pellepiano's Avatar
    Join Date
    Feb 2000
    Location
    Stockholm, Sweden
    Posts
    15,151
    The number can be dynamic so you can use just one button that would load the next image in the sequence, everytime its clicked..

    container.loadMovie(eval("image"+i));
    i++;

    You can do it in a number of ways.

    -Pelle Piano
    // Image Gallery
    www.studiobild.com
    // Photo Blog
    http://talesofthepixel.blogspot.com

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center