RE: [Flashcoders] AS3.0 only projects + flex framework

2005-10-26 Thread Tom Versweyveld
Dobler [EMAIL PROTECTED] To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com Sent: Monday, October 24, 2005 4:20 PM Subject: AW: [Flashcoders] AS3.0 only projects + flex framework Keep in mind AS only projects don't use the Flex framework, so mx.controls.Button won't work; you'd have

RE: [Flashcoders] AS3.0 only projects + flex framework

2005-10-26 Thread Tom Versweyveld
Subject: Re: [Flashcoders] AS3.0 only projects + flex framework You can load a Flex 1.5 swf into a Flex 2 project, but you can't interact with it unless you use the LocalConnection approach. Not sure if you can do that right now, but I intend to find out. Spike On 10/26/05, Tom Versweyveld [EMAIL

Re: [Flashcoders] AS3.0 only projects + flex framework

2005-10-26 Thread Spike
there is no way of loading a Flex swf into an AS3 project? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: maandag 24 oktober 2005 23:00 To: Flashcoders mailing list Subject: Re: [Flashcoders] AS3.0 only projects + flex framework

Re: AW: [Flashcoders] AS3.0 only projects + flex framework

2005-10-25 Thread Weyert de Boer
Hi Spike, Specifically, you need to launch the file by clicking on the debug button in Eclipse rather than just browsing to the file. Yes, after following the tutorial for AS only project, I have set a breakpoint on a trace() and then hit the debug button. Nothing really happens neither

Re: AW: [Flashcoders] AS3.0 only projects + flex framework

2005-10-25 Thread Spike
When you say Nothing really happens, what exactly does happen? Does the browser open the file? Do you get an error? Spike On 10/25/05, Weyert de Boer [EMAIL PROTECTED] wrote: Hi Spike, Specifically, you need to launch the file by clicking on the debug button in Eclipse rather than just

Re: AW: [Flashcoders] AS3.0 only projects + flex framework

2005-10-25 Thread Weyert de Boer
Spike wrote: When you say Nothing really happens, what exactly does happen? Does the browser open the file? Yes, the browser opens. After that it keeps trying to accesss www.macromedia.com in the browser (Firefox) in the status bar. Earlier I got a window asking where the debugger is. Not

Re: AW: [Flashcoders] AS3.0 only projects + flex framework

2005-10-25 Thread Spike
Can you post the code for the file you are trying to debug? It sounds like the debugger is probably running, but the line where you have set the breakpoint isn't being executed. Spike On 10/25/05, Weyert de Boer [EMAIL PROTECTED] wrote: Spike wrote: When you say Nothing really happens, what

Re: [Flashcoders] AS3.0 only projects + flex framework

2005-10-24 Thread Spike
- [EMAIL PROTECTED] Im Auftrag von Michael Klishin Gesendet: Montag, 24. Oktober 2005 21:07 An: Flashcoders mailing list Betreff: Re: [Flashcoders] AS3.0 only projects + flex framework Benjamin Dobler wrote: I`m wondering if anyone suceeded in making an as 3.0 only project in flex

Re: [Flashcoders] AS3.0 only projects + flex framework

2005-10-24 Thread JesterXL
, 2005 3:38 PM Subject: AW: [Flashcoders] AS3.0 only projects + flex framework Yeah i would like to see those stuff. Be sure i meant AS only projects no MXML included. Benjamin Dobler RIA Development web: http://www.richapps.de mail: [EMAIL PROTECTED] -Ursprüngliche Nachricht- Von

AW: [Flashcoders] AS3.0 only projects + flex framework

2005-10-24 Thread Benjamin Dobler
Keep in mind AS only projects don't use the Flex framework, so mx.controls.Button won't work; you'd have to utilize the Flex framework. Thanks Jesse that`s what i wanted to get sure of. Is there not even a workaround to use the framework in as only projects?

Re: AW: [Flashcoders] AS3.0 only projects + flex framework

2005-10-24 Thread Spike
In order to see anything with the debugger you usually need to set a breakpoint somewhere in the code. Right-click in the left margin of the editor and choose toggle breakpoint. Make sure it's inside a script block and on a line that has some executable code on it. Once you've done that, hit the

Re: [Flashcoders] AS3.0 only projects + flex framework

2005-10-24 Thread Spike
You should be able to use the Flex framework without requiring any MXML. It might take a bit of detective work, but since all MXML files get turned into ActionScript files prior to being compiled it should definitely be possible. You'll probably get a lot of value out of using mxml.exe at the

Re: [Flashcoders] AS3.0 only projects + flex framework

2005-10-24 Thread Spike
Hi Bevan, Not sure exactly what might have been going wrong, but if that's all you have in your file then it will fail. This should work though, assuming you have a file called test.xml in the same folder as the XMLTest.as: XMLTest.as