Re: [flexcoders] Load externs

2006-11-16 Thread Paul Spitzer
I don't think this feature is functioning. I tried relentlessly to get it to work without success. EECOLOR wrote: Hello, i cant get the -load-externs compile option to work, the xml file i am passing is a link report generated with -link-report of another application (application 1).

Re: [flexcoders] WebService woes - faultCode: EncodingError - faultString: Unknown Property

2006-11-17 Thread Paul Spitzer
Turns out this was caused by the images property which was an empty ArrayCollection. The operation succeeds if I pass null for the images. I have no idea why the error was reporting what it was. Paul Spitzer wrote: Hi all, Hoping someone can help me out here. We've recently switched our

Re: [flexcoders] [BUG] FP9 SWF loading FP7 SWF using MovieClipLoader

2007-01-24 Thread Paul Spitzer
wrote: I've been calling MovieClipLoader.unloadClip() prior to loading further clips. That was my fix for the same problem Bjorn On 25/01/2007, at 5:13 AM, Paul Spitzer wrote: I'm convinced I've found a bug... I have a very simple Flex app that performs two loads of the same FP7 SWF file

[flexcoders] States - add/remove vs create/destroy

2006-09-25 Thread Paul Spitzer
Hey all, I'm at the start of a new Flex 2 project and am evaluating whether heavy use of states is a good idea. I really like how states and the state management works in Flex 2. I've done some prototyping and have seen some really clean results by writing and binding to state managers.

Re: [flexcoders] Re: Architecting a large, modular Flex application

2006-09-26 Thread Paul Spitzer
some concerns about potential RSL caching and how to overcome that (I think it can be easily overcome with a proper rollout strategy) I'm curious to hear what your plan is to deal with the caching of RSL(s). Or how others deal with it. Any suggestions? derrickgrigg wrote: I actually was

[flexcoders] Re: Using mxmlc.jar w/ ANT - SOLVED

2006-09-26 Thread Paul Spitzer
}/build/administrator-config.xml/ arg line='${basedir}/as3/Administrator.mxml'/ /java /target Paul Spitzer wrote: In my attempt to use mxmlc.jar w/ ANT I found that the following error is reported... defaults: Error: unable to open './winFonts.ser'. I found the file in the Flex SDK

[flexcoders] Using mxmlc.jar w/ ANT

2006-09-26 Thread Paul Spitzer
In my attempt to use mxmlc.jar w/ ANT I found that the following error is reported... defaults: Error: unable to open './winFonts.ser'. I found the file in the Flex SDK 2\frameworks directory and modified my java task. My target looks like (note the dir)... target name=Administrator java

Re: [flexcoders] Re: Architecting a large, modular Flex application

2006-09-27 Thread Paul Spitzer
work, would also allow us to control caching by appending a version to the URL when loading corelib.swf?v=1. Thanks for taking the time to reply. HTH, Anatole Tartakovsky On 9/26/06, *Paul Spitzer* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: some concerns about

Re: [flexcoders] Re: Using mxmlc.jar w/ ANT - SOLVED

2006-09-27 Thread Paul Spitzer
I am using a build XML file w/ ANT Constantiner wrote: You can use more elegant and crossplatform example of build.xml in this preloader example: http://mxdj.sys-con.com/read/274849.htm -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] [Flex 2] Strange behaviour when using RSLs

2006-09-27 Thread Paul Spitzer
I had this issue too... see my post External Libs - Debug SWFs. Not sure what happened but somewhere along the line the issue worked itself out. Might have been cached SWFs or a stale properties file or something. EECOLOR wrote: Hello, i had the same problem with some of my libraries. In

Re: [flexcoders] Re: [Flex 2] Strange behaviour when using RSLs

2006-09-28 Thread Paul Spitzer
Thanks Mike. Is there a way to launch the debugger manually, from Flex Builder. For instance to wait for incoming requests from the player. I realize the command line debugger would likely work but the GUI would be much easier. Mike Morearty wrote: The problem is with the way the player and

[flexcoders] -load-externs not working

2006-09-28 Thread Paul Spitzer
I added the -load-externs flag to a Flex project and pointed it to the link report of another Flex project and am getting no love. The -load-externs flag doesn't seem to be doing anything for me. Anyone have any ideas as to what I might be doing wrong? -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: Architecting a large, modular Flex application

2006-09-28 Thread Paul Spitzer
is a seperate swf that duplicates the RSL contents, but gets loaded from a command in the application, as opposed to some code that the compiler generates. That would allow modification of the URL to prevent against caching. Derrick --- In flexcoders@yahoogroups.com, Paul Spitzer [EMAIL PROTECTED

[flexcoders] *sigh* -includes not working either?

2006-09-29 Thread Paul Spitzer
I swear I had includes working earlier but now it seems they aren't. Here is what I did.. Created a new Flex Project Dragged a few components onto the Application Set all the default SWC references to Link Type: External Created an empty compiler config XML file Added -load-config to additional

Re: [flexcoders] Link Type: External

2006-09-30 Thread Paul Spitzer
but the documentation says it will retrieve and load into memory as needed. I haven't looked at the exact verbiage in the docs but you have to manually manage the loading of the external dependencies. As far as I understand it, the ActionScript byte code needs to be accessible by the time

Re: [flexcoders] mxmlc -increment not working.

2006-10-02 Thread Paul Spitzer
Did anyone ever figure this out? I've having the same problem. I'm trying to use incremental compiling w/ ANT but am getting the following error... Failed to match the compile target with ... Administrator_405624.cache. The cache file will not be reused. The .cache file is created without any

Re: [flexcoders] mxmlc -increment not working.

2006-10-02 Thread Paul Spitzer
'/ arg line=--/ arg line='${basedir}/Administrator/as3/Administrator.mxml'/ /java /target Igor Costa wrote: put -increment=true; -increment is a boolean paramater, just put true or false to get start working On 10/2/06, *Paul Spitzer* [EMAIL PROTECTED] mailto:[EMAIL

Re: [flexcoders] mxmlc -increment not working.

2006-10-02 Thread Paul Spitzer
Robert Wąs wrote: option is: -incremental and works for me w/ ANT? Robert Was Paul Spitzer wrote: Did anyone ever figure this out? I've having the same problem. I'm trying to use incremental compiling w/ ANT but am getting the following error... Failed to match the compile

Re: [flexcoders] mxmlc -increment not working.

2006-10-03 Thread Paul Spitzer
Spitzer [EMAIL PROTECTED] wrote: Robert Wąs wrote: option is: -incremental and works for me w/ ANT? Robert Was Paul Spitzer wrote: Did anyone ever figure this out? I've having the same problem. I'm trying to use incremental compiling w/ ANT but am getting

[flexcoders] SOAP Web Services and registerClassAlias

2006-10-04 Thread Paul Spitzer
Anyone know if there a way to use registerClassAlias with Web Services to get typed objects back? -- 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 * To

Re: [flexcoders] SOAP Web Services and registerClassAlias

2006-10-04 Thread Paul Spitzer
Or, a little less specific... is there a way to get the Web Service classes to return typed objects? Paul Spitzer wrote: Anyone know if there a way to use registerClassAlias with Web Services to get typed objects back? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group

Re: [flexcoders] SOAP Web Services and registerClassAlias

2006-10-04 Thread Paul Spitzer
] On Behalf Of Paul Spitzer Sent: Wednesday, October 04, 2006 10:13 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] SOAP Web Services and registerClassAlias Or, a little less specific... is there a way to get the Web Service classes to return typed objects? Paul Spitzer wrote

Re: [flexcoders] Best AMF debugger for Flex2

2006-10-06 Thread Paul Spitzer
I'll second that. Charles is a must have tool! I'm using it right now to throttle my bandwidth and figure out why my ProgressBar is not doing what I'm telling it to :). Daniel Wabyick wrote: This is my favorite ... http://www.xk72.com/charles. Julian Sander wrote: Hi All, I was

Re: [flexcoders] Relative paths in IDE compiler args

2006-10-09 Thread Paul Spitzer
Hey Daniel, I've definitely had the same problem. I found that for the -load-config flag I had to climb up a directory ../ to get to my project root... so I had something like... -load-config+=../build/project-config.xml. I'm not entirely sure but I think it was relative to my main source

Re: [flexcoders] Relative paths in IDE compiler args

2006-10-09 Thread Paul Spitzer
. -Original Message- From: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com [mailto:flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com] On Behalf Of Paul Spitzer Sent: Monday, October 09, 2006 8:42 AM To: flexcoders@yahoogroups.com mailto:flexcoders

Re: [flexcoders] Switching View States - Destroying Resources

2006-10-09 Thread Paul Spitzer
Hey Daniel, I posted about this a while back. See my post States - add/remove vs create/destroy. I didn't hear a peep from anyone. I'm not sure if it's something that is natively supported by the framework. I don't think so, but I could be wrong. The closest thing I found was the

Re: [flexcoders] ant and mxmlc

2006-10-10 Thread Paul Spitzer
What's the run time exception? Douglas Knudsen wrote: I'm using the below to compile a Flex app. Compiles with no errors or warnings. But the resulting swf throws a error when access target name=compile description=compiles all source depends= java jar=${mxmlcjar}

Re: [flexcoders] ant and mxmlc

2006-10-10 Thread Paul Spitzer
destination ColdFusion'. DK On 10/10/06, *Paul Spitzer* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: What's the run time exception? Douglas Knudsen wrote: I'm using the below to compile a Flex app. Compiles with no errors or warnings. But the resulting swf throws

Re: [flexcoders] ant and mxmlc

2006-10-11 Thread Paul Spitzer
is using CFCs on CF7.02. Works fine when compiled by FB, just not with the target below. Anyway you can post a sample custom config file? I saw a thread here where you were successful in this endeavour with Ant. DK On 10/10/06, *Paul Spitzer* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote

Re: [flexcoders] mxmlc -increment not working.

2006-10-11 Thread Paul Spitzer
I never did get it to work but I haven't gone back and tried to simplify what I was doing. I probably need to do that -- start from scratch, get it working and then try to set up my compile as I need it. I might try using the exec task as well, as opposed to the java task. Ralf Bokelberg

Re: [flexcoders] Alternative image file formats

2006-10-12 Thread Paul Spitzer
http://www.ee.cooper.edu/courses/course_pages/past_courses/EE458/TIFF/ ... left over in my bookmarks from when I was experimenting with rendering TIFFs. Darron J. Schall wrote: With the ByteArray capability of Flash Player 9, anything is possible. Jim Cheng has an .xls parser that loads an

[flexcoders] HistoryManager causing intermittent security errors

2006-10-23 Thread Paul Spitzer
I'm getting intermittent security errors the moment my application starts loading. Error #2044: Unhandled SecurityErrorEvent:. text=Error #2047: Security sandbox violation: LocalConnection.send: evolve cannot access http://evolve/admin/Administrator.swf. I'm pretty convinced that it is caused

[flexcoders] Runtime Class Loading

2008-03-28 Thread Paul Spitzer
Hi All, Hoping someone can help me out here... I'm near the point of loosing my mind. I'm trying to do a simple load of a library SWF in order to use the classes within. Unfortunately it's not working. What I did was create a new library project, stuffed in a couple of classes, extracted the

Re: [flexcoders] Runtime Class Loading

2008-03-28 Thread Paul Spitzer
handler. Hooray! :) Not sure why the complete event never fires but I can work with this. Paul Spitzer wrote: Hi All, Hoping someone can help me out here... I'm near the point of loosing my mind. I'm trying to do a simple load of a library SWF in order to use the classes within

Re: [flexcoders] Runtime Class Loading

2008-03-29 Thread Paul Spitzer
. *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Paul Spitzer *Sent:* Friday, March 28, 2008 2:53 PM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Runtime Class Loading Hi All, Hoping someone can help me out here... I'm near

Re: [flexcoders] Runtime Class Loading

2008-03-30 Thread Paul Spitzer
I'm not ever getting an INIT event either. Maybe I should try compiling from the command line instead of letting Flex Builder build my SWC. Not sure why that would make a difference but it does seem like something is going on with the SWF. gabriel montagné wrote: Also, you should wait for the

Re: [flexcoders] RSL loader problem - it stops

2008-04-01 Thread Paul Spitzer
I haven't used RSLs enough to have experienced this problem but this sounds suspiciously similar to problems I've been having loading SWFs that have been extracted from a SWC (see the thread Runtime Class Loading). As I understand it when you link a SWC as an RSL Flex Builder extracts the SWF

Re: [flexcoders] Re: RSL loader problem - it stops

2008-04-03 Thread Paul Spitzer
@yahoogroups.com, Paul Spitzer [EMAIL PROTECTED] wrote: I haven't used RSLs enough to have experienced this problem but this sounds suspiciously similar to problems I've been having loading SWFs that have been extracted from a SWC (see the thread Runtime Class Loading). As I

Re: [flexcoders] Re: actionScriptProperties

2008-04-03 Thread Paul Spitzer
In eclipse / FP go to Window Preferences General Workspace Linked Resources Create a new resource, CUSTOM_VAR, or whatever you want the name to be, point it to the directory you need. I'm not sure if it will actually work for that property but it's worth a try. I've used linked resources

Re: [flexcoders] Re: actionScriptProperties

2008-04-03 Thread Paul Spitzer
that was supposed to read, eclipse / FB, as in Flex Builder. Paul Spitzer wrote: In eclipse / FP go to Window Preferences General Workspace Linked Resources Create a new resource, CUSTOM_VAR, or whatever you want the name to be, point it to the directory you need. I'm not sure

Re: [flexcoders] Scan thru XML

2008-04-04 Thread Paul Spitzer
var nodes: XMLList = xml..bnumber1; Will get you all the bnumber1 elements. If that's what you mean? markgoldin_2000 wrote: I have the follwing xml: curtrainblockscars train_id2/train_id locationWest Class/location bnumber1440/bnumber1 carsb19/carsb1 bnumber2430/bnumber2

Re: [flexcoders] Re: Scan thru XML

2008-04-04 Thread Paul Spitzer
ahh, I see. Try something like this... xml.children().(name().toString().search(/bnumber[0-9]+$/) == 0) markgoldin_2000 wrote: What I really want is all bnumber... and carsb elements. --- In flexcoders@yahoogroups.com, Paul Spitzer [EMAIL PROTECTED] wrote: var nodes: XMLList = xml

Re: [flexcoders] Re: Need help buying Flex licenses in US$ - Intl prices are highway robbery!

2008-04-17 Thread Paul Spitzer
http://opensource.adobe.com/svn/opensource/flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/ Josh McDonald wrote: But if I don't whinge enough, I might find myself stuck in flex 2, and without the source to rpc.* I can't work out / work around all the SOAP bugs for myself, and since Adobe