[Flashcoders] Mouse Icons in player 9

2010-09-04 Thread Paul Andrews
Not wishing to re-invent the wheel and having to target player 9, I'd like to change the mouse icon. Before I get flooded with explanations of hiding the mouse and using a custom movieclip that follows the mouse - all of which I know how to do, Is there any way to get at the standard mouse

RE: [Flashcoders] Datagrid problem after resize page

2010-09-04 Thread Cor
Yes, you are right. Do you perhaps have another solution to my problem? -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Henrik Andersson Sent: vrijdag 3 september 2010 23:21 To: Flash Coders List Subject:

RE: [Flashcoders] parsing multi-dimensional array

2010-09-04 Thread Cor
@Jason, Can you give an example, of such a multidimensional array, and how to do this with value objects? Regards Cor -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Merrill, Jason Sent: vrijdag 3

Re: [Flashcoders] Datagrid problem after resize page

2010-09-04 Thread Karl DeSaulniers
Correct. So my theory is.. put your grid inside a scale9'd MC. :) My only other suggestion is to switch grid components or roll your own if pos. That link I sent you had some source example you could look at. I tried resizing the demo on my computer and it looked ok. Question: Is any part of

RE: [Flashcoders] Datagrid problem after resize page

2010-09-04 Thread Cor
Indeed, I will created my own. A: I have no image in my grid. Thanks very much Karl, you have been a great help!! Regards Cor -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent:

Re: [Flashcoders] Datagrid problem after resize page

2010-09-04 Thread Karl DeSaulniers
Glad I could help on a somewhat molecular level. :) GL Karl On Sep 4, 2010, at 3:36 AM, Cor wrote: Indeed, I will created my own. A: I have no image in my grid. Thanks very much Karl, you have been a great help!! Regards Cor -Original Message- From:

[Flashcoders] Error #2032

2010-09-04 Thread Paul Andrews
I have an pap that access a remote server (well it won't be remote once deployed) via http and the server returns some XML. Testing via the IDE.. using GET I have no problem using POST I get Error #2032. What's the best way forward to know why the server is upset? Paul

Re: [Flashcoders] Error #2032

2010-09-04 Thread Juan Pablo Califano
It's hard to know what the problem is with such limited info. The first step to troubleshoot this would be inspecting the http traffic. I guess. The best tool for this that I know of is wireshark ( http://www.wireshark.org/). It's not the most friendly though and could be a bit daunting at

Re: [Flashcoders] Error #2032

2010-09-04 Thread Juan Pablo Califano
PS: Also, some RESTful services are rather strict about what HTTP command they accept. Some will only allow POST for some operations and GET for others. This might be the case here... As a side note, if you set your code to use POST but you don't send any data in the request body, flash will

Re: [Flashcoders] parsing multi-dimensional array

2010-09-04 Thread Juan Pablo Califano
It seems like you want to group your data by color and each of your items consists of a string and two numbers. Let's assume this items are points (holding an x and y value) that have a label. (By the way, defining the data makes finding a good structure for it easier; when you ask a question