Re: [flexcoders] Flex PHP Service with Date Parameters Help

2010-08-27 Thread claudiu ursica
I am not sure where your problem is in the php code. However if you think the date is the issue use timestamps which are basically numbers. I did that successfully in the past. On the flex side you can write an utility for translating that into a date for display purposes. Which line is 61 in

RE: [flexcoders] Loading Images into a loaded SWF

2010-08-27 Thread Julian Tenney
This is getting too hard. I've fixed it by creating a native window and loading it into that. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Alex Harui Sent: 26 August 2010 21:28 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Loading Images into a

Re: [flexcoders] FABridge Problem - Please help!

2010-08-27 Thread Brian J. Ackermann
http://code.google.com/p/flex-iframe/source/browse/trunk/examples/IFrameCommTest/src/com/google/code/flexiframe/examples/IFrameCommTest.mxml lines 80 81 in the original example, there was no ID Thanks -- Brian J. Ackermann brian.ackerm...@gmail.com 952.373.1626

Re: [flexcoders] Constraining one components location to another component

2010-08-27 Thread Haykel BEN JEMIA
Hi, I think the best way is to create a new component that will hold the image and the floating components and handle visibility of these components through states. Example: ?xml version=1.0 encoding=utf-8? s:Group xmlns:fx=http://ns.adobe.com/mxml/2009;

[flexcoders] LCDS Deadlock, after upgrading to SDK 3.5

2010-08-27 Thread Shailesh M
We recently upgraded to SDK 3.5a (LCDS 2.6.1) and started to see sporadic deadlocks in LCDS's rtmp thread. These are difficult to reproduce in test environment but happens in production once every couple of days, sometimes even more frequently. Here is the thread dump of the threads in lock.

[flexcoders] Where To Declare CSS Style Name in AS Component

2010-08-27 Thread Angelo Anolin
Dear FlexCoders, In Flex 3, you can simply name your CSS style to the name of the component you created. For example, you created an AS component named MyNewButton, hence, in your CSS file, you can declare a style with name MyNewButton and the component automatically picks up that style. But

Re: [flexcoders] styles are ignored

2010-08-27 Thread Haykel BEN JEMIA
CSS in Flex 4 uses namespaces and you have to update your Flex 3 CSS files. You can simply open the CSS files in Flash Builder, put the cursor directly after every class name in the selectors and click 'Ctrl'-Space and Flash Builder will add the namespaces. Haykel Ben Jemia Allmas Web RIA

[flexcoders] FB4: DataGroup not resizing when dataProvider is updated

2010-08-27 Thread Nick Middleweek
Hello, I'm new to FB4 and am working with another chap creating a component. We've got a DataGroup who's dataProvider is increased when a button is pressed. When the DataGroup is set to a fixed height, i.e. 200 we can see the itemRenderer components being added on screen but with the

[flexcoders] styles are ignored

2010-08-27 Thread Jesse Warden
This Flex app loads in a module, and an external stylesheet (no, I can't get into why). When I put my mx:Style source=defaults.css / in the app, they don't show up. If I trace out the CSSStyleDeclaration in creationComplete it's null. The code doesn't allow me to compile with

[flexcoders] Flex appli to Air.

2010-08-27 Thread Christophe
Hello, Is it fast to convert a Flex appli to an Air Appli ? Did the database should be local to the client ? Thank you, Christophe,

Re: [flexcoders] styles are ignored

2010-08-27 Thread Angelo Anolin
I must assume that you are using Flex SDK 4. I am currently having the same issues now. Trying to port some Flex 3 codes to Flex 4 and a lot of styling and CSS things are going haywire. I thought that developer and designer productivity has been greatly enhanced in SDK 4.0 but it seems that

Re: [flexcoders] FB4: DataGroup not resizing when dataProvider is updated

2010-08-27 Thread Alex Harui
Try setting useVirtualLayout=false. Also make sure the renderer measures correctly in one-pass. If you are counting on images to load later that can mess things up. On 8/27/10 8:25 AM, Nick Middleweek n...@middleweek.co.uk wrote: Hello, I'm new to FB4 and am working with another chap

Re: [flexcoders] styles are ignored

2010-08-27 Thread Alex Harui
It might be namespaces, but we’ve seen a few folks struggling with this sort of thing. In Flex 4 styles are per-module. When a module is loaded, if a type selector in the module doesn’t match the main app’s copy of the type-selector or it doesn’t exist in the main app, then the module’s copy

Re: [flexcoders] Where To Declare CSS Style Name in AS Component

2010-08-27 Thread Angelo Anolin
Anybody? Having so much hard time trying to move flex3 to flex4. Basically this is a styling issue which is far beyond my expertise. If you have a component created named myButton.as, and you created a CSS file with a style named myButton, that CSS declaration would span all instances where

Re: [flexcoders] Where To Declare CSS Style Name in AS Component

2010-08-27 Thread Wesley Acheson
I think the issue is that you need to namespace all of the styles. So depending on which component your myButton was based off a spark component or a Halo component. See the following link for more details. http://cookbooks.adobe.com/post_How_to_use_the_new_CSS_syntax_in_Flex_4-15726.html

[flexcoders] Re: enterState exitState frustrations

2010-08-27 Thread striton_ca
--- In flexcoders@yahoogroups.com, striton_ca aa...@... wrote: I am a new Flex coder. So far I'm enjoying the flexibility of the framework, but I am having a heck of a time with state changes. I'm using Flex 4.1. I'm working on a basic GUI. You start with a welcome screen, followed by a

Re: [flexcoders] Re: FB4: Looping thru itemrenderers

2010-08-27 Thread Mandlem Nageswara Rao
You should control at the data provider level..not at the itemrenderer level..To make clear you first give 10 elements only to data provider and when user clicks then you update the data provider to give next 10 elements. This is more similar to our traditional approach of showing data in

[flexcoders] Re: FB4: Tabbing Problem on Popped Up Custom Components

2010-08-27 Thread Arik de Guzman
thanks alex for taking time to reply, yes i tried this, the formitem-textinput has focus but upon tabbing, instead of going to the next formitem-textinput, the focus goes to the parent container which is the main container, the windowedapplication. --- In flexcoders@yahoogroups.com, Alex

[flexcoders] Problem getting compiler to recognize a custom class

2010-08-27 Thread colin.ashe
Hi, I've been banging my head on the wall for the last few days over this problem - hopefully one of you can help. I'm writing a program to visualize the movement of some particles and I've written a class, which extends UIComponent as the main visual element. This class then uses the Flint

[flexcoders] Re: FB4: Tabbing Problem on Popped Up Custom Components

2010-08-27 Thread Arik de Guzman
Hi, thanks alex for taking time to reply. I tried that also, but when i set the creationComplete to setfocus on my text input which is located inside a form, When i Tab, instead of going to the next form item which is another textinput, the popup container loses focus, and next focus is the

Re: [flexcoders] Flex appli to Air.

2010-08-27 Thread Rob Parkhill
Christophe, If you have a working Flex Application, it is simple to change the Project Type to an AIR application. Changing the database is a little more involved, as you would have to create the tables etc. the first time the AIR app is installed. There are some great samples in the Tour de

Re: [flexcoders] Re: Getting HTTP status codes from NetConnection

2010-08-27 Thread Mandlem Nageswara Rao
No you can get them... You need to add a NetStatusEvent to NetConnect object, when there is a status you will get informed automatically... Nagesh --- On Wed, 25/8/10, aaronius9er9er aaronius...@gmail.com wrote: From: aaronius9er9er aaronius...@gmail.com Subject: [flexcoders] Re: Getting HTTP

Re: [flexcoders] Re: FB4: Tabbing Problem on Popped Up Custom Components

2010-08-27 Thread Alex Harui
Is the popup an IFocusManagerContainer? Otherwise it won’t have its own focus loop. On 8/26/10 4:46 PM, Arik de Guzman arik...@yahoo.com wrote: Hi, thanks alex for taking time to reply. I tried that also, but when i set the creationComplete to setfocus on my text input which is

Re: [flexcoders] Re: Getting HTTP status codes from NetConnection

2010-08-27 Thread Srinivas S.M
Nagesh, NetStatusEvent doesn't return HTTP Status codes, it would have info objecthttp://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/flash/events/NetStatusEvent.html#infowhich has it's own code different meanings. AARONIUS9er9er is asking about 404, 500, 200 etc.. HTTP codes..