Re: [flexcoders] Any other alternative to find the type of an object (object is oftype)

2008-09-24 Thread Ralf Bokelberg
I don't think this is possible, unless you put the class name in a string property of your object. If you want to use introspection (eg. is, instanceof, describeType), the class itself has to be available, otherwise there is nothing to introspect really. Cheers Ralf. On Wed, Sep 24, 2008 at

Re: [flexcoders] Any other alternative to find the type of an object (object is oftype)

2008-09-24 Thread Josh McDonald
getFullyQualifiedClassName(instance); -Josh On Wed, Sep 24, 2008 at 5:11 PM, Ralf Bokelberg [EMAIL PROTECTED]wrote: I don't think this is possible, unless you put the class name in a string property of your object. If you want to use introspection (eg. is, instanceof, describeType), the

Re: [flexcoders] Any other alternative to find the type of an object (object is oftype)

2008-09-24 Thread Ralf Bokelberg
Hi Josh Does it work without the class beeing linked to the project? Is it a compiler instruction? Cheers Ralf. On Wed, Sep 24, 2008 at 9:19 AM, Josh McDonald [EMAIL PROTECTED] wrote: getFullyQualifiedClassName(instance); -Josh On Wed, Sep 24, 2008 at 5:11 PM, Ralf Bokelberg [EMAIL

Re: [flexcoders] Any other alternative to find the type of an object (object is oftype)

2008-09-24 Thread Josh McDonald
You can't have an object of a type that's not part of the VM at runtime, but it doesn't include any classes into the swf of the class making that call. It returns a String, which you can then use with getDefinitionByName() without ever knowing (or referencing) the Class object. -Josh On Wed, Sep

[flexcoders] Re: Combobox does not hold selected item

2008-09-24 Thread bhaq1972
try var dg:DataGrid = DataGrid(listData.owner); data[colName] = selectedItem; IList(dg.dataProvider).setItemAt(data, dg.selectedIndex); --- In flexcoders@yahoogroups.com, markgoldin_2000 [EMAIL PROTECTED] wrote: Here is latest code. Still does not work: public function

Re: [flexcoders] Any other alternative to find the type of an object (object is oftype)

2008-09-24 Thread Ralf Bokelberg
Of cause. This makes perfect sense. We don't want to reference the class. Cheers Ralf. On Wed, Sep 24, 2008 at 10:25 AM, Josh McDonald [EMAIL PROTECTED] wrote: You can't have an object of a type that's not part of the VM at runtime, but it doesn't include any classes into the swf of the class

Re: [flexcoders] Re: Preventing cutpaste in Flex3 application

2008-09-24 Thread Tom Chiverton
On Monday 22 Sep 2008, Dmitri Girski wrote: Password email fields should be disabled from Copy-pasting just for the sake of minimising the number of support calls from users who forgot which particular email or password they copied pasted). Err, what ? I don't understand why users are more

Re: [flexcoders] Re: Cannot use keyboard to access FireFox 3.0.1 menubar

2008-09-24 Thread Tom Chiverton
On Monday 22 Sep 2008, itdanny2002 wrote: All ALT-?? key, such as ALT-F to access file menu bar, ALT-D ... Can you replicate this in a simple app you can show us the code for ? -- Tom Chiverton Helping to dramatically initiate vertical unique deliverables

Re: [flexcoders] Re: DateFormatter Bug?

2008-09-24 Thread Tom Chiverton
On Tuesday 23 Sep 2008, kramus0 wrote: Should I report this a bug? If you have a concise test case, yup. -- Tom Chiverton Helping to collaboratively customize metrics This email is sent for and on behalf of Halliwells LLP. Halliwells

Re: [flexcoders] Re: Getting multiple addedToStage events

2008-09-24 Thread Tom Chiverton
On Tuesday 23 Sep 2008, ozziegt wrote: I have been using creationComplete, but there is no way for me to remove the listeners when the object is removed from the stage, which leads to memory leaks. Does 'remove' not do that ? -- Tom Chiverton Helping to biannually compete 24/7 magnetic

RE: [flexcoders] Error #2060: Security sandbox violation: ExternalInterface caller

2008-09-24 Thread Gregor Kiddie
How are you starting the swf? From the file system (i.e. file :/) or from a web server (i.e. http://). ExternalInterface needs to be delivered into something like a browser. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton

Re: [flexcoders] Re: Getting multiple addedToStage events

2008-09-24 Thread Samuel Colak
All objects dispatch FlexEvent.Remove when they are removed from a container - this occurs on the stage and also in Container objects (since Container and Stage both exhibit the same behaviour). The FlexEvent.Remove is a way of trapping the message that an object is being removed by its

Re: [flexcoders] OT: FP Ubiquity Stats Lack Silverlight Comparison

2008-09-24 Thread Tom Chiverton
On Tuesday 23 Sep 2008, Merrill, Jason wrote: It would seem to me, with Silverlight having fairly low penetration stats I would imagine (even after the Olympics) that this would be a huge marketing plus for Adobe. Millward Brown, commissioned by Adobe, did the survey just this past June, it

[flexcoders] Refreshing a custom component just after sending datas.

2008-09-24 Thread quantum_ohm
Hello All, I have a TitleWindow component with the lightbox or Alert effect (background blurred) from which I insert some news, here is the code : / import model.NewsManager; import mx.managers.PopUpManager;

Re: [flexcoders] Refreshing a custom component just after sending datas.

2008-09-24 Thread jitendra jain
Add IResponder interface  Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message From: quantum_ohm [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, 24 September, 2008 4:31:16 PM Subject: [flexcoders] Refreshing a custom component just

[flexcoders] Re: Cannot use keyboard to access FireFox 3.0.1 menubar

2008-09-24 Thread itdanny2002
Very simple program, use a textinput box :- ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute width=100% mx:TextInput x=10 y=10/ /mx:Application Then, press ALF-F to access File menu of FireFox or press Ctrl-L or ALT-D to access Address

Re: [flexcoders] Re: Getting multiple addedToStage events

2008-09-24 Thread Michael Schmalle
Event.REMOVED Containers cannot use this since their child list is not updated. UIComponent listens to the Event.REMOVED and stops propagation of it so there is no way to listen for it. The component will then dispatch FlexEvent.REMOVE at the correct time after child lists are correctly

[flexcoders] Memory Leak.

2008-09-24 Thread ivhaggi
Is there any way to handle the next elements: -ARLabelData -ListCollectionViewCursor cause in the profiler view those elements, consume so many memory Thanks in advance

[flexcoders] ToolTip (with Icon/Image, with grid/datagrid etc..)

2008-09-24 Thread Manu Dhanda
Hii Can anyone give me some pointer for my requirement about custom tooltip that can hold an image/icon, datagrid/grid and components like tht. Any existing component or any guidelines/suggestion in that direction. Thanks, Manu. -- View this message in context:

[flexcoders] how to connect database from flex to mysql

2008-09-24 Thread naaga_maniccam
Could u please help me ,how to connect database from flex to mysql in this regard, expecting your reply yrs, naaga

Re: [flexcoders] Any other alternative to find the type of an object (object is oftype)

2008-09-24 Thread Naaga Maniccam
Hi Guys, sorry for interrupting u , i need help , how to connect flex to mysql, could u please help in this regard Cheers,, NAAGAMANICCAM.T - Original Message From: Ralf Bokelberg [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, 24 September, 2008 2:54:31 PM

RE: [flexcoders] OT: FP Ubiquity Stats Lack Silverlight Comparison

2008-09-24 Thread zoltan
Before the battle starts check out how to connect Silverlight to FMS or to a remoting gateway Silverlight and Flash/Flex RPC with the FluorineFx Silverlight library http://blog.fluorinefx.com/?p=17 Silverlight and Flash Media Server integration with the FluorineFx Silverlight library

[flexcoders] How to split Datagrid Column Dynamically at run time

2008-09-24 Thread Trilokchand R. Modi
I saw the aruhi blog for splitdatagridcoloumn. I am also trying to split columns into more than 2(left and right). But I was wondering how you would do it dynamically with a value determined by user or at run time? I am still very new to flex and any sort of coding example would be much

[flexcoders] How to capture fileds from XML file to combo box without DB

2008-09-24 Thread NATA RAJAN
sample XML file myxml.xml ?xml version=1.0? root   nodes data=US label=United States /   nodes data=IN label=INDIA/   nodes data=AE label=United Arab Emirates /   nodes data=AF label=Afghanistan /   nodes data=AG label=Antigua /   nodes data=AI label=Anguilla/   nodes data=AL

[flexcoders] Datagrid HTML Item Editor

2008-09-24 Thread unhitchedm
Hi, I'm going a little mental trying to figure this one out... (hope this display better when posted) mx:DataGrid id=editStockists width=100% height=100% editable=true dataProvider={model.hbStockistsAC} mx:columns mx:DataGridColumn dataField=StockistID

[flexcoders] Re: [Bindable] is not getting updated..

2008-09-24 Thread Amy
--- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: As long as ProgramModel.woCalSelectedDayData is bindable, the binding will work. But you're only going to be getting a pointer to the same object. Your local instance is the same instance as you would get with

[flexcoders] Detecting socket disconnects

2008-09-24 Thread pcameron41
I am trying to reliably detect socket disconnections in my Flex app. When the server (java) shuts down, my client raises a close event as it should and I can handle that, but the issue comes when the disconnect occurs as a result of a network issue. I can physically disconnect my network cable

RE: [flexcoders] OT: FP Ubiquity Stats Lack Silverlight Comparison

2008-09-24 Thread Battershall, Jeff
Why would you want to do that? Isn't it the classic marketing error to provide free airtime to the competition? In addition, if you start reporting such statistics you become responsible for their accuracy and that's not something that I think Adobe would be interested in, as least as regards a

[flexcoders] Automatically generating database applications

2008-09-24 Thread nash.e2008
I need a help on using Automatically generating database application. I am using MacOS10.5 MAMP Flex Builder 3 and trying to generate a PHP database application. When I create new project, I choose PHP then I dont know what is my WEB root and Root URL If anyone help me out. thank you

Re: [flexcoders] Any other alternative to find the type of an object (object is oftype)

2008-09-24 Thread Michael Schmalle
Naaga, Try posting a new thread (with new title), your answer will never get heard here other than adding a question that is irrelevant to this current thread. Mike On Wed, Sep 24, 2008 at 6:08 AM, Naaga Maniccam [EMAIL PROTECTED]wrote: Hi Guys, sorry for interrupting u , i need help ,

[flexcoders] New HTML Editor for Flex.

2008-09-24 Thread Luís Gustavo Sanabio
Hi, Look this great solution to HTML Editor in Flex. http://www.brazip.com.br/Edit/index.php Gustavo Sanábio

Re: [flexcoders] Re: [Bindable] is not getting updated..

2008-09-24 Thread Josh McDonald
Because if you have collection A, and components bind to it, all 3 components will see changes caused by the filter. But if you create a new ListCollectionView (we'll call it B) and point it to A, you can put filters on B without affecting A. -Josh On Wed, Sep 24, 2008 at 11:10 PM, Amy [EMAIL

Re: Re: [flexcoders] [Bindable] is not getting updated..

2008-09-24 Thread Manu Dhanda
But Josh, as I put in my previous posts, I used a local arraycollection(instead of ListCollectionView) pointing to Model, so that only my local will get changed when i 'll apply any filter to it. But, then, my local doesn't update with the changes in Model. This was my problem originally. My

[flexcoders] 2nd try...Turning off the auto sort of ADG groupings

2008-09-24 Thread Adrian Williams
All, I discovered a frustrating feature of the ADG when using groupings...the ADG automatically sorts the displayed data by the field you are grouping on. I really, really need the ability to disable this as I am incorporating a displayOrder option for my users to define what order

Re: Re: [flexcoders] [Bindable] is not getting updated..

2008-09-24 Thread Josh McDonald
I'll try and explain with pseudo code: //Creates an instance, and sets a to a reference to the new instance a = new FooMachine(); a.barProperty = 7; //Now b is a new *reference* to the same instance. Now we say a === b b = a; //outputs 7; trace(b.barProperty); a.barProperty = 9; //outputs 9;

[flexcoders] Re: Bad quality for JPEG encoded images ,,***(sample images INSIDE)***

2008-09-24 Thread semelak1
Where can I get it from ?? I thought it is not yet available !! My project is pending because of these low quality images... --- In flexcoders@yahoogroups.com, Gregor Kiddie [EMAIL PROTECTED] wrote: There is a compiler that can take C / C++ code and output Actionscript that you might want to

[flexcoders] Problem in second DataGrid

2008-09-24 Thread NATA RAJAN
?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Script     ![CDATA[         import mx.collections.ArrayCollection;         import mx.events.ListEvent;         import mx.controls.Alert;               public var n:String;   

[flexcoders] Problem in second DataGrid

2008-09-24 Thread NATA RAJAN
?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Script     ![CDATA[         import mx.collections.ArrayCollection;         import mx.events.ListEvent;         import mx.controls.Alert;               public var n:String;   

[flexcoders] Problem in second DataGrid

2008-09-24 Thread NATA RAJAN
?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Script     ![CDATA[         import mx.collections.ArrayCollection;         import mx.events.ListEvent;         import mx.controls.Alert;               public var n:String;   

[flexcoders] Application image compression

2008-09-24 Thread Sceneshift
Hi, I'm trying to shrink the size of my SWF. Flash has the JPEG quality slider in the publish screen and I was wondering if Flex has anything like this so I can crunch down the size of my PNGs? Thanks. -- View this message in context:

[flexcoders] Re: Refreshing a custom component just after sending datas.

2008-09-24 Thread quantum_ohm
Hi, thx, but I've never used this, and examples I found on IResponder are with Cairngorm... how do I use this IResponder ? --- In flexcoders@yahoogroups.com, jitendra jain [EMAIL PROTECTED] wrote: Add IResponder interface  Thanks, with Regards, Jitendra Jain Software Engineer

Re: [flexcoders] how to connect database from flex to mysql

2008-09-24 Thread Manu Dhanda
Try assql. Here is the link: http://code.google.com/p/assql Regards, Manu. naaga_maniccam wrote: Could u please help me ,how to connect database from flex to mysql in this regard, expecting your reply yrs, naaga -- View this message in context:

Re: [flexcoders] Re: Bad quality for JPEG encoded images ,,***(sample images INSIDE)***

2008-09-24 Thread Ralf Bokelberg
Actually i always found Flash/Flex to be rather good in converting images. What exactly is your workflow? Cheers Ralf. On Wed, Sep 24, 2008 at 4:46 PM, semelak1 [EMAIL PROTECTED] wrote: Where can I get it from ?? I thought it is not yet available !! My project is pending because of these low

Re: [flexcoders] Re: Bad quality for JPEG encoded images ,,***(sample images INSIDE)***

2008-09-24 Thread Tom Chiverton
On Tuesday 23 Sep 2008, Gregor Kiddie wrote: There is a compiler that can take C / C++ code and output Actionscript that you might want to take a look at. AFAIK there is no public compiler to do this, is there ? -- Tom Chiverton Helping to synergistically orchestrate viral bricks-and-clicks

[flexcoders] Listen itemClick on MenuBar

2008-09-24 Thread Andres Serral
Hello. The MenuBar control doesn't dispatch the itemClick event on items that has childrens. Anybody knows how can I capture the click event on any item (with childrens or not)? Thanks Andres

[flexcoders] Bad TextMetrics being returned on some machines

2008-09-24 Thread markdemich
I have an application that pieces together text. To do this, I need to get the textWidths of Flash TextField objects. I also use the getLineMetrics method as well. I have a particular scenario that's not working. This is happening on some Windows XP machines. It repeats in AIR as well as

[flexcoders] Re: Listen itemClick on MenuBar

2008-09-24 Thread Tim Hoff
Hi Andres, The MenuBar uses the click event for the top level. The children use itemClick. Usually, you have to listen for both. -TH --- In flexcoders@yahoogroups.com, Andres Serral [EMAIL PROTECTED] wrote: Hello. The MenuBar control doesn't dispatch the itemClick event on items that has

[flexcoders] Re: ToolTip (with Icon/Image, with grid/datagrid etc..)

2008-09-24 Thread Tim Hoff
Hi Manu, You can go with a third party control, use the popupManager to roll your own, or create a borderSkin for the toolTip. I've done the last one with success, but it wasn't easy. Here's a third party solution: http://www.afcomponents.com/components/tooltip_flex/

[flexcoders] Re: ToolTip (with Icon/Image, with grid/datagrid etc..)

2008-09-24 Thread nathanpdaniel
http://www.afcomponents.com/components/tooltip_flex/ --- In flexcoders@yahoogroups.com, Manu Dhanda [EMAIL PROTECTED] wrote: Hii Can anyone give me some pointer for my requirement about custom tooltip that can hold an image/icon, datagrid/grid and components like tht. Any existing

[flexcoders] Re: How to make only certain rows in an AdvancedDataGrid selectable?

2008-09-24 Thread tungchau81
Thanks, Amy. I tried setting mouseChildren to false for parent nodes and it worked, but I no longer was able to click on the default arrow icon to expand and collapse a node... I did not state my question clearly earlier. I still want users to be able to collapse and expand a node, but the

Re: [flexcoders] Speeding up draw time with nested VBoxes

2008-09-24 Thread Jason Reynolds
repetitive layout and child creation code from the main component controller. You can then at any time in the future optimize a renderer of any kind easily and efficiently. Mike __ Information from ESET NOD32 Antivirus, version of virus signature database 3468 (20080924

[flexcoders] Re: Retry: Question for Doug McCune on Drag-drop component?

2008-09-24 Thread gwangdesign
Hi Josh, I am curious of your experience when you messed with drag and drop. Have you ever thought about the DragManager in Flex? What would be the reason of not using it in the scenario of something like BumpTop (physics drag without drop target)? Thanks! --- In flexcoders@yahoogroups.com,

Re: [flexcoders] Speeding up draw time with nested VBoxes

2008-09-24 Thread Michael Schmalle
from ESET NOD32 Antivirus, version of virus signature database 3468 (20080924) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com -- Teoti Graphix, LLC http://www.teotigraphix.com Teoti Graphix Blog http://www.blog.teotigraphix.com You can find more

[flexcoders] Re: Refreshing a custom component just after sending datas.

2008-09-24 Thread quantum_ohm
AnyBody for IResponder use ? :-( --- In flexcoders@yahoogroups.com, quantum_ohm [EMAIL PROTECTED] wrote: Hi, thx, but I've never used this, and examples I found on IResponder are with Cairngorm... how do I use this IResponder ? --- In flexcoders@yahoogroups.com, jitendra jain

Re: [flexcoders] Re: Retry: Question for Doug McCune on Drag-drop component?

2008-09-24 Thread Michael Schmalle
Hi, The reason it simple, with 3 event handlers you can control everything about your custom dragging and/or dropping you need. The drag manager has flaws, trust me I made a docking component and almost ditched the manager but I had to use it since I didn't have the time to rewrite it. Think of

Re: [flexcoders] 2nd try...Turning off the auto sort of ADG groupings

2008-09-24 Thread Matt Chotin
You could override how the grouping class does the actual grouping. Maybe by overriding the refresh() method of GroupingCollection? It uses sorting for efficiency in putting things together. You could also write a custom compareFunction that knew everything would be titled Group XX and just

[flexcoders] Re: ToolTip (with Icon/Image, with grid/datagrid etc..)

2008-09-24 Thread Tracy Spratt
Google: Flex custom tooltip It looks like the first thousand or so hits are applicable. Tracy --- In flexcoders@yahoogroups.com, nathanpdaniel [EMAIL PROTECTED] wrote: http://www.afcomponents.com/components/tooltip_flex/ --- In flexcoders@yahoogroups.com, Manu Dhanda manuraj.dhanda@

[flexcoders] Pixelation of Base64 to JPG issue

2008-09-24 Thread flashalisious
I built a photo cropping applications. The user uploads there image. The image is loaded into an Image Component that is inside of a Canvas. The I use the canvas and a Cropping area if you will. I have an HSlider that allows you to scale the image. As it gets larger the Canvas masks the edges of

[flexcoders] Looking for Flex Contract work?

2008-09-24 Thread flashalisious
I am a Flex developer for Remarkable Wit in Nashville, TN We have about 80 hours of work we would like to get a contractor to do. Please contact me if you are interested [EMAIL PROTECTED] thanks, Matthew

[flexcoders] flex showing always the same SWF

2008-09-24 Thread BENABDALLAH Abdelaziz
eash time I hit run in flex builder, I get an old version of my project, nothing seems to work except renaming the project, I reinstalled flex builder and it worked fine, but recently the same problem came again. what is the deal with it and how can I fix this problem ? thanks

Re: [flexcoders] flex showing always the same SWF

2008-09-24 Thread Ryan Gravener
When that happens to me, I either have some compile errors, or its cached in the browser. So I delete cache and clean the project. On Wed, Sep 24, 2008 at 12:33 PM, BENABDALLAH Abdelaziz [EMAIL PROTECTED] wrote: eash time I hit run in flex builder, I get an old version of my project,

Re: [flexcoders] flex showing always the same SWF

2008-09-24 Thread Sherif Abdou
GO To Project--Build Automatically. That should be checked. -- Sherif Abdou http://VadexFX.com http://Sherifabdou.com - Original Message - From: BENABDALLAH Abdelaziz To: flexcoders@yahoogroups.com Sent: Wednesday, September 24, 2008 11:33 AM Subject: [flexcoders] flex

Re: [flexcoders] flex showing always the same SWF

2008-09-24 Thread Mike Chabot
Disabling the browser cache would be a good first step. You can do this directly in the browser or by using cache-prevention code in your project. Good luck, Mike Chabot On Wed, Sep 24, 2008 at 1:09 PM, Sherif Abdou [EMAIL PROTECTED] wrote: GO To Project--Build Automatically. That should be

Re: [flexcoders] 2nd try...Turning off the auto sort of ADG groupings

2008-09-24 Thread Adrian Williams
I think the override may be the only solution...a compare function in this case wouldn't work because the names of the groups can be literally anything, I only used Group 1, etc for illustration purposes. Any ideas on where in the groupingCollection class the reordering is happening? Adrian

Re: [flexcoders] 2nd try...Turning off the auto sort of ADG groupings

2008-09-24 Thread Matt Chotin
I don't have the source in front of me. Start in GroupingCollection.refresh and work from there. On 9/24/08 11:08 AM, Adrian Williams [EMAIL PROTECTED] wrote: I think the override may be the only solution...a compare function in this case wouldn't work because the names of the groups can

[flexcoders] Data Binding to BitmapData

2008-09-24 Thread kyleashipley
In my application, I have a custom ItemRenderer that contains an mx:Image bound to a BitmapData source. The data gets initialized properly, but if I scroll the list so that the image goes out of view, the BitmapData ends up set to null. I'm not firing an event, I don't have two-way data binding

Re: [flexcoders] Re: How to make only certain rows in an AdvancedDataGrid selectable?

2008-09-24 Thread Marcelo Savioli
You may override drawHighlightIndicator, drawCaretIndicator and drawSelectionIndicator. There you can use the itemRenderer istance to check if the highlighting for that item is applicable or not. On Wed, Sep 24, 2008 at 12:40 PM, tungchau81 [EMAIL PROTECTED] wrote: Thanks, Amy. I tried

[flexcoders] horizontal axis chart label size when chart has minimal height

2008-09-24 Thread Maciek Sakrejda
When I resize a chart (e.g., Column), below a certain size (seems to be ~100-200 pixels), the labels on the horizontal axis shrink into illegibility. Is there a way to prevent the labels from shrinking? For an example of what I'm talking about, go to

Re: [flexcoders] LocalConnection

2008-09-24 Thread Brandon Krakowsky
I ended up getting this to work. Initially, I was waiting for the onLoadComplete event before trying to interact with a loaded movie via a moviecliploader in the Flash 8 proxy file. I changed it so that it waits for the onLoadInit event, which was happening after the onLoadComplete event,

[flexcoders] Open Flux

2008-09-24 Thread djhatrick
Anybody have any difficulty using Open Flux, I compile projects and nothing works, ie mouse clicks etc. Is there a specific compilier i need to use to make em work. Thanks, Patrick

[flexcoders] Issues with Full-Screen Video

2008-09-24 Thread Brandon Krakowsky
I've got a Video object inside of a custom VideoDisplay component inside of a larger UI with other components. The Video object, once resized, ends up being 250 by 180. My full-screen toggle button gets the dimensions and location of the Video object, in relation to the parentApplication. I

[flexcoders] Flex and FMS Screen session recordign ?

2008-09-24 Thread Sajid Hussain
Dudes , I want to record  my confrence applications videos and all event , exactly like camtesia screen recordign , what are posblities to record my application as flv when its runing to clients browsers  ? sajdi

[flexcoders] Re: [Bindable] is not getting updated..

2008-09-24 Thread Amy
--- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: Because if you have collection A, and components bind to it, all 3 components will see changes caused by the filter. But if you create a new ListCollectionView (we'll call it B) and point it to A, you can put filters

[flexcoders] Re: Retry: Question for Doug McCune on Drag-drop component?

2008-09-24 Thread gwangdesign
Mike, Thanks a lot for the lead. I guess I would rather trust you than myself;) --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, The reason it simple, with 3 event handlers you can control everything about your custom dragging and/or dropping you need. The

[flexcoders] Resolved: Open Flux

2008-09-24 Thread djhatrick
There's a long list of compiler arguments that i was missing --- In flexcoders@yahoogroups.com, djhatrick [EMAIL PROTECTED] wrote: Anybody have any difficulty using Open Flux, I compile projects and nothing works, ie mouse clicks etc. Is there a specific compilier i need to use to make

[flexcoders] Re: 2nd try...Turning off the auto sort of ADG groupings

2008-09-24 Thread Amy
--- In flexcoders@yahoogroups.com, Adrian Williams [EMAIL PROTECTED] wrote: All, I discovered a frustrating feature of the ADG when using groupings...the ADG automatically sorts the displayed data by the field you are grouping on. I really, really need the ability to disable

[flexcoders] Problem setting initial value(s) using programmatic track skin with HSlider

2008-09-24 Thread jaywood58
This post began as a plea for help, but in the course of writing it I landed on a solution I can live with. I am posting it anyway, on the chance that it might help someone else, or in case somebody has a better idea. The problem came up when I was trying to create a custom HSlider using a

[flexcoders] resizable textArea

2008-09-24 Thread tchredeemed
just wondering if anyone has done this, or if there is any documentation anywhere for it. I can catch the enter keydown, and increase height, but the delete doesn't work exactly the same. only if they are deleting a line should the box get smaller, any ideas?

[flexcoders] DataGrid with styleFunction example posted

2008-09-24 Thread Amy
I've just uploaded a new example to my site, which is an extended DataGrid with a styleFunction added similar to the one that AdvancedDataGrid has. This also includes a StyleableRenderer class, which is a simple itemRenderer that extends UIComponent. I know that the biggest hurdle I had when

[flexcoders] Re: How to make only certain rows in an AdvancedDataGrid selectable?

2008-09-24 Thread Amy
--- In flexcoders@yahoogroups.com, tungchau81 [EMAIL PROTECTED] wrote: Thanks, Amy. I tried setting mouseChildren to false for parent nodes and it worked, but I no longer was able to click on the default arrow icon to expand and collapse a node... I did not state my question clearly

[flexcoders] Programming 101: event target

2008-09-24 Thread gwangdesign
Hi, I am just wondering why, in ActionScript, the subject of an event is called a target? Is it kind of counter intuitive? In Java, it is called source, which sounds much more understandable to me. Thanks.

[flexcoders] Convert from MXML to AS

2008-09-24 Thread Eduardo Souza
Hello Everyone, I'm needing to convert some of my MXMLs files to ActionScript (a webService dataProvider and a dataService) to use on all of my classes. What I need to do to convert from MXMLs to ActionScript? Thanks!

[flexcoders] Re: horizontal axis chart label size when chart has minimal height

2008-09-24 Thread Tim Hoff
Hey Maciek, Setting an explicit gutter value fixed a similar problem that had once with the labels on a chart. If I remember correctly, the label's font will become illegible when the labelSizeLimt is met, or the label dimensions force the font to be below the fontSize; because the label's

[flexcoders] dynamic variable reference getting error 1084

2008-09-24 Thread Jason B
var tmp:String = tabnav1; [tmp].selectedIndex = 0; Im trying to use a string to reference an item but the compiler wont allow the brackets, i remember Tracy telling me to reference a dynamic variable use brackets? my compiler says error 1084: Syntax error: expecting identifier before dot.

[flexcoders] Re: Pixelation of Base64 to JPG issue

2008-09-24 Thread Amy
--- In flexcoders@yahoogroups.com, flashalisious [EMAIL PROTECTED] wrote: I built a photo cropping applications. The user uploads there image. The image is loaded into an Image Component that is inside of a Canvas. The I use the canvas and a Cropping area if you will. I have an HSlider

[flexcoders] Re: flex showing always the same SWF

2008-09-24 Thread Jason B
Also I've seen this and found that i had to delete the project NOT THE CONTENTS just the project in eclipse and re-add it, I've found several blogs on the internet pertaining to this too, although it doesnt happen often it can happen. if browser cache clear and rebuilding project doesnt work that

RE: [flexcoders] Programming 101: event target

2008-09-24 Thread Tracy Spratt
Yeah, this bothered me to start with too. I have gotten over it. They are just words, after all. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gwangdesign Sent: Wednesday, September 24, 2008 4:08 PM To:

RE: [flexcoders] Convert from MXML to AS

2008-09-24 Thread Tracy Spratt
Code? Seriously, what are you asking? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Eduardo Souza Sent: Wednesday, September 24, 2008 4:08 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Convert from MXML to AS

RE: [flexcoders] Convert from MXML to AS

2008-09-24 Thread Eric Fickes
Turn on the keep generated AS flag in FlexBuilder. The next time you build your flex project, you'll have the AS source in a folder named -generated. EF From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Wednesday,

RE: [flexcoders] dynamic variable reference getting error 1084

2008-09-24 Thread Tracy Spratt
Close, you just need to specify the parent. Assuming tmp is declared in instance scope: this[tmp].selectedIndex = 0; if the compiler complains that selectedIndes is not a property of , do: TabNavigator(this[tmp]).selectedIndex = 0; Tracy From:

Re: [flexcoders] Programming 101: event target

2008-09-24 Thread Troy Gilbert
I am just wondering why, in ActionScript, the subject of an event is called a target? Is it kind of counter intuitive? In Java, it is called source, which sounds much more understandable to me. Best I can figure is it came from some events like mouse clicks which are targets, but that's

Re: [flexcoders] Re: horizontal axis chart label size when chart has minimal height

2008-09-24 Thread Maciek Sakrejda
Tim, Do you know when you set the gutter? The gutter set is throwing a null reference error for me. The docs say it should be set by the chart, so I suppose that's partially why, but I hope I can work around that... -Maciek -Original Message- From: Tim Hoff [EMAIL PROTECTED] Reply-To:

[flexcoders] Loading vector graphics into flex

2008-09-24 Thread Kyle
I'm working on an app that will need to dynamically load large amounts of vector graphics. These graphics will be created by various artists and uploaded to a backend service where they will be stored, then later loaded for use in the application. My initial thought is to simply use swf files for

Re: [flexcoders] Convert from MXML to AS

2008-09-24 Thread Paul Andrews
- Original Message - From: Eduardo Souza To: flexcoders@yahoogroups.com Sent: Wednesday, September 24, 2008 9:08 PM Subject: [flexcoders] Convert from MXML to AS Hello Everyone, I'm needing to convert some of my MXMLs files to ActionScript (a webService dataProvider and

[flexcoders] Re: Data Binding to BitmapData

2008-09-24 Thread Amy
--- In flexcoders@yahoogroups.com, kyleashipley [EMAIL PROTECTED] wrote: In my application, I have a custom ItemRenderer that contains an mx:Image bound to a BitmapData source. The data gets initialized properly, but if I scroll the list so that the image goes out of view, the BitmapData

[flexcoders] Re: Convert from MXML to AS

2008-09-24 Thread Kyle
Here's a blog post explaining how to accomplish this: http://weblog.mrinalwadhwa.com/2007/07/09/flex-tip-of-the-day-keep-generated-actionscript/ -Kyle

[flexcoders] Re: Programming 101: event target

2008-09-24 Thread Chuck Preston Jr.
For the same reason tree structures are upside down, with their roots at the top. ActionScript is from the Bizzaro world. --- In flexcoders@yahoogroups.com, gwangdesign [EMAIL PROTECTED] wrote: Hi, I am just wondering why, in ActionScript, the subject of an event is called a target? Is it

Re: [flexcoders] Re: Convert from MXML to AS

2008-09-24 Thread Eduardo Souza
Thank you all. Kyle, it just worked perfectly. Eduardo Souza 2008/9/24 Kyle [EMAIL PROTECTED] Here's a blog post explaining how to accomplish this: http://weblog.mrinalwadhwa.com/2007/07/09/flex-tip-of-the-day-keep-generated-actionscript/ -Kyle

[flexcoders] How do I determine the host where I am at?

2008-09-24 Thread luvfotography
How do I find the host url where I'm ('myflexapp.swf') is loaded at? I tried BrowswerManager, but url, and base are null? Is there another way, or better way. ex: private var bm:IBrowserManager; bm = BrowserManager.getInstance(); trace(bm.base); // output: null trace(bm.url); // output:

Re: [flexcoders] Re: Programming 101: event target

2008-09-24 Thread Samuel Colak
Umm You have currentTarget and target - most of the time, these return very different values depending on what happened ... On Sep 24, 2008, at 11:14 PM, Chuck Preston Jr. wrote: For the same reason tree structures are upside down, with their roots at the top. ActionScript is from

  1   2   >