Since you're deleting the external file, Director cannot find the media
assets for its cast member inside the movie. What you can do is create a
new cast at runtime. This cast member can then be erased when you're done
with it.

You might do something like this.

on startMovie
global gImageCast
gImageCast = new(#bitmap)
end startMovie

on mouseUp
global gImageCast
gImageCast.fileName = "image.jpg"
end mouseUp

on stopMovie
gImageCast.erase()
end stopMovie

Replace #bitmap with whatever cast type you need. Should work, if this is
what you're looking for.



<snip>

But the problem is probably more simple... In fact when i open the movie
with an External Castmember deleted, Director search this External Cast
member and then i have this message in a dialog box :

Locate replacement for "C:\....."

<snip>

Regards,
Pranav


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]

Reply via email to