Judy,

Here's the script I used for importing. Note: (1) it hides
each GIF immediately *after* it has been imported, and
(2) it assumes that the target directory/folder contains
only images.

-- SCRIPT FOR IMPORTING ANIMATED GIFs
on mouseUp
  put [name of the directory] into tDir
  set the defaultFolder to tDir
  put the files into tFiles
  repeat for each line tFileName in tFiles
    put tDir & tFileName into tFilePath
    import paint from file tFilePath
    set the repeatCount of image tFileName to 0
    set the visible of image tFileName to "false"
  end repeat
end mouseUp

Cheers,
Nicolas Cueto
niconiko language school
_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to