[flexcoders] Re: trouble with custom 'Text Bubble' component (examples included)

2010-03-30 Thread G
anyone have any ideas? --- In flexcoders@yahoogroups.com, "G" wrote: > > I'm trying to use a custom Text component to show a series of comments. I got > the original idea from: > > http://www.eonflex.com/?p=40 > > I've got the base case working but I am stuck with 2 problems I cant seem to >

RE: [flexcoders] Purplexing error

2010-03-30 Thread Scott
This is running on the Beta2. I haven't gotten around to getting the official version yet... I'm trying to figure out if I want the CF builder or not before I make the purchase. I've been running into a lot of issues with php superclass generation/regeneration. I certainly hope the beta versi

Re: [flexcoders] List Scrolling & Width Issues

2010-03-30 Thread Alex Harui
If you search the archives, you’ll see that image-based renderers cause lots of problems. On 3/30/10 6:02 PM, "Dan Vega" wrote: Really? Nobody has ever built a dynamic list of images before ? Thank You Dan Vega danv...@gmail.com http://www.danvega.org/ On Tue, Mar 30, 2010 at 2:01 PM,

RE: [flexcoders] Tilelist Populated by Remote XML Only showing Data from files with > 1 Node

2010-03-30 Thread Tracy Spratt
I suspect you have left the resultFormat at its default "object". This has Flex parse the xml into a tree of dynamic objects. It turns xml lists into arrays, and because the player cannot differentiate between an array with one element and an object, you have this known issue. I suggest setti

Re: [flexcoders] How to attach a local file to an email with URLRequest from AIR

2010-03-30 Thread Peeyush Tuli
mailto protocol does not officially support attachments, as mentioned below - http://msdn.microsoft.com/en-us/library/aa767737.aspx Unofficially many versions of outlook till 2003 used to support it but outlook 2007 does not - http://social.msdn.microsoft.com/Forums/en-US/winforms/thread/80d33aae

Re: [flexcoders] Re: FileReference does not sending the right header in file upload

2010-03-30 Thread Peeyush Tuli
Use this http://www.charlesproxy.com/ to see the actual http request that your flash player is sending to the server. Then compare the same traffic with the traffic exchanged by your test html page with the server. This should give you ideas over why it fails. ~Peeyush http://www.metadesignsolut

[flexcoders] Transparent area turned to black when saving

2010-03-30 Thread Wally Kolcz
I have an unusal issue. I am using the snapshot class to save an image to the harddrive from a Canvas. Problem is, I have the background of the Canvas set to an image and it is a transparent png so kids can color over it. When I try to save it, the transparent areas come up black. How can I cha

Re: [flexcoders] List Scrolling & Width Issues

2010-03-30 Thread Dan Vega
Really? Nobody has ever built a dynamic list of images before ? Thank You Dan Vega danv...@gmail.com http://www.danvega.org/ On Tue, Mar 30, 2010 at 2:01 PM, Alex Harui wrote: > > > I think list does a bit more thinking. I think it computes a typicalItem > and uses that as the default size.

RE: [flexcoders] Flex Accessing HTTP Session

2010-03-30 Thread avatar.ujier
But FlexContext.getFlexSession() can retrieve sessions set by JSP? Because actually it throws me null pointer exception. public class JavaSessionHandlerImpl implements JavaSessionHandler { private static FlexSession mySession; public JavaSessionHandlerImpl() {

[flexcoders] Re: Cairngorm sub-applications & Remoting

2010-03-30 Thread Deuce
Hello Jukka...sorry I missed your message from (way back) in January. Did you ever find the answer you were looking for? --- In flexcoders@yahoogroups.com, Siluetti wrote: > > > Hi, > > I'm running into this same error with Mate framework, so this is not only > Cairngorm-related problem. Try

RE: [flexcoders] Re: Is it a ValueObject, or is it a String.

2010-03-30 Thread Gordon Smith
The 'is' operator should definitely work. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Laurence Sent: Saturday, March 27, 2010 2:35 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Is it a ValueObject, or is it a St

[flexcoders] Out Of Memory Errors in FB4 compiling CSS

2010-03-30 Thread reflexactions
Since upgrading to FB4 I am no longer able to compile an external CSS file containg a long list of embeded images. The CSS works fine under 3 (my colleagues who havent moved to 4 have no problem). I am running on Vista with 4gb RAM. My memory config have not been changed in FB4 --launcher

[flexcoders] Re: Degrafa to FXG - Clicking Paths?

2010-03-30 Thread charlie.szymanski
Never did get a reply to this. My final solution was to make the parts of Degrafa that I needed work in Flex 4. It seems that the "Graphics" UIComponent sometimes goes nuts if you have too many of them (as in, if I put 400-500 congressional districts on the map, only about a sixth actually ap

Re: [flexcoders] SWFLoader throwing RTE

2010-03-30 Thread Oleg Sivokon
Stack overflow would mean that you have some recursion going on for ever. That would often happen if you conditionally create an instance of a class in that class constructor, or, you have used singletons in business logic and by loading a module you've made that a multitone. It also looks like tha

[flexcoders] SWFLoader throwing RTE

2010-03-30 Thread Manu Dhanda
I am trying to add a swf file in a VBox. Its as simple as below: When I execute the app, it throws me RTE: Error: Error #1023: Stack overflow occurred. at mx.core::UIComponent/get parentDocument()[C:\autobuild\3.4.0\frameworks\projects\framework\src\mx\core\UIComponent.as:2827]

[flexcoders] Tilelist Populated by Remote XML Only showing Data from files with > 1 Node

2010-03-30 Thread James
Sorry for the long title but I couldn't think of another way to sum it up. I have a tilelist which is populated by different remote xml files. The problem is if any of these files contain only 1 node then their data doesn't appear within the tilelist. I know this is due to the xml files only hav

[flexcoders] Aligning columns in a ColumnChart

2010-03-30 Thread m_hur
I have a couple of series using the same x,y axes (x=time, y=rating). The first series is columns, the second, a line. The columns are minute-by-minute, the line second-by-second. What I'd like to do is have the columns in the background, with each min-by-min data point spanning the x-axis from

Re: [flexcoders] ComboBox fullscreen issue

2010-03-30 Thread Alex Harui
mx:ComboBox doesn’t handling scaling that well. You may have to modify the dropdown to compensate for the scaling. On 3/29/10 6:15 PM, "elder.mich...@rocketmail.com" wrote: Short version: ComboBox's dropdown works and renders properly before fullscreen, but not during or after. I'm no

Re: [flexcoders] List Scrolling & Width Issues

2010-03-30 Thread Alex Harui
I think list does a bit more thinking. I think it computes a typicalItem and uses that as the default size. One of the issues with Image-based renderers is that they have no size until the image loads. If you know the size upfront, set that on the renderer. On 3/30/10 6:29 AM, "Dan Vega" w

[flexcoders] Re: How to encode array collection into json using as3

2010-03-30 Thread Kevin
Krunal- Check out AS3CoreLib... The JSON encoder/decoder works pretty well. http://code.google.com/p/as3corelib/ - Kevin --- In flexcoders@yahoogroups.com, Krunal Panchal wrote: > > Hi All > > How to encode array collection into json using as3? > > Regards, > > __

[flexcoders] Re: FileReference does not sending the right header in file upload

2010-03-30 Thread Jesus Saad
Thank you so much Oleg for your response, but I remove the Security.allowDomain() because you was right, I`m not using for another things. I remove the tags secure="false" from crossdomain file and change the parameters to GET, but in my computer is working and in server is not working. Do you kn

[flexcoders] List Scrolling & Width Issues

2010-03-30 Thread Dan Vega
Take the following example. On the left you have a list that loads data from another file. The data is a basically a set of typed objects that have a src attribute that points to an image. Don't worry to much about that, just know that we are getting a list of images. The list on the left shows an

Re: [flexcoders] Re: Error #2170: Security sandbox violation

2010-03-30 Thread Oleg Sivokon
Hi David. Is there any reason you need multiple crossdomains on that site? This is the purpose of permitted-cross-domain-policies="by-content-type" attribute in the crossdomain master file. This will not allow you to load anything from the root site folder for example, unless it is another crossdo

[flexcoders] How to encode array collection into json using as3

2010-03-30 Thread Krunal Panchal
Hi All How to encode array collection into json using as3? Regards, Krunal Panchal | *panchal_...@yahoo.com

[flexcoders] How to lock a tabNavigator??? Any idea ??

2010-03-30 Thread Nini7016 Nini7016
Hello :) In my application Flex, i created two tabs (tabNavigators), I would like that at the begening of the creation that one tab is locked and the other not locked Do you have any idea please ?? Any one has done that before .?? Thanks regards :)

Re: [flexcoders] Purplexing error

2010-03-30 Thread Ryan Stewart
Hey Scott, was this the release version of FB4 or was it a beta version? =Ryan r...@adobe.com On Mon, Mar 29, 2010 at 8:20 PM, Scott wrote: > > > I think I found the issue… And I think it’s a bug… > > > > I used the FB4 function to create the base PHP class. I then modified the > FB4 created

Re: [flexcoders] Re: Best Way To Tweet To Twitter From an Air Application

2010-03-30 Thread Peeyush Tuli
https://imo.im/ this site supports a self contained facebook login which I have not been able to find anywhere. This one also, but does not open right now - http://www.meebo.com/ I'm not sure whether they have private access to facebook authentication service or they could send the credentials e