Re: [flexcoders] Get URL that user typed in

2010-05-28 Thread Nick Middleweek
i think you're after the HTTP referrer. You can access this information server-side and I believe some of the data is available from JavaScript so from Flex, just reach out. HTH, Nick -- Sent by Nick Middleweek ( { email: n...@middleweek.co.uk, blog: http://blog.middleweek.co.uk } ); On 28

[flexcoders] Changing the dataProvider for a ComboBox doesn't seem to work properly

2010-05-28 Thread Nick Middleweek
Hi, I have a ComboBox with it's dataProvider set to an Array( =, , , ); If a TextInput is changed, I want to change (or update) the ComboBox dataProvider to use this Array( =, ); And if that TextInput is blank (), then I want to switch it back to Array( =, , , ); I've tried declaring two

Re: [flexcoders] Flex4 Swf loading real slow because of loading lots of swfs

2010-05-28 Thread Oleg Sivokon
Alex. He's using Intelij IDEA, it doesn't have Flash Builder options ;)

[flexcoders] Flash Player Parameters

2010-05-28 Thread Christophe
Hello, Is it possible to change the Flash Player Parameters settings by software instead of manually ? Thank you, Christophe,

Re: [flexcoders] Flash Player Parameters

2010-05-28 Thread Oleg Sivokon
What settings?

[flexcoders] advanced flex architecure books?

2010-05-28 Thread Nick Middleweek
Hi, Can anyone recommend any Advanced Flex/ Actionscript books out there that can teach me all about the writing components properly, using mx_internal, the Flex life cycle and anything else so I can know everything about Flex and it's inner workings :-) Maybe quite a lot to ask but I've often

[flexcoders] StyleName property ignored : when precisely and workarround ?

2010-05-28 Thread carnau...@ymail.com
Hello, I have noticed that the following quite simple CSS may be ignored depending on our MXML structure...? : .myBytton { color: #11; } Button { color: #22; } Both CSS styles are ignored below : mx:Button styleName=myButton .../ // color #11 ignored mx:Button .../ // color

[flexcoders] Flex 4 DatetimeAxis issue any solution ............

2010-05-28 Thread jayvardhan_ietk
when we are using flex 4 with datetimeaxis in areachart with following code: when we use flex 4 Horizontal axis starts from 12/09 and end at 1/09 But when we use same code at flex 3.5 then it starts from 1/09 and end at 12/09. !-- Sample data provider -- mx:ArrayCollection id=dp

Re: [flexcoders] Changing the dataProvider for a ComboBox doesn't seem to work properly

2010-05-28 Thread Akshar Kaul
use arraycollection as the dataprovider. also set [Bindable] tag before the variables. Akshar Kaul On Fri, May 28, 2010 at 15:18, Nick Middleweek n...@middleweek.co.ukwrote: Hi, I have a ComboBox with it's dataProvider set to an Array( =, , , ); If a TextInput is changed, I want to

[flexcoders] Re: How to show a hand cursor when mouse over a s:Label control ?

2010-05-28 Thread itaid1
Did that, doesn't work. It looks like an annoying bug in Flex 4 --- In flexcoders@yahoogroups.com, Amy amyblankens...@... wrote: try mouseChildren=false. --- In flexcoders@yahoogroups.com, itaid1 itaid1@ wrote: Hi I'm using this inside a spark skin class, but the mouse does not

[flexcoders] Re: Slide down effect in Spark ComboBox/DropDownList

2010-05-28 Thread djamsheds
Spending hours on docs, research and experiments I came up with three possible solutions (neither is ideal): #1 Go back to MX ComboBox component, which has a slide down effect by default #2 Try emulating (right, do not slide down, try to fake user with combination of several effects that will

[flexcoders] Storage of encryption key

2010-05-28 Thread Christophe
Hello, I encrypt string data inside mySql, with a key. Where to store the key in the Flex project to be invisible ? Thank you, Christophe

[flexcoders] trace(trace not working);

2010-05-28 Thread jamesfin
I have the Flex4 Eclipse Plugin installed and I'm noticing that the trace statement seems to be ignored. A breakpoint can't be put on any trace statement nor does any output appear. My Flex 3 Eclipse Plugin works great. I can debug in both versions no problem. trace(waiting for your

Re: [flexcoders] trace(trace not working);

2010-05-28 Thread Brendan Meutzner
Do you use the compiler argument -optimize=true ? On May 28, 2010, at 10:59 AM, jamesfin james.alan.finni...@gmail.com wrote: I have the Flex4 Eclipse Plugin installed and I'm noticing that the trace statement seems to be ignored. A breakpoint can't be put on any trace statement nor

[flexcoders] Re: trace(trace not working);

2010-05-28 Thread jamesfin
trace(no); --- In flexcoders@yahoogroups.com, Brendan Meutzner bmeutz...@... wrote: Do you use the compiler argument -optimize=true ? On May 28, 2010, at 10:59 AM, jamesfin james.alan.finni...@... wrote: I have the Flex4 Eclipse Plugin installed and I'm noticing that the trace

Re: [flexcoders] StyleName property ignored : when precisely and workarround ?

2010-05-28 Thread Alex Harui
Post a full test case I can copy and paste to try out. I did notice the name of the selector is myBytton, not myButton. On 5/27/10 12:54 PM, carnau...@ymail.com carnau...@ymail.com wrote: Hello, I have noticed that the following quite simple CSS may be ignored depending on our MXML

Re: [flexcoders] Flex4 Swf loading real slow because of loading lots of swfs

2010-05-28 Thread Alex Harui
There must be someway to control RSL usage, even if it requires editing flex-config.xml On 5/28/10 3:40 AM, olegsivo...@gmail.com olegsivo...@gmail.com wrote: Alex. He's using Intelij IDEA, it doesn't have Flash Builder options ;) -- Alex Harui Flex SDK Team Adobe System, Inc.

[flexcoders] Can someone point out a tutorial or sample about moving panels?

2010-05-28 Thread Raymond Brown
I was looking for a way to move panels freely within a container, like the tool on http://www.splashup.com/splashup/ and I was wondering how to do the same. I have no interest in duplicating the site, just want to know how to drop two or more panels into a container such that my users can move

Re: [flexcoders] How to get X, Y position/coordinates of a specific character/letter in a text field

2010-05-28 Thread Baz
Alex I'm going to look into that, thanks for the tip. Similarly, if I wanted to change the font color of a single word, would I use TextLine (or something similar) or would I then have to manually break apart the span tags to be able to give them different styles?

[flexcoders] useHandCursor and selectable=true?

2010-05-28 Thread Baz
I would like to use the hand cursor while still allowing my RichEditbleText to be selectable. The combination of selectable=true and useHandCursor=true does not change the cursor to a hand. Any ideas?

Re: [flexcoders] useHandCursor and selectable=true?

2010-05-28 Thread Oleg Sivokon
You can set selection programmatically based on mouse position, so I would opt for making a text field unselectable by user and manage the selection in response to mouse events. However, generally, it's counterintuitive for users, it's kind of looks like a bug, when you don't see the i-beam and

Re: [flexcoders] useHandCursor and selectable=true?

2010-05-28 Thread Baz
Thanks Oleg. You are helpful as usual. I want to mimic HTML in how a link is selectable, yet still clickable with the hand cursor. There is a millimeter of space before and after the link where the handcursor changes to a selection cursor. As I write this I just realized there is an s:a tag that

[flexcoders] Possible to capture the console log and act on it?

2010-05-28 Thread luvfotography
Hi, My flex program is loading an external swf and the swf file outputs trace statements to the console log, is there a way to capture and act on those trace statements?

[flexcoders] Re: Storage of encryption key

2010-05-28 Thread Alex
It is a bad security practice to keep sensitive information in the flex application. The SWF file can be easily decompiled and analysed; keep in mind that your Flex application executes on the client side so the user can get the SWF from the browser cache. You are better off keeping the key on

Re: [flexcoders] Possible to capture the console log and act on it?

2010-05-28 Thread Paul Andrews
On 28/05/2010 22:25, luvfotography wrote: Hi, My flex program is loading an external swf and the swf file outputs trace statements to the console log, is there a way to capture and act on those trace statements? Whether it's possible or not, it's an awful way to try and communicate

[flexcoders] Comobox/DataGrid does not display data

2010-05-28 Thread md_ars
I have a Combobox and its dataprovide is an ArrayCollection(formType) which is being populate from XMLLIst(formXMLListB) as given below public function getForms(vForm:Object):void { formXMLListB = vForm.mtResult.tuples.item.tuple; // resultFormat=e4x

Re: [flexcoders] Can someone point out a tutorial or sample about moving panels?

2010-05-28 Thread dorkie dork from dorktown
in a panel component add startDrag() and stopDrag() in the mouse down and mouse up events respectively. jp On Fri, May 28, 2010 at 12:56 PM, Raymond Brown silenttr...@yahoo.comwrote: I was looking for a way to move panels freely within a container, like the tool on

Re: [flexcoders] advanced flex architecure books?

2010-05-28 Thread dorkie dork from dorktown
You will learn a ton from Flash Builder 4 and Flex 4 Bible by David Gassner. JP On Fri, May 28, 2010 at 8:35 AM, Nick Middleweek n...@middleweek.co.uk wrote: Hi, Can anyone recommend any Advanced Flex/ Actionscript books out there that can teach me all about the writing components

[flexcoders] Ctrl+Enter to complete url

2010-05-28 Thread Shabir Gilkar
Hi All, I have to activate Ctrl+Enter to complete url in my FB Project, Can any body help? -- With Regards Shabir Ahmad Gilkar Srinagar Kashmir JK Voice: +91 9419942501 email: shabirgil...@gmail.com URL: http://shabirgilkar.wordpress.com Skype: shabirgilkar Join I Feel The Pain on

[flexcoders] E4X wildcard/dynamic query

2010-05-28 Thread Richard Rodseth
Does attribute matching in E4X include some kind of wildcard value? I'd like to be able to do something like: nodes.node.(attribute( a) == query.a attribute(b) == query.b) nodes node a=1 /node node a=1 b=2 /node nodes and have both nodes match if query.b is null.