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

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

2006-11-17 Thread Paul Spitzer
Hi all, Hoping someone can help me out here. We've recently switched our Web Services implementation on the server from Axis to XFire. With the switch one of the existing working operations is now failing. The failure happens somewhere in the Flex Web Service classes when the request to call t

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 recentl

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

2007-01-24 Thread Paul Spitzer
orn Schultheiss 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... >> &g

[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. Anyway

[flexcoders] External Libs - Debug SWFs

2006-09-26 Thread Paul Spitzer
I have a few external libs (RSLs) that I'm pulling into my application. The libs appear to be published with debugging enabled. For the life of me I can't seem to turn debugging off and when I launch my primary application SWF the player loads the libs and starts asking me where the debugger is

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 c

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

2006-09-26 Thread Paul Spitzer
Figured it out. Had to change things a bit but it appears to be working. 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 './w

[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 task. My target looks like (note the dir)... The prob

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

2006-09-27 Thread Paul Spitzer
7;d simply build libs of code (packaged in a SWF) and write our own loading scheme. Going this route, while more 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 T

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.t

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.

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: http://gr

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

2006-09-28 Thread Paul Spitzer
t I > have not found a way to do that. I am starting to think that what may > be required 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

[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 c

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 y

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 an

Re: [flexcoders] mxmlc -increment not working.

2006-10-02 Thread Paul Spitzer
it looks like in my ANT 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 PROTECTED]>> > wrote: > >

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 a

Re: [flexcoders] mxmlc -increment not working.

2006-10-03 Thread Paul Spitzer
Ralf Bokelberg wrote: > Hi Paul, > > i can run it with ant wo problem. What does your ant target look like? > Cheers, > Ralf. > > On 10/2/06, Paul Spitzer <[EMAIL PROTECTED]> wrote: > >> Robert Wąs wrote: >>

[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 <*> T

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://g

Re: [flexcoders] SOAP Web Services and registerClassAlias

2006-10-04 Thread Paul Spitzer
> ____ > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 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 >

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, >> >>

Re: [flexcoders] Relative paths in IDE compiler args

2006-10-08 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 di

Re: [flexcoders] Relative paths in IDE compiler args

2006-10-09 Thread Paul Spitzer
gt;> same works for -source-path (and probably all other compiler flags as >> well) >> >> Dirk. >> >> >>> -Original Message- >>> From: flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> >>> [mailto:flexcoders@yah

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 creationPoli

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 > > > > >fork="true" >failonerror="true" >maxme

Re: [flexcoders] ant and mxmlc

2006-10-10 Thread Paul Spitzer
> 'unknown 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 co

Re: [flexcoders] ant and mxmlc

2006-10-10 Thread Paul Spitzer
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: > > I could be wrong but it doesn

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 task as well, as opposed to the task. Ralf Bokelberg wrote: > Not s

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

[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 s

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

Re: [flexcoders] Runtime Class Loading

2008-03-29 Thread Paul Spitzer
SWC to make sure it is valid. > > > > *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

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 a

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

2008-04-03 Thread Paul Spitzer
em. > > Cheers! > > > --- In flexcoders@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

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 resource

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 direc

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: > > 2 > West Class > 440 > 9 > 430 > 36 > > How can scan it for elements with a specific name(not value), for > example: bnu

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: > >

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