[flexcoders] trace() o/p not written to flashlog.txt

2008-02-16 Thread saju_flex
Hi, I had a working flex dev env on Mac with a debug flashplayer9 that would write trace() o/p to ~/Library/Preferences/MacroMedia/Flash Player/Logs/flashlog.txt. My flex3 beta expired on jan 31'st and I updated to the latest b3. Now trace() o/p is not written to flashlog.txt anymore. Any clues

[flexcoders] Re: trace() o/p not written to flashlog.txt

2008-02-16 Thread saju_flex
It's fixed now. I had to reinstall the debug flash player - which is funny, wonder how reinstalling made this work .. --- In flexcoders@yahoogroups.com, saju_flex [EMAIL PROTECTED] wrote: Hi, I had a working flex dev env on Mac with a debug flashplayer9 that would write trace() o/p

[flexcoders] AS3 uint, bit shifting and promotion rules

2008-01-05 Thread saju_flex
Hi, If I store a uint into a Array element as var i:uint = uint.MAX_VALUE; foo[10] = i; trace(foo[10]) retrieves foo[10] as a signed int and performs a .toString() on it for printing. I tested this with big values for uint, trace() would print negative numbers. My question then is, does

[flexcoders] Re: AS3 uint, bit shifting and promotion rules

2008-01-05 Thread saju_flex
err please ignore this question. I was testing this incorrectly. Have it working now. Thanks. -srp --- In flexcoders@yahoogroups.com, saju_flex [EMAIL PROTECTED] wrote: Hi, If I store a uint into a Array element as var i:uint = uint.MAX_VALUE; foo[10] = i; trace(foo[10

[flexcoders] socket.connect() woes

2008-01-03 Thread saju_flex
I have the following code that *should* fail : public class Bar { public function connect1():void { trace(t1); var sock:Socket = new Socket(); sock.addEventListener(IOErrorEvent.IO_ERROR, ioerr_handler);

[flexcoders] Re: socket.connect() woes

2008-01-03 Thread saju_flex
connect1():void { sock = new Socket(); ... } } hth, Drew On 03/01/2008, at 10:16 PM, saju_flex wrote: I have the following code that *should* fail : public class Bar { public function connect1():void { trace(t1); var sock:Socket = new Socket(); sock.addEventListener