... From: "markflex2007" <markflex2007@...> To: <flexcoders@yahoogroups.com> Sent: Saturday, November 01, 2008 3:27 AM Subject: [flexcoders] How to pass...
I even changed it to this: selected = ( selected == false ? true: false); When I click on a checkbox then all visible rows in the DG get checkbox checked...
My first post on this marvellous but bewildering resource... I am a designer/art director heading in the direction of development - and I am presently baffled...
You can send a custom event and use that to transport your data.. ... From: Louise Rains To: flexcoders@yahoogroups.com Sent: Saturday, November 01, 2008 3:16...
Hi Everyone, can someone point me in the right direction for accomplishing the following. I have a value object that contains a username and an array of...
It isn't clear why you are considering using Flex or what it is you are trying to accomplish. Maybe rephrase your question to make it more targeted. Your...
A good suggestion, but I'm not sure if this will work for my purposes. I do have a reference to the child object in question, but I first need to determine if...
Aaron Miller
amiller@...
Nov 1, 2008 7:07 pm
129311
Something along these lines: var hiddenArea:int = myCanvasChild.height - (myCanvas.height - myCanvasChild.x); if (hiddenArea > 0)...
In thinking about this more, you're going to have to find the localToContent point x value for myCanvasChild; to see if it's in the viewable area of the...
Is there a way to disable the right-click menu while dragging? If not, how do I formally request this? It's pretty annoying to accidently hit the right menu...
Of course, looking at y values would certainly make more sense for vertical scrolling. :( -TH ... is ... I'm ... know ... view ... children ... is ... the ... ...
Not even a "custom" event. Dispatch an ordinary Event, with a specific name. In the handler, use the event.target reference to access the value in a public...
Why are you using the "label" property? That property is not on your item object. You should do something like this: super.data = value; var xmlData:XML =...
Hi I am new to plugin development and I startded off by creating a sample plugin using flex builder 3 plugin version. These are the steps that I followed a)...
rviswanathan
v_ramakrishnan@...
Nov 2, 2008 5:48 am
129319
Hi I am new to plugin development and I startded off by creating a sample plugin using flex builder 3 plugin version. These are the steps that I followed a)...
rviswanathan
v_ramakrishnan@...
Nov 2, 2008 5:48 am
129320
Ok. So, it appears that searching via the group's web interface is not reliable. When I searched through the emails I'd received from the group, I found all...
Thanks for the example, Tracy. That helped me, too. I was able to move my event listening and dispatching away from the loaded systemManager and onto the...
I would think about the datastructure u use... an Array of mixed content is not necessarily the optimum. I for example would create a new datatype. If u need a...
Good morning A/all I was wanting to know if anybody has had any experience using the Wildwest domains as a webservice. Any help/Direction or examples will...
myTabBar.selectedIndex = myTabBar.getChildIndex(myTabBar.getChildByName(e.label)); does not work because the child name is not the tab label text. How would I...
Maybe you can add name="{label}" to the children? Ralf....
Ralf Bokelberg
ralf.bokelberg@...
Nov 2, 2008 12:47 pm
129326
... This should actually be accounted for by the fact that a CheckBox is a toggle button. ... grid's ... That sounds like maybe your dataProvider expression...
Hello Devs, I an loading URLs in my mx:HTML component and since it takes time to load the URL pages, I want to show the busy cursor. How do I do that? ...
Tried that - I think :-) public function createTabList():void { for each (var node:XML in _paraSightDataset.tab) { var newItem:Object = new Object(); ...
That seems like a complicated and difficult way to do it. Why not just loop over tabArray, comparing your value to tabLabel, and when you match, use that loop...
OK, great thanks! I guess I was making it more complicated then it needed to be. ... Heh, it's ok. I have to do it in both directions, so either one is...
Aaron Miller
amiller@...
Nov 2, 2008 7:22 pm
129331
Hi, I'm trying to write a little .MP3 player component that displays a "buffering" state while the file is buffering, then swaps to a different (audio-visual)...