RE: [flexcoders] Variable instances behavior in Actionscript

2007-09-05 Thread Gordon Smith
a, b, and c all contain references to the same instance of Book. References are always to objects, not to vars. Nulling out c has no effect on a and b, which continue to refer to the instance of Book. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] getChildren() ... what's in it?

2007-09-05 Thread Gordon Smith
Trace output appears in the Console pane. To see trace output, you need to Debug rather than Run you app. If you trace an Array, each element of the Array will be converted to a String (using its toString() method) and the resulting strings will be output with a comma between each one. As the

[flexcoders] Separate servers for messaging and flex?

2007-09-05 Thread jfujita1
Hi, I'm planning on setting up a group of servers for my flex deployment. I would like to have one dedicated LCDS server that I use for RTMP messaging and one dedicated server for hosting the flex web app files (.swf/.mxml/.html). All the LCDS server does is listen to another back-end server

[flexcoders] Memory Allocation Error - Garbage Collection Hack

2007-09-05 Thread marcel.panse
Hi, I'm working on an AIR application that has to load a lot of pictures from a users harddrive. I have to be able to load about 120 photos (of 3MB each), open them, resize it, save it in memory and cache a resized photo to disk. So i created a manager which has an internal queueing system that

Re: [flexcoders] Style question - additional listeners to Bindables

2007-09-05 Thread Muzak
mx:Button enabled={COUNT == 5} / Also look into propertyChange and PropertyChangeEvent http://livedocs.adobe.com/flex/2/langref/mx/events/PropertyChangeEvent.html http://livedocs.adobe.com/flex/201/html/metadata_141_06.html regards, Muzak - Original Message - From: cbaray [EMAIL

Re: [flexcoders] getChildren() ... what's in it?

2007-09-05 Thread Muzak
And you can use trace() in combination with mx.utils.ObjectUtil.toString() which will display the object tree structure in the console trace(ObjectUtil.toString(myCanvas.getChildren())); http://livedocs.adobe.com/flex/201/langref/mx/utils/ObjectUtil.html#toString() regards, Muzak -

[flexcoders] Re: Memory Allocation Error - Garbage Collection Hack

2007-09-05 Thread marcel.panse
Check out the source code at: http://base.google.com/base/a/2685374/D9044196074378539154 --- In flexcoders@yahoogroups.com, marcel.panse [EMAIL PROTECTED] wrote: Hi, I'm working on an AIR application that has to load a lot of pictures from a users harddrive. I have to be able to load about

[flexcoders] Flex Builder 3 Profiler

2007-09-05 Thread Mark Ingram
Hi, I'm having trouble with the new Profiler in Flex Builder 3 - I just get errors saying socket timeout.. I'm googled and tried several things, using only firefox, having no firefox windows open, disabling windows firewall, running FB3 as administrator, upgrading flash player version etc.

[flexcoders] Overlay over mx:videoDisplay

2007-09-05 Thread Berkay Unal
Hi Coders, I am trying to achieve some animation over mx:videodisplay to show some events like buffering etc etc. I am tried making it work with mx:states. But I can only use position:Before | After. But could not make the animation or image to overlay on the centers of the videoDisplay Does

[flexcoders] Re: Overlay over mx:videoDisplay

2007-09-05 Thread Berkay Unal
Sorry for taking time. I have solved my problem On 9/5/07, Berkay Unal [EMAIL PROTECTED] wrote: Hi Coders, I am trying to achieve some animation over mx:videodisplay to show some events like buffering etc etc. I am tried making it work with mx:states. But I can only use position:Before |

[flexcoders] Ticker tape

2007-09-05 Thread jitendra jain
Hi friends, I want to build a stock market ticker with components like labels, images and also wants them to scroll from right to left . Help me out. Thanks in advance for your kind support, with regards, JJain - Looking for a

[flexcoders] Chart itemRenderers - how to get origional data values?

2007-09-05 Thread barry.beattie
this *should* be easy. following one of Ely's bar chart itemRenderers, a label is created on each bar showing it's value. Unfortunately, this itemRenderer uses the X position where the drawn bar ends. _label.text = BarSeriesItem(_chartItem).xValue.toString(); The trouble is I've got a BarSet

Re: [flexcoders] Flex Builder 3 Profiler

2007-09-05 Thread Scott - FastLane
If I recall correctly, when I hit this I had to make sure I did the following 1) Make sure you have the correct flash player... I found a post somewhere that told me which version of flash to use for profiling. I think it was the version that came with the flex3 beta download 2) Launch from

[flexcoders] Re: Flex Builder 3 Profiler

2007-09-05 Thread marcel.panse
I have the same problem. I have the newest debug flash player, so that shouldn't be a problem.. But the popup dialog just won't appear, nothing works.. --- In flexcoders@yahoogroups.com, Scott - FastLane [EMAIL PROTECTED] wrote: If I recall correctly, when I hit this I had to make sure I did

[flexcoders] How is this done?

2007-09-05 Thread helix206
I saw a fiew flash sites that act as normal HTML/CSS sites. By that i meen they resize the browser window acording to the content in flash, so if you click a link in a site and new content is much bigger then the old one, the flash SWF width and height changes and browser adopts. Can anyone

[flexcoders] Accessing an Alert (or popup window) programmatically

2007-09-05 Thread twcrone70
Anyone know how to click a button in an Alert or a window being managed by the PopupManager? Writing a testing tool that needs to be able to close down popups that are programmatically summoned via automated button clicking etc. Also would love to know how to programmatically access the popup's

[flexcoders] Anyone know of good flex apps

2007-09-05 Thread Sherif Abdou
that have their source so i could learn more I know adobe has 3 on their site, i did those and i redid this app using coldfusion and mssql to run in flex http://coenraets.org/blog/2007/08/salesbuilder-source-code-available/#comments anyone know of any other hidden sites?

[flexcoders] problem Super Tab Navigator

2007-09-05 Thread Tom Preet
Hi, In my App am i would like to use the SuperTab Navigator but when i use the flexlib:SuperTabNavigator am not getting thatone. can i have to import any jars for that. can tell me how to achieve this. Thanks, Tomt.

Re: [flexcoders] getChildren() ... what's in it?

2007-09-05 Thread Sherif Abdou
getChildren().toString(); - Original Message From: nasawebguy [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, September 4, 2007 10:11:30 PM Subject: [flexcoders] getChildren() ... what's in it? I'm trying to save the Panel children of a

[flexcoders] ResourceBundle - Problem with ActionScript code

2007-09-05 Thread mayurrami
Hi everybody... I am having few problems for ResourceBundle. The code is as below /* code in Flex 3 (Moxie - Beta) */ -- mxml code : RB_3.mxml -- ?xml version=1.0 encoding=utf-8? mx:Application

RE: [flexcoders] Re: Flex Builder 3 Profiler

2007-09-05 Thread Mark Ingram
Yes, I've got the correct player version (verified via adobe about webpage) - I got it from the Flex Builder 3 install. I've ran the profiling application too and even tried running the swf via local file system instead of http and nothing seems to work. Mark _ From:

[flexcoders] RangeError: Error #2006 on Canvas when adding child Image

2007-09-05 Thread Todd
Hello All, I have a canvas that I call .addChild on to add an Image component. Sometimes it works just fine, sometimes it throws this error. I've searched the web and read about calling removeChild before calling addChild on a DisplayContainer. But this doesn't seem to be my problem. I

[flexcoders] Embed image break View State

2007-09-05 Thread Guillaume Malartre
Hi! I've got a weird issue with embed image. I'm currently learning how to handle state view. Here's what I don't understand : mx:State name=Basic mx:AddChild position=lastChild mx:HBox id=hbox0/ /mx:AddChild /mx:State mx:State

[flexcoders] Moderator

2007-09-05 Thread Paul Tunnicliffe {mdm}
Hi, Does anyone know who the moderator of this group is? Thanks all! Paul T

Re: [flexcoders] Combobox selectable text

2007-09-05 Thread Giles Roadnight
Ok, many thanks for the reply. On 9/4/07, Alex Harui [EMAIL PROTECTED] wrote: There's a bug when you change the .enabled property that selectable gets set. Fixed in Moxie. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Giles

Re: [flexcoders] Moderator

2007-09-05 Thread Paul Andrews
From the yahoo group page: [EMAIL PROTECTED] should get to the right person. Paul - Original Message - From: Paul Tunnicliffe {mdm} To: flexcoders@yahoogroups.com Sent: Wednesday, September 05, 2007 2:28 PM Subject: [flexcoders] Moderator Hi, Does anyone know

[flexcoders] newbie

2007-09-05 Thread g07m5064
I am adapting flexstore such that the products are displayed in a grid. Essentially the user clicks on either a price slider or checkboxes. The click event calls a dispatchFilter function. This function creates an instance of a class called FilterEvents..the FilterEvents triggers the filtering via

[flexcoders] Recovering from videodisplay errors?

2007-09-05 Thread Arpit Mathur
We have an online video player application that uses the VideoDisplay component and plays a series of videos one after another. The videos could be coming from diverse rtmp or progressive download servers. Every once in a while the VideoDisplay goes into a disconnected state or a ConnectionError

[flexcoders] new moxie beta version

2007-09-05 Thread arieljake
Is there a new moxie sdk that we can work with?

[flexcoders] Bubbling custom events

2007-09-05 Thread donvoltz
Hello everyone, I think the following question is an easy one, however, I can not seem to find an answer in the documents. Calling a standard event such as the following var myEventObj:Event = new CustomEventEvent( myCustomEvent ); Will not bubble unless I set the bubble property to true like

Re: [flexcoders] Getting two tooltips on same label ?

2007-09-05 Thread Arpit Mathur
Set your horizontalList's toolTip property to null (or , I forget which). Then the only tips that should be seen will be the ones you explicitly create. Also if you are using an itemRenderer, set its toolTip property to null as well. On 9/2/07, Alex Harui [EMAIL PROTECTED] wrote: Hard to say

Re: [flexcoders] Bubbling custom events

2007-09-05 Thread Scott - FastLane
Don - In the constructor for your custom event you can set the bubbles param when you call super as in the following example. import flash.events.Event; import mx.controls.CheckBox; public class CheckBoxListEvent extends Event { public var data:Object; public var

Re: [flexcoders] Embed image break View State

2007-09-05 Thread Guillaume Malartre
Ok some precision to the bug... It seems that if I embeded my Icon into an external class like Assets it broke... (Example: [Embed(source=../../images/ParagrapheMathematique.swf, symbol=mover)] public static const ICONE_MOVER:Class; ) But inside the same mxml it doesn't. (Example:

[flexcoders] filereference complete event

2007-09-05 Thread arieljake
does anyone know why the complete event for the file reference upload function is not a result event that contains the http response from the server?

[flexcoders] Tree collapses when dataProvider for tree changes

2007-09-05 Thread Baljeet singh
can anybody help out?? I have created a tree using XMLListCollection as dataProvider.On click of selected node,dataProvider changes and tree collapse. I want tree to remain expanded showing previously selected node. I am using expandItem() method for tree to expand tree but it's not helping

Re: [flexcoders] Accessing an Alert (or popup window) programmatically

2007-09-05 Thread Tom Chiverton
On Wednesday 05 Sep 2007, [EMAIL PROTECTED] wrote: Anyone know how to click a button in an Alert or a window being managed by the PopupManager? You need to keep track of the reference PopUpManager returns to you when creating the pop up. You can then pass that to PopUpManager.removePopUp().

[flexcoders] Re: Bubbling custom events

2007-09-05 Thread donvoltz
Thanks Scott Don

[flexcoders] how can i read an excel file from my local system?

2007-09-05 Thread arpan srivastava
Hi All, how can i read an excel file from my local system in my flex application. I have all the data in an excel file which i need to read and draw graphs? I have used HTTPService to read text files, but this doesn't work with excel files? Thanks arpan

[flexcoders] Re: RangeError: Error #2006 on Canvas when adding child Image

2007-09-05 Thread Todd
I have some cleaner error messages. The error in the previous message occurred the first time. Each time I try to addChild, I get the following, simpler error. This is how I know it's happening when I call addChild -- this time it actually traces up the stack to my code. Is there some way I

Re: [flexcoders] new moxie beta version

2007-09-05 Thread Jeffry Houser
It depends on your frame of reference for new. You can download the latest public beta from labs.adobe.com. Last time I looked it was Beta 1. It is believed that Beta 2 will be made available at Max. arieljake wrote: Is there a new moxie sdk that we can work with? -- Jeffry

Re: [flexcoders] Variable instances behavior in Actionscript

2007-09-05 Thread Jeremy French
Another good way to think of it is that a reference to an object is actually an integer that holds the object's address in memory. You'll see this in the debugger as @3342fe334, etc. So when you copy 'a' into 'b' a la 'b=a;', you're making a copy of the address - not the object. So when you

Re: [flexcoders] newbie

2007-09-05 Thread Tom Chiverton
On Wednesday 05 Sep 2007, [EMAIL PROTECTED] wrote: I am sorry no code is included. I really didn't know which part to include. Be specific, and try one part at a time. What have your tried ? Why didn't it work ? -- Tom Chiverton Helping to widespreadedly accelerate eigth-generation

RE: [flexcoders] Tree collapses when dataProvider for tree changes

2007-09-05 Thread Alex Harui
Why does the DP change? That will invalidate the set of open nodes so the tree will draw collapsed. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Baljeet singh Sent: Wednesday, September 05, 2007 7:48 AM To: flexcoders@yahoogroups.com

[flexcoders] Trigger DataTips - Event Injection?

2007-09-05 Thread Abyss Knight
I'm working on a charting project, and we're rendering some extra objects in the chart to represent different data in the actual series using the DataDrawingCanvas. Basically, what I'd like to do is on mouseover of one of those custom components, trigger a specific data point's toolTip. What I've

RE: [flexcoders] Re: RangeError: Error #2006 on Canvas when adding child Image

2007-09-05 Thread Alex Harui
are you re-parenting images? or some other unusual thing? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Todd Sent: Wednesday, September 05, 2007 7:59 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: RangeError: Error #2006 on

[flexcoders] Getting ColdFusion 7 or 8 to work on Vista?

2007-09-05 Thread Mike Anderson
Hello All, I was wondering if there is any magic, getting ColdFusion 7 or 8 to install correctly on Windows Vista. I am running the 64-bit version, but I don't know if that would affect things or not. The application itself installs just fine, but whenever I try to run the WebServer Connector

RE: [flexcoders] new moxie beta version

2007-09-05 Thread Joan Lafferty
You can also get the latest nightly build on labs.adobe.com. The latest SDK available is from Sept. 5 (build 181493) http://labs.adobe.com/technologies/flex/sdk/flex3sdk.html From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeffry

RE: [flexcoders] Chart itemRenderers - how to get origional data values?

2007-09-05 Thread Ely Greenfield
_chartItem.item[BarSeries(_chartItem.element).xField]; (chartItem.item is the original record out of the dataProvider. BarSeries(_chartItem.element).xField is the field you told the series to use as its x value). Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Module Error after loading module 2nd time

2007-09-05 Thread boy_trike
My main app, just loads 1 of 4 modules. There is a combo box with a list of the modules. If I re-load the current module then run a function that dispatches an event I get: TypeError: Error #1007: Instantiation attempted on a non-constructor. at

RE: [flexcoders] ResourceBundle - Problem with ActionScript code

2007-09-05 Thread Brian Holmes
reference the resource bundle by key instead of the getString() such as rb.content[txName]; you can read more here: http://livedocs.adobe.com/labs/flex/3/html/wwhelp/wwhimpl/common/html/ww help.htm?context=LiveDocs_Book_Partsfile=l10n_033_1.html Hope that helps,

[flexcoders] Re: RangeError: Error #2006 on Canvas when adding child Image

2007-09-05 Thread Todd
There's no reparenting going on. I have a global image that is the child of the canvas. When I click that image on the canvas, I call create a NEW image, and then call canvas.addChild(). Definitely no re-parenting going on. It seems if I wait a bit, and then click, it won't throw the error

RE: [flexcoders] extracting xml from httpservice via delegate

2007-09-05 Thread Tracy Spratt
Is your result handler getting called? If so, then the result data is available using event.result; //don't use lastResult Exactly how you handle the data depends on what the server returns and what you resultFormat is. You should be setting it to e4x Tracy

RE: [flexcoders] how can i read an excel file from my local system?

2007-09-05 Thread Tracy Spratt
Excel's native format is not readable by flex. Save the Excel workbook as XML and then you could load it using HTTPService. Normally you cannot access anything on the local client. Since you say you have used HTTPService to do this, I will assume you are using one of the workarounds.

RE: [flexcoders] filereference complete event

2007-09-05 Thread Tracy Spratt
I do not know why, but I can confirm that it does not contain any result data. This is regretful, since it made me add another server call to get some data after an upload. I looked over all of the events and it seems that none of them contain any result data. Perhaps we should log an

[flexcoders] Re: new moxie beta version

2007-09-05 Thread arieljake
Great! What about nightly builds of Flex Builder? any chance of that? --- In flexcoders@yahoogroups.com, arieljake [EMAIL PROTECTED] wrote: Is there a new moxie sdk that we can work with?

RE: [flexcoders] XML Data From WebService to Custom Value Object Class?

2007-09-05 Thread Tracy Spratt
If you set resultFormat=object (the default) Flex will convert the xml into a nested object structure. This is kind of a black box process and you will have to take what it gives as-is. XML = Object conversion has actually been discussed quite a bit here. Search the archives. Tracy

RE: [flexcoders] Re: Error #1014: Class flash.filesystem::FileStream could not be found.

2007-09-05 Thread Tracy Spratt
No. An AIR app must run in the AIR runtime player. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jp andino Sent: Tuesday, September 04, 2007 6:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Error #1014: Class

[flexcoders] Re: filereference complete event

2007-09-05 Thread ben.clinkinbeard
It actually does. This was quietly added at some point, maybe Hotfix 1? http://livedocs.adobe.com/flex/201/langref/flash/net/FileReference.html#event:uploadCompleteData HTH, Ben --- In flexcoders@yahoogroups.com, arieljake [EMAIL PROTECTED] wrote: does anyone know why the complete event for

[flexcoders] OT: Contract hiring for experienced Flex developers

2007-09-05 Thread MCNattyP
I need an experienced Flex developer (or two) available for full or part-time work starting soon, for about three months. Hourly pay doe. Work from your location. Backend is all in ColdFusion. All the screens are mocked-up in MXML, we just need them to start talking to the gateways and add

RE: [flexcoders] Re: filereference complete event

2007-09-05 Thread Tracy Spratt
Ah, Excellent! Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Wednesday, September 05, 2007 1:22 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: filereference complete event It actually

Re: [flexcoders] new moxie beta version

2007-09-05 Thread Jeffry Houser
I am apparently very out of it. ;) I didn't know there were public nightly builds. Thanks for the clarification. Joan Lafferty wrote: You can also get the latest “nightly” build on labs.adobe.com. The latest SDK available is from Sept. 5 (build 181493)

RE: [flexcoders] ResourceBundle - Problem with ActionScript code

2007-09-05 Thread Gordon Smith
No. In Flex 3, all resources should be accessed via the ResourceManager, not through vars of type ResourceBundle. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Holmes Sent: Wednesday, September 05, 2007 9:57 AM To:

[flexcoders] tile component width problems

2007-09-05 Thread Mark
mx:Tile direction=horizontal borderStyle=none width=100% horizontalGap=5 verticalGap=5 paddingTop=5 height=100% mx:Repeater id=rDO dataProvider={myACDO} mx:CheckBox id=repDO label={rDO.currentItem} selected=true enabled=false/ /mx:Repeater /mx:Tile The Tile component determins the width

[flexcoders] Re: Call function from itemrenderer?

2007-09-05 Thread big_mad_kev
I've currently go this issue too, but I have the following: mx:DataGridColumn width=75 headerText=Header itemRenderer=itemRenderers.columnRenderer/ And thus have a folder called itemRenderers with a MXML Component columnRenderer. From this component how do a call a function in the main part

RE: [flexcoders] ResourceBundle - Problem with ActionScript code

2007-09-05 Thread Brian Holmes
Gordon, Is that the recommendation? I'm dynamically creating and loading resource bundles and have been pulling the values of the content without problem. I am storing the bundles in the Resource Manager however, but is there something I should beware of? brian..

Re: [flexcoders] Getting ColdFusion 7 or 8 to work on Vista?

2007-09-05 Thread Jeremy French
http://www.communitymx.com/content/article.cfm?cid=224AA This was the first entry on a google search for coldfusion vista As far as I know, CF8 installs just fine. I installed 7.02 on 64-bit Vista using the instructions above. It's a bit of a pain, but it works. On 9/5/07, Mike Anderson

[flexcoders] Class (not instance of) implements Interface

2007-09-05 Thread ninobronzed
Is there a way to check if a Class implements an Interface? Not an instance of a class, but if com.something.MyClass implements com.something.IMyInterface.

Re: [flexcoders] newbie

2007-09-05 Thread Mathe Maema
I have two pages. The first is the main. In the main I load my xml data as follows using Httpservice. I pass this data to the second page as follows: SearchView id=searchView label=Search accommodations={accoms} / // accommodations has been declared publicly in SearchView.mxml and accoms

[flexcoders] Re: TextInput control and long text

2007-09-05 Thread Michael Ritchie
Alex, That does work, my trouble was that I was overwriting the protected function onFocusOut to do other actions. I tried to set this.horizontalScrollPosition = 0 within the onFocusOut function, but it still would not fire from AS. I ended up having to rewrite the custom component to allow

RE: [flexcoders] ResourceBundle - Problem with ActionScript code

2007-09-05 Thread Gordon Smith
Yes, that's the recommendation. Methods like getString() on ResourceBundle are now deprecated (and will be removed in a future release), but a compiler bug is currently preventing you from getting the deprecation warnings. - Gordon From:

RE: [flexcoders] Class (not instance of) implements Interface

2007-09-05 Thread Gordon Smith
The simplest way is to create an instance and use the 'is' operator: The alternative is to use describeType(MyClass) and use E4X to look through the implements tags, but this is almost certainly more expensive. And I can't remember whether describeType() gives you the inherited interfaces or

RE: [flexcoders] newbie

2007-09-05 Thread Tracy Spratt
Ok, that is reasonable, what does not work? Does your handler get called? Does it contain the reference you need? How are you updating the dataProvider? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mathe Maema Sent:

RE: [flexcoders] tile component width problems

2007-09-05 Thread Tracy Spratt
Someone has done a component like this. Try google. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Sent: Wednesday, September 05, 2007 1:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] tile component width

[flexcoders] Grabbing ID from one datagrid to populate a second.

2007-09-05 Thread its_llpj
Newbie question, but how do I get the id from the current element in a datagrid and then pass the ID via mx:HTTPService to populate a second datagrid? Thanks!

[flexcoders] Re: TextInput control and long text

2007-09-05 Thread Michael Ritchie
I got the horizontalScrollPosition to work from the protected function onFocusOut of my custom component (extending TextInput). I placed a callLater function inside the onFocusOut function to set the position, this seems to work fine for setting it from AS. -Michael --- In

RE: [flexcoders] newbie

2007-09-05 Thread Gordon Smith
If you're writing an app with multiple components, you need a clear understanding of how each component will reference the others. For example, if you write Application SearchView id=searchView/ ... /Application then in the Application script you can refer to searchView

RE: [flexcoders] Grabbing ID from one datagrid to populate a second.

2007-09-05 Thread Brian Holmes
look into the data grid selected item property. You should be able to reference the currently seleted row and depending how you have your data reference the ID something like myDataGrid.selectedItem.ID or myDataGrid.selectedItem[ID] brian..

[flexcoders] Can anyone recommend a funnel chart for Flex?

2007-09-05 Thread Rachel Maxim
Hello I am in need of a Funnel Chart compatible with Flex 2. The ones available from FusionGadgets (http://www.fusioncharts.com/gadgets/Gallery.asp) would be perfect, but they are built with AS2 and the company doesn't plan to upgrade them until late next year. Has anyone found or built a

RE: [flexcoders] tile component width problems

2007-09-05 Thread Tracy Spratt
Or maybe the FlowBox component: http://code.google.com/p/flexlib/wiki/ComponentList Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Wednesday, September 05, 2007 3:44 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Drag and Drop Problem

2007-09-05 Thread Sean Riggle
I am running into problems using drag and drop in Flex. I have a data grid and a list; I want to implement drag and drop between the two. Here is the catch: The list and the grid have different data providers that are of different types. This causes the list not to accept dragged items from

Re: [flexcoders] Can anyone recommend a funnel chart for Flex?

2007-09-05 Thread Derrick Anderson
i have not found one for AS3, but i think you 'can' still use the as2 swf if you setup a local connection to it. i just did a very similar thing for the yahoo maps API, here is a link describing how to do it- should give u an idea of how to do this with fusioncharts.

Re: [flexcoders] how can i read an excel file from my local system?

2007-09-05 Thread Beverly Guillermo
I recall that it can be done using the bytearray but I am not sure if that code was made public. On Sep 5, 2007, at 1:14 PM, Tracy Spratt [EMAIL PROTECTED] wrote: Excel’s native format is not readable by flex. Save the Excel workb ook as XML and then you could load it using

RE: [flexcoders] Re: Grabbing ID from one datagrid to populate a second.

2007-09-05 Thread Brian Holmes
yep, you're on the right track. don't populate the second grid directly. populate an array collection or xml list collection object and bind the data provider of the grid to your variable. set an on result method on your httpRequest call and when it comes back you can populate your

Re: [flexcoders] NEW FLEX WEBSITE: ManureMail.com

2007-09-05 Thread Brendan Meutzner
Curious why you chose Flex for this site...? Brendan On 9/4/07, grimmwerks [EMAIL PROTECTED] wrote: Think it looks great - but I'm curious how you put the link buttons right in the middle of the text -- is that built up or some secret htmlText trick? On Sep 4, 2007, at 5:12 PM, Randy

[flexcoders] Can't select next datagrid item following one that is removed.

2007-09-05 Thread mossdude
With a datagrid containing a list of items, I do: users_dg.dataProvider.removeItemAt ( 1 ); users_dg.selectedIndex = 0; trace(datagrid selected index = + users_dg.selectedIndex); users_dg.selectedIndex = 1; trace(datagrid selected index = + users_dg.selectedIndex); The

RE: [flexcoders] Can't select next datagrid item following one that is removed.

2007-09-05 Thread Tracy Spratt
You probably need to use callLater() after updating the dataProvider to give the control a change to render before you attempt to interact with any visual characteristics of the control, like setting selectedIndex. Tracy From: flexcoders@yahoogroups.com

RE: [flexcoders] Can't select next datagrid item following one that is removed.

2007-09-05 Thread Brian Holmes
have you tried just incrementing the selectedIndex? dg.selectedIndex = dg.selectedIndex + 1; brian. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mossdude Sent: Wednesday, September 05, 2007 3:31 PM To:

RE: [flexcoders] newbie

2007-09-05 Thread Mathe Maema
Main Application Script //sending data methods using httpservice to say var accommodations /Script SearchView id=search lodgings={accommodations}/ /Application SearchView HBox Script [Bindable] public var lodgings:ArrayCollections; /Script filterComp id=compfil/ displayGrid id=dg

[flexcoders] Invite from Ryan Miller ([EMAIL PROTECTED])

2007-09-05 Thread Ryan Miller
RyanMiller ([EMAIL PROTECTED]) has invited you as a friend on Quechup... ...the social networking platform sweeping the globe Go to: http://quechup.com/join.php/aT0wMDAwMDAwMDA5NDM5OTAyJmM9OTg2ODE%3D to accept Ryan's invite You can use Quechup to meet new people, catch up with old

RE: [flexcoders] newbie

2007-09-05 Thread Tracy Spratt
Does your handler get called? Does it contain the reference you need? How are you applying the filter? Are you calling refresh()? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mathe Maema Sent: Wednesday, September 05, 2007

[flexcoders] creating messaging service destinations at run-time

2007-09-05 Thread jfujita1
Hi, I'm wondering if there is a way for the message broker to create a destination if one does not currently exist. Right now I'm using bootstrapping to query a Database and instantiate all of the messaging service destinations upon server startup. If I need to push a message to a destination

[flexcoders] Flex Freelancer Needed

2007-09-05 Thread patelsundeep
Anybody interested in a freelance project. Email me at patelsundeepatyahoodotcom

Re: [flexcoders] how can i read an excel file from my local system?

2007-09-05 Thread Dave
Have you ever read excel via an ODBC service? arpan srivastava [EMAIL PROTECTED] wrote: Hi All, how can i read an excel file from my local system in my flex application. I have all the data in an excel file which i need to read and draw graphs? I have used HTTPService to read

[flexcoders] Disable scrolling via mouse wheel

2007-09-05 Thread Jayson
Here's my situation. I have a TextArea that is filled with text(more text than can be displayed). I have the scroll bars removed so that you can not scroll with them, but you can still scroll with the mouse wheel. How can I disable this? I've tried a number of things but nothing seems to be

[flexcoders] Re: NEW FLEX WEBSITE: ManureMail.com

2007-09-05 Thread Jayson
I have a question.. I see that you have digg and reddit and all those, do you have a method for handling url requests? How does the site your sending it to (digg for example) know which page it is being sent? or are you just sending manuremail.com? I really like the end results of flex, it

[flexcoders] please help itemrenderer accessing

2007-09-05 Thread asdrt234234
Hi everyone, // *newbie alert* I have a tilelist control in my main.mxml that has an itemrenderer called thumbnail. within thumbnail.mxml there is a image control. what I want to do is from actionscript in main.mxml is resize(using a slider) the image in the itemrenderer from main.mxml. if

[flexcoders] Re: Scrollbar Skins

2007-09-05 Thread gary_mangum
I fixed this by adding transparent space at the end of my track image. :-) --- In flexcoders@yahoogroups.com, gary_mangum [EMAIL PROTECTED] wrote: I have skinned a scrollbar and it looks pretty good, but it is not perfect yet. My up and down arrows have transparent corners. For some reason

RE: [flexcoders] Disable scrolling via mouse wheel

2007-09-05 Thread Alex Harui
I would capture MOUSE_WHEEL and call stopImmediatePropagation. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jayson Sent: Wednesday, September 05, 2007 2:37 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Disable scrolling via

Re: [flexcoders] creating messaging service destinations at run-time

2007-09-05 Thread João Fernandes
you can eventually make an RPC call which will check if that destination exists and if not, create it for you and after getting the result from the rpc, you are ready to start pushing messages through that destination. I don't know if you can listen to those errors because I use CF as back-end

RE: [flexcoders] newbie

2007-09-05 Thread Mathe Maema
This is the function I thought of introducing. I didn't introduce it because I couldn't really work out how it would be called if I wanted data to be updated automatically i.e. without a button click or something like that. [Bindable] private var selectedAccoms:ArrayCollection; public

  1   2   >