RE: [Flashcoders] Using fscommand in AS 3 still legal??

2008-09-04 Thread Romuald Quantin
fscommand in AS 3 still legal?? I often use the fscommand feature to help debug but when I use this in AS 3 I get an error message --1061: Call to a possibly undefined method fscommand through a reference with static type flash.display:DisplayObject. the offending line-- fscommand("Loading

Re: [Flashcoders] Using fscommand in AS 3 still legal??

2008-09-04 Thread Glen Pike
Hi, I think you have to import the fscommand "function" - have a look in the livedocs. Glen BOYD SPEER wrote: I often use the fscommand feature to help debug but when I use this in AS 3 I get an error message --1061: Call to a possibly undefined method fscommand through a reference wit

Re: [Flashcoders] Using fscommand in AS 3 still legal??

2008-09-04 Thread BOYD SPEER
That was it! Thanks, Kenneth - Original Message - From: Kenneth Kawamoto <[EMAIL PROTECTED]> Date: Thursday, September 4, 2008 11:49 am Subject: Re: [Flashcoders] Using fscommand in AS 3 still legal?? To: Flash Coders List > Have you done: import flash.system.fscommand; ? >

Re: [Flashcoders] Using fscommand in AS 3 still legal??

2008-09-04 Thread Kenneth Kawamoto
Have you done: import flash.system.fscommand; ? Kenneth Kawamoto http://www.materiaprima.co.uk/ BOYD SPEER wrote: I often use the fscommand feature to help debug but when I use this in AS 3 I get an error message --1061: Call to a possibly undefined method fscommand through a reference with sta

[Flashcoders] Using fscommand in AS 3 still legal??

2008-09-04 Thread BOYD SPEER
I often use the fscommand feature to help debug but when I use this in AS 3 I get an error message --1061: Call to a possibly undefined method fscommand through a reference with static type flash.display:DisplayObject. the offending line-- fscommand("Loading "+target); any suggestions as to h