[Flashcoders] problems loading an image into a movieclip

2006-05-22 Thread riccardo.roasio
Hi, i have a movie with a button and a movieclip. I want that when i click the button an external image is visualized into the movieclip. I called the movieclip instance ic and in add this code to the button : on(click) { loadMovie(penguin.bmp,ic); } the problem is that the movieClip became

Re: [Flashcoders] problems loading an image into a movieclip

2006-05-22 Thread MBDI ICSC Rodrigo E. Curiel Salazar
Hi ! Try: on(click) { ic.loadMovie(penguin.bmp); } On 5/22/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, i have a movie with a button and a movieclip. I want that when i click the button an external image is visualized into the movieclip. I called the movieclip instance ic and in

RE: [Flashcoders] problems loading an image into a movieclip

2006-05-22 Thread Matthew Simpson
] problems loading an image into a movieclip Hi, i have a movie with a button and a movieclip. I want that when i click the button an external image is visualized into the movieclip. I called the movieclip instance ic and in add this code to the button : on(click) { loadMovie(penguin.bmp,ic

Re: [Flashcoders] problems loading an image into a movieclip

2006-05-22 Thread Serge Jespers
You probably don't see the image because you can't load BMP's in to Flash... Only SWF, JPEG, GIF or PNG if you're using Flash 8. When targeting for older Flash versions, you can only load SWF JPEG's. Serge Op 22-mei-06, om 18:32 heeft [EMAIL PROTECTED] [EMAIL PROTECTED] het volgende

Re: [Flashcoders] problems loading an image into a movieclip

2006-05-22 Thread Tony Trapp
try .jpg instead flash loads those in perfectly. Tony... - Original Message - From: [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, May 22, 2006 9:32 AM Subject: [Flashcoders] problems loading an image into a movieclip Hi, i have a movie with a button