RE: [Flashcoders] Antialiasing BitmapData in AS2?

2007-02-05 Thread Thimon Sistermans
The answer is in the help files: use the BitmapData of you image and set the smoothing argument 'true' import flash.display.*; import flash.geom.*; var bmpd:BitmapData = new BitmapData(20,20); var rect1:Rectangle = new Rectangle(0,0,10,10); var rect2:Rectangle = new Rectangle(0, 10, 10, 20);

Re: [Flashcoders] Tell me more about _global

2006-02-02 Thread Thimon Sistermans [Us Media]
RTFM stop this post please regards - Original Message - From: j.c.wichman [EMAIL PROTECTED] To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com Sent: Thursday, February 02, 2006 9:34 AM Subject: RE: [Flashcoders] Tell me more about _global * yawns * -Original

Re: [Flashcoders] Changing text based on the time of a played media

2006-01-10 Thread Thimon Sistermans [Us Media]
Hi, I don know if it works with mp3 but with flv you could use cuePoints. You add them to your media component before playing the file For example you could do something like this: for (var i = 0; i track.length){ // create unique cuepoint id var cuePointID = cuePoint_ + i;

Re: [Flashcoders] execute a string as actionscript in MX

2006-01-06 Thread Thimon Sistermans [Us Media]
Hi, check apply in help docs eval(myFunction).apply(null, myArgumentsArray); Thimon How about arguments? var str =trace('Hello'); var func = str.split((); var arg = func[1].split(')[1]; eval(func[0]).call(this, arg); Is there a serializer to pass real arguments? eg. myFunction('Hello', {

Re: [Flashcoders] Newbie question: SHIFT+TAB

2005-11-08 Thread Thimon Sistermans [Us Media]
that was really newbie:p Great it is fixed - Original Message - From: Neil Gibbons [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Tuesday, November 08, 2005 10:01 AM Subject: RE: [Flashcoders] Newbie question: SHIFT+TAB Lol. The problem

Re: [Flashcoders] Newbie question: SHIFT+TAB

2005-11-07 Thread Thimon Sistermans [Us Media]
when debugging in flash... check (for win) control/disable keyboard shortcuts - Original Message - From: Neil Gibbons [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, November 07, 2005 11:52 AM Subject: [Flashcoders] Newbie question: SHIFT+TAB Created a