Re: [flashcoders] Q: binary data (JPG) in XML

2007-05-24 Thread Mischa Williamson
If you base64 encode the jpeg contents then it should be safe to put in a CDATA node and send over the wire. Cheers, Mischa On 23 May 2007, at 21:25, eric e. dolecki wrote: I have been asked if its possible to have Flash display a JPG thats stored in XML as a binary object (ie. I don't get

Re: [Flashcoders] Good External Actionscript Editor for Mac?

2006-12-13 Thread Mischa Williamson
Xcode works well for me. Although SCM support is a little flaky and I've ended up using svnX for SCM. Cheers, Mischa On 13 Dec 2006, at 20:07, Steven Sacks | BLITZ wrote: I'm not a fan of Eclipse. I don't like that Flex Builder is based on Eclipse, but I can't seem to get the ANT compiler

[Flashcoders] AS 3: URLLoader Firefox IO Error Trigger Issue

2006-10-22 Thread Mischa Williamson
I'm wondering if anyone can replicate or has experienced this issue. When using URLLoader and playing back in Firefox 1.0.7/Camino 1.0 on OS X (10.4.7) with Flash player 9,0,15,0 the IOErrorEvent.IO_ERROR does not fire. When I test in Safari the event triggers fine. Is this a known issue? I could

Re: [Flashcoders] Which object called the function

2006-10-07 Thread Mischa Williamson
arguments.caller Will give you a reference to the calling function. From the help: Property; refers to the calling function. The value of this property is null if the current function was not called by another function. Cheers, Mischa On 7 Oct 2006, at 17:02, Dr. Suhas Pharkute wrote: Ini

Re: [Flashcoders] parsing full instance pathname? or am I completely wrong strategy?

2006-09-11 Thread Mischa Williamson
How about: function click(eventObject:Object) { trace( eventObject.target._name ); trace( eventObject.target._parent._name ); } ? But if you are doing different actions for each button it is preferable to use a Delegate and create separate function handlers as it make the co

Re: [Flashcoders] That yellow focus rectangle

2006-05-22 Thread Mischa Williamson
_focusrect = false; Should do it. On 5/22/06, Manuel Saint-Victor <[EMAIL PROTECTED]> wrote: I'm looking for relief from the yellow focus rectangle that happens to movie clips when they gain focus in my app. I came across this discussion from 2004< http://weblogs.macromedia.com/accessibility/a

Re: [Flashcoders] AS IDE for OSX

2006-03-16 Thread Mischa Williamson
Thanks for the heads-up on the free SDK Darron, oh, and your informative posts about AS3 ;) Now just got to port my AS3 code base from alpha to beta *sigh* Incidentally, anyone had any problems with the Math parser in AS3? I ran into some wierd issues porting Robert Penner's easing equations in t

Re: [Flashcoders] AS IDE for OSX

2006-03-16 Thread Mischa Williamson
scripts it works like a charm. Cheers, Mischa On 3/16/06, eric dolecki <[EMAIL PROTECTED]> wrote: > > Isn't MTASC going to die on the vine when AS3 enters the scene? > > :( > > On 3/16/06, Mischa Williamson <[EMAIL PROTECTED]> wrote: > > > > I think X

Re: [Flashcoders] AS IDE for OSX

2006-03-16 Thread Mischa Williamson
I think XCode is the best solution, I've tried SubEthaEdit, TextMate, Smultron and Eclipse and they all fall short. XCode with CVS or SVN is great for versioning (compared to Eclipse), and along with MTASC for compilation plus a custom executable (shell script) takes it to a whole new level

Re: [Flashcoders] Re:AS3 reference live docs missing?

2006-01-31 Thread Mischa Williamson
Same deal here Tom. I really need that documentation available. Can anybody from Adobe comment on this issue please? Cheers, Mischa On 1/30/06, Tom Bray <[EMAIL PROTECTED]> wrote: > Is there a mirror for this somewhere? I was depending on this for a > proof-of-concept I'm working on. > > Broke

Re: [Flashcoders] Dynamic class creation

2006-01-30 Thread Mischa Williamson
I've done exactly that using eval() before. Give it a try. Cheers, Mischa On 1/30/06, franto <[EMAIL PROTECTED]> wrote: > Hi all, > > maybe it is easy, maybe not, but i cant figure it out now, and i need it :) > > when i got class e,gpkg1.pkg2.pkg3.className > > i can make new instance in th

Re: [Flashcoders] Q: html and flash

2005-12-01 Thread Mischa Williamson
You can use the SharedObject (Flash's version of cookies) to store the current state of the menu (before changing the URL) and then recreate that state within Flash on each subsequent page refresh. Check out SharedObject in the AS dictionary. Mischa On 12/1/05, Corban Baxter <[EMAIL PROTECTED]>

Re: [Flashcoders] Autopopulating from a webservice

2005-11-04 Thread Mischa Williamson
you are using? > > Grtz, > Jeroen > > > -Original Message- > From: Mischa Williamson [mailto:[EMAIL PROTECTED] > Sent: vrijdag 4 november 2005 11:45 > To: Flashcoders mailing list > Subject: Re: [Flashcoders] Autopopulating from a webservice > > You nee

Re: [Flashcoders] Autopopulating from a webservice

2005-11-04 Thread Mischa Williamson
You need to access the "result" property of "eventObj". This works well for me: import com.ffsys.util.WSProxy; var listeningObj:Object = new Object(); listeningObj.result = function(eventObj:Object):Void { trace("###"); trace( "company : " + eventObj.result.company ); for( var z in eventObj.res

Re: [Flashcoders] Autopopulating from a webservice

2005-11-02 Thread Mischa Williamson
Hey, I've uploaded a simple WSProxy class that should help you with this: http://freeform-systems.com/share/actionscript/WSProxy.as You will want to change the EventDispatcher class to MM's version. Change this line: import com.ffsys.events.EventDispatcher; to wherever MM's class is, it i reme