Re: [flexcoders] Recommendation: Presenting Video on the web

2008-12-19 Thread Jamie S
The question suggests a bit of misunderstanding of the platforms. Flash and Flex are two different platforms for arriving at the same result, a swf that runs in the Flash VM. And either is capable of achieving that result. That said. When it comes to video, the component libraries provided in

[flexcoders] Re: Runaway series effect on line chart

2008-12-19 Thread benjidudu
Yes, I encountered this. It was with BarSet and stacked series, like in this example: mx:series mx:BarSet type=clustered mx:BarSeries xField=revenue displayName=Revenue/ mx:BarSet type=stacked mx:BarSeries

[flexcoders] Re: An other custom event

2008-12-19 Thread lorenzo.boaro
Thanks all for the support..you are very patient!!! is it correct that i create a custom object and dut put it in my array like previous one? the array is passed to a datagrid and the set the dataprovider properties. i use this shortcut because i didn'find the manner to create a personal data

RE: [flexcoders] Spell checker.

2008-12-19 Thread Kenneth Sutherland
That's the point of a SWC, its meant to be closed. You'd need to contact the person that created it a see if they'd be willing to open it up, but I doubt it (unless you pay them). If they didn't mind having it being opened up then they wouldn't have made it into a SWC, or they'd have given the

Re: [flexcoders] Recommendation: Presenting Video on the web

2008-12-19 Thread Simon Bailey
Further more, if you didn't use the standard playback components i.e. just created the video Object (Video) and embedded in a Sprite using your own NetConnection and NetStream routine the differences would be minimal (due to both simply using ActionScript). From what I can recall there

[flexcoders] Re: How can i make possible to keep user back in the same TAB..

2008-12-19 Thread Tim Hoff
Nevermind, I see what you're talking about. Aaron's, link or the link lower in the page for the TabNavigator, sounds like it will work for you. -TH p.s. good stuff Aaron --- In flexcoders@yahoogroups.com, Tim Hoff timh...@... wrote: Honestly, now I'm a little confused. The example below

[flexcoders] Dragging a datagrid cell only?

2008-12-19 Thread Barrau Antoine
Hello, we are currently facing a technical problem and i'm wondering if any of you have already tried to do this. This is a simple thing in fact : Can you drag, on a datagrid, the content of a cell to another cell? If so, i would appreciate any example of code. Thanks a lot Antoine

Re: [flexcoders] Re: How can i make possible to keep user back in the same TAB..

2008-12-19 Thread koti reddy
Tab means it is not Tab in Key board...I am talking about Tabbing in a screen..I need to save if any unsaved data is left before moving to other tab in a screenIn the save process if he gets any error message or Alert i should allow him to move to next tab.

[flexcoders] few compc questions

2008-12-19 Thread aaron smith
-Does anyone know what the -include-resource-bundles switch does with compc? -Why does compc expose all of the metadata switches and compiler switches when most don't apply? -Is there a way to create a new swc, and include classes from other swcs in the new one? Thanks

[flexcoders] Image loader flicking help

2008-12-19 Thread Rick Denney
Hi, I am new to the world of Flex 3/AS3. What I am doing is streaming jpeg images though an image loader and mx:Image. These images are coming from a camera so as it streams it looks like a video. The problem I am having is that when the cursor moves over the image it flickers. I assume

[flexcoders] Re: why the air app can not see the nativeMenu

2008-12-19 Thread valdhor
Are you using Windows? --- In flexcoders@yahoogroups.com, markflex2007 markflex2...@... wrote: Hi, I did this,but why I can not see the menu.Thanks for your help. mx:WindowedApplication xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=init() mx:Script

[flexcoders] Re: why NativeApplication.supportsMenu always false?

2008-12-19 Thread valdhor
Is it because you are using Windows? From the documentation: menu property Application menus are supported when NativeApplication.nativeApplication.supportsMenu is true. Not all operating systems support application menus. For example, application menus are supported on Mac OS X, but not on

Re: [flexcoders] Tree and array data

2008-12-19 Thread Dan Vega
I don't think its just icon though is it? It needs to be a branch with an arrow next to it so that you can click on it to expand the folder. Thank You Dan Vega danv...@gmail.com http://www.danvega.org On Thu, Dec 18, 2008 at 2:43 PM, Fotis Chatzinikos fotis.chatzini...@gmail.com wrote: use

Re: [flexcoders] Tree and array data

2008-12-19 Thread Fotis Chatzinikos
Then, you could possibly add a fake object inside that node's children with a label loading, so the framework will know that this node contains something and automatically show arrow and folder. On click, call the rpc service to load the new data and on reply replace the loading node with the real

[flexcoders] Varying width columns in columnchart

2008-12-19 Thread app.developer
How may one go about creating columns of varying width in a columnchart?

[flexcoders] Re: Tree and array data

2008-12-19 Thread Cato Paus
bind the isBranch = {yourobject.haschilderen} or create your own TreeDataDescriptor by implemnting the ITreeDataDescriptor interface --- In flexcoders@yahoogroups.com, Dan Vega danv...@... wrote: I don't think its just icon though is it? It needs to be a branch with an arrow next to it

[flexcoders] fullscreen mode in AIR

2008-12-19 Thread Robin Burrer
Hi all, I working on an air app with a fixed size if 1024*768. The minimum system requirements for the app include a screen resolution of at least 1024*768 pixels. The problem that a resolution of 1024*768 is actually not big enough because of the system task bars. stage.displayState =

RE: [flexcoders] Rich text editor customization

2008-12-19 Thread Joel Carras
Hi Mayank, D is correct. The RTE extends Panel and is written in MXML. Look at src\mx\controls\RichTextEditor.mxml in the SDK. You could put the TextArea control inside of RichTextEditor.mxml in a Canvas. Then after line 312 of RichTextEditor.mxml (in the commitProperties). You could parse

Re: [flexcoders] Re: Tree and array data

2008-12-19 Thread ivo
The Tree has styling for disclosure icons folder icons. If you want additional or different visual controls you will most likely need to extend the TreeItemRenderer class and set it in the tree's itemrenderer property. You can override the createChildren() function to add any visual controls

[flexcoders] radio button is chosen when passing it through httpsservice

2008-12-19 Thread Jason B
I was wondering if theres a way to pass which radio button is chosen when passing it through httpsservice, currently i have to specify an ID for each button then pass that but I'd like to handle one parameter being passed. mx:HTTPService mx:request xmlns=

Re: [flexcoders] radio button is chosen when passing it through httpsservice

2008-12-19 Thread Maciek Sakrejda
http://livedocs.adobe.com/flex/3/langref/mx/controls/RadioButtonGroup.html#selectedValue -Original Message- From: Jason B nos...@advancedonsite.com Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] radio button is chosen when passing it through

[flexcoders] Re: radio button is chosen when passing it through httpsservice

2008-12-19 Thread Jason B
I tried selected Value but it passes null --- In flexcoders@yahoogroups.com, Maciek Sakrejda msakre...@... wrote: http://livedocs.adobe.com/flex/3/langref/mx/controls/RadioButtonGroup.html#selectedValue -Original Message- From: Jason B nos...@... Reply-To:

[flexcoders] Flex 4

2008-12-19 Thread jwc_wensan
Can someone share what the expected or projected release date of Flex 4 will be? Thanks, Jack

[flexcoders] Re: radio button is chosen when passing it through httpsservice

2008-12-19 Thread Jason B
nevermind looks like it was caching my old verison :( its working now

Re: [flexcoders] Re: radio button is chosen when passing it through httpsservice

2008-12-19 Thread Maciek Sakrejda
As the docs state, selectedValue gives you the value of the value property on the selected radiobutton. You either need to add a value attribute to your buttons in mxml, or just use RadioButtonGroup.selection.label (or whatever you want to pass along). RadioButtonGroup.selection gives you a

[flexcoders] How to combine various FLV files into one using Flex?

2008-12-19 Thread gilbert_mizrahi
I would like to combine FLV files using Flex 3 (to be deployed as an AIR app.) I now it is possible because there are projects like RichFLV (http://www.richapps.de/?p=168) that do that and more. Benjamin from RicFLV told me that I needed to use the ByteArray class and implement the specs of the

Re: [flexcoders] Re: Runaway series effect on line chart

2008-12-19 Thread Richard Rodseth
Thanks for the confirmation. Disappointing. On Fri, Dec 19, 2008 at 12:26 AM, benjidudu benjamin.du...@janusmediasoft.com wrote: Yes, I encountered this. It was with BarSet and stacked series, like in this example: mx:series mx:BarSet type=clustered mx:BarSeries xField=revenue

Re: [flexcoders] Flex 4

2008-12-19 Thread Matt Chotin
Late 2009 On 12/19/08 9:14 AM, jwc_wensan jwcaldw...@zingit.com wrote: Can someone share what the expected or projected release date of Flex 4 will be? Thanks, Jack

[flexcoders] TileList itemRenderer help

2008-12-19 Thread lelander
Hello! I build a custom itemRenderer in actionscript for a TileList, that displays an image and positions it on the bottom of the tile. I want to be able to programatically control the size of the tiles and create an effect when they are resized. What methods do I need to interact with in

[flexcoders] DataGrid - Properties as Lines and Items as Columns

2008-12-19 Thread Saulo Brust
Hey FlexCoders, How can I invert the behavior of DataGrid component, so that properties are lines and items are columns? Thanks a lot, Saulo

[flexcoders] OT? NEwbie question for AIR: javascript in HTMLLoader

2008-12-19 Thread gwangdesign
Hi, Excuse me in advance if there is a better place for this post. Couldn't find a group for AIR questions. So can you script for a window that is using HTML/HTMLLoader control that loads the HTML content? Like is there a way to detect mouse hover a hyperlink that's being rendered inside the

RE: [flexcoders] Flex 4

2008-12-19 Thread Jack @ Zingit
Matt: Thanks, Jack From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Matt Chotin Sent: Friday, December 19, 2008 12:13 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex 4 Late 2009 On 12/19/08 9:14 AM, jwc_wensan jwcaldw...@zingit.com

Re: [flexcoders] Re: An other custom event

2008-12-19 Thread Manish Jethani
On Fri, Dec 19, 2008 at 2:18 PM, lorenzo.boaro lore...@katamail.com wrote: is it correct that i create a custom object and dut put it in my array like previous one? I actually wrote a blog entry about this. http://manishjethani.com/guaranteeing-enumeration-order But I'm a bit lost now. It

Re: [flexcoders] DataGrid - Properties as Lines and Items as Columns

2008-12-19 Thread Manish Jethani
On Fri, Dec 19, 2008 at 10:15 PM, Saulo Brust sa...@brust.com.br wrote: How can I invert the behavior of DataGrid component, so that properties are lines and items are columns? You have data like this: Name, City, Zip Manish, Copenhagen, 129813 Tom, San Francisco, 89126 You want to make

[flexcoders] My frustrations with the Adobe Bug Report system

2008-12-19 Thread Pan Troglodytes
I've put off writing this for a while out of laziness. Going out of my way to report bugs is already sort of outside of the scope of what I should be working on, but I consider it very important for the quality of the product. And it helps that my bugs are typically answered and fixed. But

Re: [flexcoders] few compc questions

2008-12-19 Thread Manish Jethani
On Fri, Dec 19, 2008 at 3:36 PM, aaron smith beingthexemplaryli...@gmail.com wrote: -Does anyone know what the -include-resource-bundles switch does with compc? It includes the specified resource bundles and any dependencies. compc -output myResources_en_US.swc \ -include-resource-bundles

[flexcoders] Re: why the air app can not see the nativeMenu

2008-12-19 Thread sunild999999
I don't see a problem w/your example. Note that on Mac OS X the native menu is not attached to the application window, like it would be on a Windows application. HTH, Sunil

Re: [flexcoders] My frustrations with the Adobe Bug Report system

2008-12-19 Thread Matt Chotin
Hi Jason, Thanks for your feedback. We probably could see if we could invest some time in making sure there are some explanations for the fields. And I agree that the sorted order of lots of fields is a nightmare. What you are running into is the fact that we have a lot of internal

Re: [flexcoders] Re: Runaway series effect on line chart

2008-12-19 Thread Richard Rodseth
In the course of creating a test case, I found that I could create a three-series-two-axis line chart with working effects, except that the axis titles flicker constantly. Of course this makes the effect unusable, unless there is a workaround. I wrote up a bug here:

Re: [flexcoders] TileList itemRenderer help

2008-12-19 Thread Manish Jethani
On Fri, Dec 19, 2008 at 10:53 PM, lelander lelan...@mac.com wrote: I build a custom itemRenderer in actionscript for a TileList, that displays an image and positions it on the bottom of the tile. I want to be able to programatically control the size of the tiles and create an effect when

Re: [flexcoders] Image loader flicking help

2008-12-19 Thread Manish Jethani
On Fri, Dec 19, 2008 at 5:29 AM, Rick Denney rick...@cox.net wrote: I am new to the world of Flex 3/AS3. What I am doing is streaming jpeg images though an image loader and mx:Image. [snip] My question is: Is there a way to disable the mouse events when the cursor is moved over the

[flexcoders] How to make the TitleWindow resizeable by the user?

2008-12-19 Thread luvfotography
How can I make the TitleWindow resizeable by the user? i.e. let the user click-drag the corner to resize the window? is this easily possible? thanks,

Re: [flexcoders] Button with Icon and two labels one with Left align while Other with right Align

2008-12-19 Thread Manish Jethani
On Fri, Dec 19, 2008 at 5:36 PM, Ashish Verma verma.lu...@gmail.com wrote: I am creating a button in flex. which would have an icon and two labels. The First label will contain the command text while other could contain shortcut key. I want all the shortcut keys should be right aligned.it

Re: [flexcoders] How to make the TitleWindow resizeable by the user?

2008-12-19 Thread Manish Jethani
On Sat, Dec 20, 2008 at 12:58 AM, luvfotography ygro...@all-digital-links.com wrote: How can I make the TitleWindow resizeable by the user? i.e. let the user click-drag the corner to resize the window? This has probably been asked a million times.

[flexcoders] Sharing menu and status bar with modules

2008-12-19 Thread Jim Boone
Hi, Our app has grown to the point that we would like to use modules to streamline loading, development, etc. I have created an application shell that will load my modules as necessary. The shell contains a menu bar at the top and a status bar along the bottom. What I would like to do is allow

Re: [flexcoders] Re: Tree and array data

2008-12-19 Thread Dan Vega
I think I am finally getting some where. In case you don't know what I have been up to I will bring you up to speed. I am building a file explorer where the left side will only be directories. When you select a directory the contents (files) will show up in a datagrid on the right. I was having

Re: [flexcoders] My frustrations with the Adobe Bug Report system

2008-12-19 Thread Pan Troglodytes
Thanks, Matt. I always appreciate the official feedback on this unofficial mailing list. Hopefully you can find whoever is in charge of the build numbers on the Feature Details box, too. On Fri, Dec 19, 2008 at 1:11 PM, Matt Chotin mcho...@adobe.com wrote: Hi Jason, Thanks for your

Re: [flexcoders] My frustrations with the Adobe Bug Report system

2008-12-19 Thread Matt Chotin
Build numbers was a bug in FB for 3.0.1 and should be fixed in 3.0.2. On 12/19/08 12:39 PM, Pan Troglodytes chimpathe...@gmail.com wrote: Thanks, Matt. I always appreciate the official feedback on this unofficial mailing list. Hopefully you can find whoever is in charge of the build

[flexcoders] Trying to pass data in different module

2008-12-19 Thread anuj181
Hi I am trying to set the visibility of some components which are in different modules and my code is not working. There is login screen in which i have provided forgot password link and in which there are 3 components which are by default set invisible. Whenever user changes his password by

Re: [flexcoders] Re: Tree and array data

2008-12-19 Thread Dan Vega
nm..im a dummy! got it On Fri, Dec 19, 2008 at 3:06 PM, Dan Vega danv...@gmail.com wrote: I think I am finally getting some where. In case you don't know what I have been up to I will bring you up to speed. I am building a file explorer where the left side will only be directories. When you

[flexcoders] Adobe closed for the holidays

2008-12-19 Thread Matt Chotin
Hi all, Just a note to let you know that Adobe is shut down from 12/23 until Monday 1/5, though most of our team is also taking this coming Monday and Tuesday off. So donĀ¹t expect to hear a whole lot from us :-) A very happy holidays from all of us to you! We look forward to making beautiful

RE: [flexcoders] Re: SWF file format question - SymbolClass Tag

2008-12-19 Thread Gordon Smith
The AS3 classes are in the DoABC (or maybe a DoABC2?) tag. It seems unlikely that you could remove a class and still have the SWF work. If the class wasn't used by your application, the MXML compiler wouldn't have linked it in. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: SWF file format question - SymbolClass Tag

2008-12-19 Thread Gordon Smith
Also, I'm pretty sure that there is some compiler option you can use to prevent specific classes from getting linked in. That's a lot easier than trying to remove them after they've been linked in. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com

Re: [flexcoders] Adobe closed for the holidays

2008-12-19 Thread Nate Beck
... We look forward to making beautiful things together in 2009! Is Matt hitting on us? On Fri, Dec 19, 2008 at 3:55 PM, Matt Chotin mcho...@adobe.com wrote: Hi all, Just a note to let you know that Adobe is shut down from 12/23 until Monday 1/5, though most of our team is also taking

RE: [flexcoders] TileList itemRenderer help

2008-12-19 Thread Tracy Spratt
Look into (google) the FlowBox component. Tracy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Manish Jethani Sent: Friday, December 19, 2008 2:23 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] TileList

[flexcoders] Re: Help with Panel Container layout

2008-12-19 Thread brucewhealton
I think you might be right. But, it seems like there is a way to click on the handles and then set them to either anchor, unanchored or center. I don't see how to do that in design view. I searched through the properties and could not find this setting either. Bruce --- In

Re: [flexcoders] Re: Help with Panel Container layout

2008-12-19 Thread Paul Andrews
- Original Message - From: brucewhealton br...@futurewavedesigns.com To: flexcoders@yahoogroups.com Sent: Saturday, December 20, 2008 2:33 AM Subject: [flexcoders] Re: Help with Panel Container layout I think you might be right. But, it seems like there is a way to click on the

[flexcoders] Tree problems

2008-12-19 Thread Dan Vega
I am still having some tree / array issues that I am hoping to get some help on. My tree loads an array of data that looks like this. Items with a children array tell me that this folder should be a branch and it has children. When you click on the branch I want to go retrieve the list of

[flexcoders] Issue with ExternalInterface in FireFox (Error calling method on NPObject)

2008-12-19 Thread gireeshgiri
Hi I am trying to communicate with javascript and Flex, but its not working the way I want in FireFox. What I wanted is, Clicking on a javascript link I need to open a File Dialog box (new FileReference().browse()) from Flex. (I have a file upload program in flex, and the link will be

RE: [flexcoders] Re: SWF file format question - SymbolClass Tag

2008-12-19 Thread Alex Harui
There are three mxmlc options: -load-externs (removes all files listed from some other -link-report -compiler.external-library-path (remove all files from a SWC) -externs (removes a class) From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Gordon Smith Sent:

RE: [flexcoders] Tree problems

2008-12-19 Thread Alex Harui
Typically, this is done via a customized ITreeDataDescriptor. It should always return true for isBranch and hasChildren, and return an empty ArrayCollection for getChildren that you fill later with the actual children. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On

Re: [flexcoders] Tree problems

2008-12-19 Thread Dan Vega
If you read through the post I am actually passed that and now trying to figure out how to dynamically insert / remove nodes. Dan

RE: [flexcoders] Tree problems

2008-12-19 Thread Alex Harui
Sorry, it looked like you were working with the itemOpen event. I don't think folks are using that. I think most use the getChildren call to request the children, then when they arrive, they stuff the children into that same collection, probably using addItem. From:

Re: [flexcoders] Tree problems

2008-12-19 Thread Dan Vega
I am not sure what you mean by getChildren() though, when a branch is clicked this method is called. private function onItemOpen(event:TreeEvent):void { var path:String = event.item.path; FileManager.getDirectories(path); } The

Re: [flexcoders] Button with Icon and two labels one with Left align while Other with right Align

2008-12-19 Thread Ashish Verma
I tried the same. but how to fine tune all the methods like meaure, update list, label properties with this new textfield. and main problem is that the alignment is apply only for button not for textfield. please provide some work around. Best, Ashish On Sat, Dec 20, 2008 at 1:03 AM, Manish