Re: [Flashcoders] attachbitmap and copy pixels.

2006-10-19 Thread Zikey Han
you can look this sample that is on the flash help. import flash.display.BitmapData; import flash.geom.Rectangle; import flash.geom.Point; var bitmapData_1:BitmapData = BitmapData.loadBitmap(imagesLinkID); var bitmapData_2:BitmapData = new BitmapData(100, 80, false, 0x00FF); var mc_1:MovieCl

[Flashcoders] Do you have software which can convert as package to UML?

2007-01-09 Thread Zikey Han
Hi,all: If a project is not yours.Now you may want to improve it,but so many packages and class.How to find out the flow chart clearly?Do you have software which can convert as package to UML? ___ Flashcoders@chattyfig.figleaf.com To change your subsc

[Flashcoders] JSFL add a MovieClip Name to my created mc

2006-08-06 Thread Zikey Han
Hi,list, now,i'm the fresh man to use JSFL.I want to ask a simple question.Now I have used JSFL to create a movieclip,so i want to name it,and then use "fl.getDocumentDOM().getTimeline().layers[0].frames[0].actionScript = "_mc.onPress = function(){trace('onPress!!')}".Can i do that? -- 亲爱的

[Flashcoders] what are differences between Flash5 and FlashMX?

2006-02-07 Thread zikey Han
Hi,list; I want to know what differences are between Flash5 and FlashMX?even between Flash MX and Flash2004. And the differences of flash between Window and OS ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/m

Re: [Flashcoders] what are differences between Flash5 and FlashMX?

2006-02-07 Thread zikey Han
The new player features! Thank you! ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] what are differences between Flash5 and FlashMX?

2006-02-08 Thread zikey Han
Thanks ,JesterXL. supplement:Flash 6 support Unicode -- http://www.flashpixy.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] how to liesten XML onLoad Event?

2006-02-20 Thread zikey Han
Hi,list, Today I write a class,in this class want to parse xml docunment first ,and then do other events. class like this: /// class com.newShow.GlideWin { var type_str : String; var xmlPath : String; var album_arr : Array; var len : Number;

Re: [Flashcoders] how to liesten XML onLoad Event?

2006-02-20 Thread zikey Han
Hi,Chris Velevitch, Thank you for your replay!But I use you mathod ,it's helpless! you mean that : put doc.load after doc.onLoad function assigment.But it can do nothing when i compile it! -- 亲爱的朋友,祝你天天快了! http://www.flashpixy.com ___ Flashcoders@chattyf

Re: [Flashcoders] how to liesten XML onLoad Event?

2006-02-20 Thread zikey Han
The problem is that : In doc.onLoad function assigment , I want to transfer function of showType witch is outside of onLoad assigment! But it can't work! It can't catch Varibles from outside of onLoad. doc.onLoad = function (ok) { trace(type_str+".." ); if (ok) { var str = th

Re: [Flashcoders] how to liesten XML onLoad Event?

2006-02-21 Thread zikey Han
Thanks ,Julien Vignali and j.c.wichman! I can do that ! 亲爱的朋友,祝你天天快了! http://www.flashpixy.com ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Bro

Re: [Flashcoders] duplicateMovieClip() ?

2006-03-15 Thread zikey Han
I can invoke this function in my Scene. function alot(max) { var basename:String = "circle_mc"; for (var i = 0; i: > > hmm ... > > // begin code > function alot(max) { > var basename:String = "circle_mc"; > for(var i = 0; i < max; i++) { > _root.it_mc.duplicateMovieClip(basename+i, this.g

[Flashcoders] nextFrame(),gotoAndStop(),play(),they are different?

2006-03-29 Thread zikey Han
Hi list! Today i touch an odd. It has 2 frames on the Timeline,I have a check in first frame,when it's ok goto sencond frame. when i use gotoAndStop(2),nextFrame(),and play() ,the Flash can goto Frame 2 ,the browser is Firfox. But only play() can work in the bro

[Flashcoders] What's different between _alpha=0 and _visible =flase;

2006-04-05 Thread zikey Han
I kown that one different between _alpha=0 and _visible =flase. when we load a picture or swf ,like this: this.createEmptyMovieClip("container_mc",0); container_mc.loadMovie("test.jpg"); container_mc._alpha =0 ; you can see nothing in the scene.because of ._alpha =0; but if yo

Re: [Flashcoders] XML push() data scope issue?

2006-04-28 Thread zikey Han
you can read this article:http://www.person13.com/articles/proxy/Proxy.htm or mx.utils.Delegate class http://www.flashpixy.com/index.php?entry=entry060306-225238 i hope this can help you! 2006/4/29, Mandongo <[EMAIL PROTECTED]>: i'm trying to figure out if it's a problem with scope, or if i'm ov