Topic: Flex 3.6/AS3 on Insignia

I upgraded my Insignia to beta firmware 1.7.3719.

I wrote a simple application using Flex SDK 3.6 targeting Flash version 9.0.124. When I load the application via SSH it loads and runs but gives me the following trace:

chumby-29-4e-a9:~ # chumbyflashplayer.x -i http://www.xxx.com/chumbyTest.swf
Adobe FlashLite 4.0.2 Release (Version 10,1,48,3)- Chumby Industries (version 10 build 59-3719 [GCC 4.3.2])
Portions copyright (C) 2005-2010 Chumby Industries, Inc.
Built for: silvermoon; Features: Video ALSA ARM-optimizations
Build time: Wed 23Feb2011 0712
Playback device is default
Stream parameters are 44100Hz, S16_LE, 2 channels
2011-08-04 16:32:55 ClientObject::MainLoop(playCount=48) master instance 0046a748 is not playing!!!
2011-08-04 16:32:56 ClientObject::MainLoop(playCount=72) master instance 0046a748 is not playing!!!
2011-08-04 16:32:57 ClientObject::MainLoop(playCount=96) master instance 0046a748 is not playing!!!
2011-08-04 16:32:58 ClientObject::MainLoop(playCount=120) master instance 0046a748 is not playing!!!
2011-08-04 16:32:59 ClientObject::MainLoop(playCount=144) master instance 0046a748 is not playing!!!
2011-08-04 16:33:00 ClientObject::MainLoop(playCount=168) master instance 0046a748 is not playing!!!
^C2011-08-04 16:33:00 chumbySignalHandler(2) SIGINT - requested termination
2011-08-04 16:33:00 ChumbyVidStats::RuntimeCleanup(): 0 sessions started, 0 cancelled, originating pid=329, last reporting pid=0
2011-08-04 16:33:01 err[6]: 2011-08-04 16:33:00 ClientObject::MainLoop(playCount=168) master instance 0046a748 is not playing!!!

2011-08-04 16:33:01 err[7]: 2011-08-04 16:33:00 chumbySignalHandler(2) SIGINT - requested termination

2011-08-04 16:33:01 Exiting _chumby_flashplayer_version=402.0.00059-3719
2011-08-04 16:33:01 Start time: 2011-08-04 16:32:50
2011-08-04 16:33:01 End time  : 2011-08-04 16:33:01
2011-08-04 16:33:01 Elapsed   : 11s (11)
2011-08-04 16:33:01 main() - closing and deleting pid file /var/run/chumbyflashplayer.pid
2011-08-04 16:33:01 chumbyflashplayer main() - exiting, return code 0

the mxml file has:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                xmlns:ns1="*"
                minWidth="800" minHeight="600" frameRate="24" layout="absolute">
   
    <mx:TextArea id="ta" x="234.5" y="177" width="70" maxChars="200" text="hello"/>
   
</mx:Application>


My question is what does "ClientObject::MainLoop(playCount=48) master instance 0046a748 is not playing!!!" mean?

What should I be looking at to stop this trace.

Thanks

Jayesh

Re: Flex 3.6/AS3 on Insignia

Try adding the command line parameter "-l 0" (that's a lower-case "L").  That *should* suppress this warning.

It's actually a harmless warning - it's just saying that nothing seems to be happening in the movie, which would be true for this one, since all it seems to do (so far!) is put up a TextArea and just sit there.