Results 1 to 4 of 4
-
April 12th, 2012, 04:01 AM #12Registered User
postsLoad external image to fill movieclip bg
Hi guys,
I need to fill some movieclip with an external image in AS3. I know how to use an image contained in the FLA's library as background filling, but I don't know how to do this with an external loaded image.
Thank you for your help!
-
April 12th, 2012, 04:39 AM #2
Save the attached file to a folder. Open a new fla file, save it in the same folder of AS file and press F9 to open the code editor. Type this:
It should work. Hope it helps.Code:import Image; // suppose that mc is the instance of the MovieClip you want to fill var img:Image = new Image ("imagename.jpg", mc.width, mc.height); addChild(img);Last edited by giobongio; April 12th, 2012 at 05:03 AM.
-
April 12th, 2012, 05:20 AM #32Registered User
postsThank u a lot giobongio!
The only problem is that the bitmap is "fitted" to the size of movieclip, instead I need that it has been repeated "n" times to fill the mc...is it possible to use the BitmapFill in any way?
Thank you another time...
-
April 12th, 2012, 07:01 AM #4
Look up beginBitmapFill
Proud Montanadian
We tolerate living and breathing. And niches.
Name Brand Watches
Maybe getTimer() or TweenMax is the answer to your problem . . .

Reply With Quote

Bookmarks