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: 
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 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 white but the image is not
visualized...
> Ehat's wrong?
> Thanks,Riccardo
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
>


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


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 geschreven:



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 white but the image is not  
visualized...

Ehat's wrong?
Thanks,Riccardo


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


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

2006-05-22 Thread Matthew Simpson


this.createEmptyMovieClip("container_mc", 10);
container_mc.loadMovie("penguin.bmp");
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Monday, May 22, 2006 12:33 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] 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);
}

the problem is that the movieClip became white but the image is not
visualized...
Ehat's wrong?
Thanks,Riccardo
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


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 add this code to the button :

on(click)
{
  loadMovie("penguin.bmp",ic);
}

the problem is that the movieClip became white but the image is not
visualized...
Ehat's wrong?
Thanks,Riccardo
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com