[Flashcoders] AS2 Datagrid + invisible row

2007-06-06 Thread Laurent CUCHET
Good Morning I have done a listener to fill datagrid. It works but I need to hide or make invisible a row How can do ?? Thank you var myListener1:Object = new Object(); myListener1.dataLoaded = function(success:Boolean, xmldata:XML) { if (success) { trace(xmldata); if

RE: [Flashcoders] Flash CS3 Prof copy: missing Tree component.

2007-06-06 Thread Merrill, Jason
Regarding Jason's question, NO. As yet Flash CS3 has no AS3 classes/components for WebService or Remoting. And no where have I seen any promised. (I would like to see them, so if anyone from Adobe is on this list and might like to tell us that there one day will be Flash CS3 AS3 Data

RE: [Flashcoders] Flash CS3 Prof copy: missing Tree component.

2007-06-06 Thread David Ngo
There's a F8/AS2 version of Papervision, though I'd probably suggest going the F9/AS3 route. As far as Remoting/WebServices, I'm pretty sure they'll come out with an add-on package like they did with the previous versions. On top of that, if you wanted to build a Flash App, why not just use Flex?

RE: [Flashcoders] Flash CS3 Prof copy: missing Tree component.

2007-06-06 Thread Merrill, Jason
There's a F8/AS2 version of Papervision, though I'd probably suggest going the F9/AS3 route. As far as Remoting/WebServices, I'm pretty sure they'll come out with an add-on package like they did with the previous versions. On top of that, if you wanted to build a Flash App, why not just use

[Flashcoders] Flash Remoting for Flash CS3 AS3

2007-06-06 Thread greg h
As yet Adobe has not updated Flash Remoting for Flash CS3 AS3. Following are links to 3 sources documenting how to make remoting calls in AS3 using NetConnection.call(...)http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/NetConnection.html#call%28%29 . NOTE: I have not

RE: [Flashcoders] Flash CS3 Prof copy: missing Tree component.

2007-06-06 Thread Merrill, Jason
I have posted a new thread here on FlashCoders with the subject line Flash Remoting for Flash CS3 AS3. Cool. How about calling a WSDL - Webservice? Not possible in CS3? Jason Merrill Bank of America GTO Learning Leadership Development eTools Multimedia Team

Re: [Flashcoders] MovieClips and levels

2007-06-06 Thread David Cohn
Patrick, Thanks-- that's what I thought. I'd actually tried Bitmaps first, but they weren't working for me in this case... Time to move on to CS3! Thanks again, --Dave No. You can make a bitmap copy then attachBitmap. I'd suggest getting into Flash CS3 and/or Flex. Goodbye to the

[Flashcoders] shared objects file limit

2007-06-06 Thread Mick G
Could someone please confirm, is the default 100K file limit for share objects per domain, per subdomain, or per url, or per share object? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Flash CS3 Prof copy: missing Tree component.

2007-06-06 Thread greg h
Jason, Regarding How about calling a WSDL - Webservice? Not possible in CS3? First I just want to rephrase that as Flash CS3 AS3 because for the AS2 components (aka V2 components) nothing has changed from Flash MX 2004 to Flash 8 to Flash CS3 (except FLVPlayback being introduced with Flash 8).

[Flashcoders] mouse on stage boolean

2007-06-06 Thread Raphael Villas
Hey all, Is there an AS2 boolean property that returns whether or not the mouse is on the stage? Thx. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] DataGrid Column

2007-06-06 Thread Gilles Roquefeuil
Hello, is there a simple way of selecting an entire column in a datagrid ? I need to select (or to simulate a selection) the column using the headerRelease datagrid event Thanks, Gilles ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] Exporting a swf to an FLV

2007-06-06 Thread greg h
Patrick, I know of no way to export swf directly to FLV. Flash CS3 has introduced a new option on export to Quicktime. Once an MOV has been rendered, you can use the Flash Video Encoder (or encoder of your choice) to transcode into FLV. Animators who use Flash for broadcast have long

RE: [Flashcoders] Flash CS3 Prof copy: missing Tree component.

2007-06-06 Thread Merrill, Jason
Wow, thanks for that post. Excellent information. That's a huge blow. So basically when it comes to Flash CS3 with AS3 all of us who have been using Webservices classes in Flash and want to keep doing so have only a few choices: 1) Learn Flex instead and try and make what you want to do in

RE: [Flashcoders] MovieClips and levels

2007-06-06 Thread Jesse Graupmann
Dave, You can work around the problem by attaching a MovieClip and passing enough information to the newly created clip to make a simple copy. It's not perfect and depending on how complicated your clip is, you might want to try; var copy = copyMovieClip ( mc, mc, 'box', 'copy' );

[Flashcoders] EventDispatcher weirdness in AS2

2007-06-06 Thread Merrill, Jason
Driving me mad. I don't get what could possibly be happening here. Why would _myOtherClass instance no longer exist after the event in an unrelated class fires? Any ideas? import myClass; import myOtherClass; import mx.events.EventDispatcher; class MyMainClass { var _myClass:MyCLass;

Re: [Flashcoders] EventDispatcher weirdness in AS2

2007-06-06 Thread T. Michael Keesey
Deeeleeegaaate On 6/6/07, Merrill, Jason [EMAIL PROTECTED] wrote: Driving me mad. I don't get what could possibly be happening here. Why would _myOtherClass instance no longer exist after the event in an unrelated class fires? Any ideas? import myClass; import myOtherClass; import

RE: [Flashcoders] EventDispatcher weirdness in AS2

2007-06-06 Thread Merrill, Jason
AH HA! DUH! THANKS! that was it. been staring at this too long Jason Merrill Bank of America GTO Learning Leadership Development eTools Multimedia Team -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of T. Michael Keesey Sent: Wednesday,

[Flashcoders] as3 Loader.content.name error

2007-06-06 Thread Patrick Matte|BLITZ
Is there a way a change the name of the Loader content property. I'd like to call addChild() on the content instead of the Loader itself. Like this : loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.INIT, loaderInit); var request:URLRequest = new URLRequest(pageSource);