Re: [flexcoders] Organize imports

2007-01-27 Thread Martin Wood-Mitrovski
Stembert Olivier (BIL) wrote: Ho all, Do you know how to organize imports in FlexBuilder? CTRL + SHIFT + O :)

Re: [flexcoders] Ogg Vorbis Tremor in AS3?

2007-01-26 Thread Martin Wood-Mitrovski
Its been done. :) http://flash.j-ogg.de/ Hopefully the source will be released at some point. I know that its built on top of the audio engine made by Chris Sperry of FlashCodersBrighton fame. http://www.flashcodersbrighton.org/wordpress/?p=9 There is a version of the core audio engine in

Re: [flexcoders] Modules and Cairngorm

2007-01-26 Thread Martin Wood-Mitrovski
I just had the same error and it was because i was trying to re-use event instances rather than dispatching new ones each time. But i wasnt using modules, just a normal Cairngorm app. I was going to look into it to find out exactly what was happening but I just dont have the time at the

Re: [flexcoders] Re: Using Flash For Authoring Flex 2 Content -- A Definitive Guide?

2007-01-21 Thread Martin Wood-Mitrovski
michael.ritchie wrote: I keep asking Jesse why the hell he don't write a book about this stuff, something about attention span I used Jesse's blogs to make skins for work at my oufit, the dude rocks. We need to have more information out there on how to make better Flex applications

Re: [flexcoders] antlr for as3? parsers?

2007-01-19 Thread Martin Wood-Mitrovski
im not sure but i think David based his on Martin's work. I seem to remember a thread on OSFlash back in the mists of time where they discussed it. but, I could be completely wrong and the Metaas grammar could be completely different (well, as different as two grammars for the same language are

Re: [flexcoders] Code behind- do you use it?

2007-01-16 Thread Martin Wood-Mitrovski
So what are others doing? No AS in your MXML files, no code behind, a mixture of the two? I use it practically 100% of the time. If the mxml file only has a small amount of code and is unlikely to expand then its probably overkill but for anything with more than a couple of methods i use it.

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-15 Thread Martin Wood-Mitrovski
One theory I have about what 'might' be happening is that before I make my servce call, I'm adding event listeners for the result/fault and these may be duplicate ones, because the remote object instance is being persisted in ServiceLocator. However, I tried explictly removing the listeners

Re: [flexcoders] Cairngorm / MVC Best Practice

2007-01-05 Thread Martin Wood-Mitrovski
We have all our Events take the current object as the first parameter (i.e. 'this'). The Command then calls savedFromEventHome.onCommandName(result) in onResult. Could that do what you want ? interesting. do these objects then implement some kind of interface to support the

Re: [flexcoders] Cairngorm / MVC Best Practice

2007-01-05 Thread Martin Wood-Mitrovski
Tom Chiverton wrote: On Friday 05 January 2007 14:51, Martin Wood-Mitrovski wrote: do these objects then implement some kind of interface to support the 'onCommandName(result)' method or do you type it in some other way? No, you could (should ?) write an interface class and import it though

Re: [flexcoders] Cairngorm ServiceLocator

2007-01-05 Thread Martin Wood-Mitrovski
be lacking. Martin [EMAIL PROTECTED] wrote: I'm a little confused. How come I can ask com.adobe.cairngorm.business.ServiceLocator for a service from an MXML component which is a sub-class of ServiceLocator? -- Martin Wood http://relivethefuture.com/choronzon

Re: [flexcoders] CairngormEvent Antipattern

2006-08-25 Thread Martin Wood
Andrea Varga wrote: e_baggg wrote: Hello group- I hadn't seen a previous post regarding this explicity so I wrote a small blog about it. It helps reduce the #of classes that get created when using Cairngorm (a big issue with me since the client is VERY picky with their swf file sizes).

Re: [Junk E-Mail - LOW] [flexcoders] Re: Choice of backend systems - which provides

2006-08-23 Thread Martin Wood
Jack Caldwell wrote: Dave: I agree that a 1/3 of a second is not going to be noticed by the end-user. However, when you add 100s or 1,000s of users . . . . does that make a difference? I don't know . . . . that's why I am asking. You guys have the experience. It doesn't make any

Re: [Junk E-Mail - LOW] [flexcoders] Re: Choice of backend systems - which provides

2006-08-23 Thread Martin Wood
Jack Caldwell wrote: Martin: OK . . . . so the lag time is when the data gets back to the end-user? exactly, its the time it takes for the flash player or actionscript code to convert the incoming data into a format usable by the application. Before in the flash world that was a big deal

Re: [flexcoders] Project References vs. ActionScript Build Path

2006-08-22 Thread Martin Wood
a class in that other project, so I'm just curious what the intentions were behind these features. Thanks, -DT -- Martin Wood http://relivethefuture.com/choronzon -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http

Re: [flexcoders] Detecting Client Country or Location

2006-03-03 Thread Martin Wood
I had a brief look into this kind of thing, heres a couple of links : http://www.geobytes.com/ http://www.hostip.info/ basically you will have to rely on another service to give you the answer. thanks, Martin Dan wrote: hi, As Actionscript can detect the OS version of the client

Re: [flexcoders] Is Flex Beta free

2006-02-01 Thread Martin Wood
Yes its free and it says that it lasts for 90 days. [EMAIL PROTECTED] wrote: Can someone tell me if it is and also is it one of those trial things that wears out after 30 days. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] How to add an MXML component which is not in the root folder?

2006-01-17 Thread Martin Wood
/ is another application. This appears to be a bad idea! Would the appropriate course be to load the other application's .swf file? Scott -- Martin Wood http://relivethefuture.com/choronzon -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] How to add an MXML component which is not in the root folder?

2006-01-17 Thread Martin Wood
Java, not so sure, but seems likely to work there. Flex 2 itself is an example of this :) martin. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links

Re: [flexcoders] How to add an MXML component which is not in the root folder?

2006-01-16 Thread Martin Wood
: Has anyone been able to use code from one project inside of another? I haven't been able to get Martin's suggestion of setting the Classpath to work. Thanks, Scott On 12/4/05, Martin Wood [EMAIL PROTECTED] wrote: you can use the xmlns attribute either in the application tag

Re: [flexcoders] How to add an MXML component which is not in the root folder?

2006-01-16 Thread Martin Wood
right, well i was only referring to as3 files, but i built a simple test following the same technique and using mxml files and it works fine. I had this setup Project : Test (The 'library project') Image.mxml com/test/Image2.mxml both mxml files are just simple image tags

Re: [flexcoders] Re: Beta Flex 2 release Date? Any one for a Guess

2006-01-06 Thread Martin Wood
Philippe Maegerman wrote: This is so sweeet :))) Can we expect something like an 'Adobe Developer Bundle', including flex / cf / fms / graphics server for a democratic price ? you mean a price we all get to vote on? ;) -- Martin Wood http://relivethefuture.com/choronzon -- Flexcoders

Re: [flexcoders] gathering ActionScript object references

2005-12-14 Thread Martin Wood
! Groups Links -- Martin Wood http://relivethefuture.com/choronzon Yahoo! Groups Sponsor ~-- Fair play? Video games influencing politics. Click and talk back! http://us.click.yahoo.com/2jUsvC/tzNLAA/TtwFAA/nhFolB/TM

Re: [flexcoders] How can someone signup for the private beta of Flex 2?

2005-12-12 Thread Martin Wood
Is it private? I really hope not, seems a bit strange to have a public alpha and a closed beta. martin Clint Modien wrote: A client I'm working for needs the private beta for a proof-of-concept. Anyone have a name and a contact number or a way to signup for it? Thanks in advance.

Re: [flexcoders] Cast Object Name from string then do object.function() - is it possible?

2005-12-07 Thread Martin Wood
that name to another object in order to execute a method on that object ? foo(myMxmlObjectName); function foo(object1:String) { var objectA:UIComponent; objectA = object1(ViewStack.getChildAt(0)); objectA.bar(); } Thanks, Libby -- Martin Wood http

Re: [flexcoders] Cast Object Name from string then do object.function() - is it possible?

2005-12-07 Thread Martin Wood
ah, yeah, ignore my post, do what the man says :) JesterXL wrote: You don't need to cast via a function, you can do that already. While this works: objectA = ViewStack.getChildAt(0); objectA.bar(); Since Flex' compiler thinks objectA is just a vanilla Object, thus can't imply it's

Re: [flexcoders] How to add an MXML component which is not in the root folder?

2005-12-04 Thread Martin Wood
you can use the xmlns attribute either in the application tag (A) to define a namespace thats available throughout the mxml file, or you can use it just within the tag for the login dialog itself (B) If you refer to it by code then you can just use its fully qualified name. (C) A:

Re: [flexcoders] More questions regarding PopUp Windows in Flex 2.0

2005-12-03 Thread Martin Wood
On the same topic, is there anyway you can stop the title bar being transparent? And does PopUpManager.removePopUp work for you? At the moment im using a little hack and just setting window.x = -1 when its closed because removePopUp throws an error (Null is not a property or similar)

Re: [flexcoders] Re: Rich Internet Application (HaloGreen) Stencil for Microsoft Visio 2002

2005-12-02 Thread Martin Wood
I think the main problem here is your purpose for posting the information about your product was to market a product you are selling. I think if you offered it free, most people wouldn’t have a problem with you posting information about it here. also you could put it in your sig, and when

Re: [flexcoders] Flex 2.0 Alpha: dispatchEvent(Event) method in ActionScript class

2005-12-02 Thread Martin Wood
time “Access of undefined property dispatchEvent” error in a .as class file. I have imported flash.events.*; and mx.events.*; dispatchEvent is available in MXML files but I want to fire an event from an ActionScript class. Please help! Ralf Rottmann -- Martin Wood http

Re: [flexcoders] Re: listen a custom event from a dialog(Flex 2.0)

2005-12-01 Thread Martin Wood
(PopUpManager.popUpWindow(sWindow, this, modal)); myDialog.addEventListener(RELOAD_DATA, loadData); } martin. keishichi2001 wrote: any kind of suggestion would be highly appreciated -k -- Martin Wood http://relivethefuture.com/choronzon Yahoo! Groups Sponsor

[flexcoders] flex2: as3 only httpservice

2005-11-28 Thread Martin Wood
I have been trying to post this on the labs forums, but the pages are stuck in a perpetual loop of asking me to re-verify my details. anyway, Im trying to use mx.rpc.HTTPService from just AS3 code, but as soon as i invoke the send method it gives me a fault: [RPCFault faultcode='InvokeFailed'