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); v

Re: [Flashcoders] performance difference between flash stand alone andbrowsers

2006-02-10 Thread Thimon Sistermans [Us Media]
euh why do you need 90+ fps for?? - Original Message - From: "David Skoglund" <[EMAIL PROTECTED]> To: Sent: Friday, February 10, 2006 1:21 PM Subject: [Flashcoders] performance difference between flash stand alone andbrowsers I have created a small game that runs with a very high f

Re: [Flashcoders] Debugging Flash Online

2006-02-10 Thread Thimon Sistermans [Us Media]
try xRay http://osflash.org/ Works great Regards, Thimon - Original Message - From: "Kevin Cannon" <[EMAIL PROTECTED]> To: Sent: Friday, February 10, 2006 1:12 PM Subject: [Flashcoders] Debugging Flash Online Hey, Probably an easy one. Are there any debugers out there that all

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'" Sent: Thursday, February 02, 2006 9:34 AM Subject: RE: [Flashcoders] Tell me more about "_global" * yawns * -Original Message- From: [EMAIL PR

Re: [Flashcoders] Job Opportunity in Madrid (Spain)

2006-01-13 Thread Thimon Sistermans [Us Media]
Yeah and cerveza is expensive at the moment! Is Salary range: from 21.000 to 24.000 euros yearly correct if so that's only 25K per year David Brunswick Training Specialist II Education Services [EMAIL PROTECTED] Direct: 912.527.4110 222 W. Oglethorpe Ave Savannah, GA 31419 A fish out

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] swf to windows screensaver tool

2006-01-06 Thread Thimon Sistermans [Us Media]
Hi, did you try shift/F12 (publish settings) local playback security? thimon - Original Message - From: "Yaniv De Ridder" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, January 06, 2006 5:46 PM Subject: [Flashcoders] swf to windows screensaver tool Hello, My cu

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('

Re: [Flashcoders] reverse play FLV?

2005-12-21 Thread Thimon Sistermans [Us Media]
Dont know if this will work , but worth a try var totalPlayTime = 100; //seconds myMovieComponent.play(totalPlayTime) ; this.onEnterFrame = function (){ if (totalPlayTime > 0){ myMovieComponent.play(totalPlayTime --) ; myMovieComponent.pause(); }else{ delete this.onEnterFrame ; } } che

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" Sent: Tuesday, November 08, 2005 10:01 AM Subject: RE: [Flashcoders] Newbie question: SHIFT+TAB Lol. The problem seemed to be with my use of the

Re: [Flashcoders] Newbie question: SHIFT+TAB

2005-11-07 Thread Thimon Sistermans [Us Media]
Trie that. No difference. hehe I gave a newbe answer. anyway ... did you set the tab index? ...are there any other objects with the same name on stage wich also can have a tabIndex ? The problem also appears in the browser. I've altered th onSetFocus as follows: this.onSetFocus

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: Sent: Monday, November 07, 2005 11:52 AM Subject: [Flashcoders] Newbie question: SHIFT+TAB Created a TextInput1 component which has an int

Re: [Flashcoders] placing an action at the end of a FLV video!

2005-11-07 Thread Thimon Sistermans [Us Media]
Or add a Cuepoint on a instance of your media component var movieEndTime = 5; // end time of your movie myMediaComponent.addCuePoint("endOfMovie", movieEndTime ); // var cueListener = new Object(); cueListener.cuePoint = function(eventObject){ trace(eventObject.cuePointName); } myMediaC

Re: [Flashcoders] Problem with .as files

2005-10-25 Thread Thimon Sistermans [Us Media]
And CVS (smart CVS 4 rocks for windows) maybe namespaces would help?! class com.domain.className {} Am 25.10.2005 um 09:00 schrieb I. Franklin: What I do is, while compiling the swfs, I make sure that I have the latest .as files(all other developers' .as files also who collborate on the s