[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-11-02 Thread lrdvadersith
ApplicationServiceSoap is my code - it is the class I quoted a few posts earlier. In this case, it is not the first time the class is running, but it is the first time the function is running. It is long (256 lines), but here are what I think are the relevant parts: package

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-11-02 Thread Alex Harui
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lrdvadersith Sent: Friday, November 02, 2007 7:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed. ApplicationServiceSoap is my code

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-11-02 Thread lrdvadersith
If I comment out the body, I get the same error at the same place. For grins, I also tried renaming the method in case deleteHandler was somehow reserved. Same result. At this point it looks like the ActionScript compiler (or maybe the flash player) reacts differently based on method order, but

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-11-02 Thread Alex Harui
02, 2007 9:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed. deleteApplicationCallback is injected by the user of the service, but my hunch is that it isn't a problem because the deleteHandler never gets called. The verify

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-11-02 Thread Alex Harui
: VerifyError: Error #1025: An invalid register 5 was accessed. If I comment out the body, I get the same error at the same place. For grins, I also tried renaming the method in case deleteHandler was somehow reserved. Same result. At this point it looks like the ActionScript compiler (or maybe

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-11-02 Thread lrdvadersith
deleteApplicationCallback is injected by the user of the service, but my hunch is that it isn't a problem because the deleteHandler never gets called. The verify error appears to be happening when Flex is trying to make the call to the deleteHandler - if I put a breakpoint inside the function, it

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-11-02 Thread lrdvadersith
I'm not sure I could. On the one hand, I can make an entry point to the Soap class that doesn't need the classes above it, but on the other, this problem happens on the return of a web service. If I strip out the Web Service, the handler code wouldn't be called in the same way. Steve --- In

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-11-02 Thread Alex Harui
Can you make the site available to me? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lrdvadersith Sent: Friday, November 02, 2007 11:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025: An invalid

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-11-01 Thread lrdvadersith
I hadn't considered that, thanks. I changed my xmlns:model to xmlns:mdl, and things worked fine - for a while. Now I get that same verify error, but in an completely different piece of code, and all the code is in the same ActionScript file. While initializing a web service, I have the

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-11-01 Thread Alex Harui
check what was assigned to deleteApplicationCallback. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lrdvadersith Sent: Thursday, November 01, 2007 11:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-11-01 Thread lrdvadersith
[mailto:[EMAIL PROTECTED] On Behalf Of lrdvadersith Sent: Thursday, November 01, 2007 11:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed. I hadn't considered that, thanks. I changed my xmlns:model to xmlns:mdl

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-11-01 Thread Alex Harui
: Thursday, November 01, 2007 11:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed. Did you mean a debug build of the flash player? If so, where would I get one? I did run my app in the debugger, and I don't even get inside

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-11-01 Thread lrdvadersith
Sadly, this didn't solve the problem for me. I cleaned my project, then deleted it from Eclipse. I then removed all FlexBuilders, Flash players, etc from my PC, and rebooted. Next, I installed the FlexBuilder 3 beta 2 plugin on my system, created a new project in Eclipse and rebuilt the

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-11-01 Thread Alex Harui
] On Behalf Of lrdvadersith Sent: Thursday, November 01, 2007 3:31 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed. Sadly, this didn't solve the problem for me. I cleaned my project, then deleted it from Eclipse. I

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-31 Thread lrdvadersith
I stripped out as much code as I could, and the error does still happen. I think the error has something to do with one of 2 files: roles.mxml: mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; xmlns:test=components.* xmlns:model=com.pinnacol.test.model.*

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-31 Thread Alex Harui
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed. I stripped out as much code as I could, and the error does still happen. I think the error has something to do with one of 2 files: roles.mxml: mx:Canvas xmlns:mx=http://www.adobe.com

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-30 Thread lrdvadersith
I've fixed the problem that was originally giving me this problem, but now I am getting it again under different circumstances. Does anyone know exactly what this error is? Thanks, Steve --- In flexcoders@yahoogroups.com, lrdvadersith [EMAIL PROTECTED] wrote: Does anyone know what this error

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-30 Thread Alex Harui
How did you fix it last time? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lrdvadersith Sent: Tuesday, October 30, 2007 7:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-30 Thread lrdvadersith
:[EMAIL PROTECTED] On Behalf Of lrdvadersith Sent: Tuesday, October 30, 2007 7:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed. I've fixed the problem that was originally giving me this problem, but now I am

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-30 Thread Alex Harui
mailto:flexcoders%40yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed. I've fixed the problem that was originally giving me this problem, but now I am getting it again under different circumstances. Does anyone know exactly what this error

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-30 Thread lrdvadersith
I seem to be pretty good at doing things that shouldn't be doable }:-) A quick search of the project directory reveals only 2 swf files: sane.swf (my project), and playerProductInstall.swf (don't know where this comes from). I get the same behavior in FlexBuilder 3 standalone, and the

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-29 Thread lrdvadersith
I had seen sortCompareFunction, but I hadn't seen labelFunction. Much nicer than using an ItemRenderer. It still left me with the uncomfortable situation where I would have to write a lot of display and sort functions to get the various behavior I want. Then I ran across your blog posting about

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-26 Thread lrdvadersith
I don't think the itemRenderers are affecting my ability to sort, but I think my lack of dataFields are. My dataobjects look like this: An Application object with a code. A Role object with an Application, code, and description A UserRole object with a Role, and comment. My datagrid contains an

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-26 Thread Alex Harui
, October 26, 2007 9:11 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed. I don't think the itemRenderers are affecting my ability to sort, but I think my lack of dataFields are. My dataobjects look like this: An Application

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-25 Thread lrdvadersith
There are no sortFunctions on the mxml page. I'm trying to follow the example in http://livedocs.adobe.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=0598.html In that example, there were no sortFunctions on the data grid columns, all the sorting was done in

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-25 Thread lrdvadersith
I think I answered the wrong question before. I have a function called sortFunctions defined in the model, with the signature given in the original post. Steve --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Is sortFunctions defined on model or on the app?

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-25 Thread Alex Harui
:39 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed. I think I answered the wrong question before. I have a function called sortFunctions defined in the model, with the signature given in the original post. Steve

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-25 Thread lrdvadersith
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed. I think I answered the wrong question before. I have a function called sortFunctions defined in the model, with the signature given in the original post. Steve

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-25 Thread Alex Harui
to sort. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lrdvadersith Sent: Thursday, October 25, 2007 1:56 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed. I'm