RE: [flexcoders] Re: Error: Error #1023: Stack overflow occurred.

2009-02-25 Thread Gregor Kiddie
Is it the HierarchicalCollectionView that the problem lies? If so it might be related to this bug https://bugs.adobe.com/jira/browse/FLEXDMV-1755 A fix is coming, thankfully. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a

[flexcoders] Re: Error: Error #1023: Stack overflow occurred.

2009-02-25 Thread florian.salihovic
Nope, it's the ListCollectionView's length property. --- In flexcoders@yahoogroups.com, Gregor Kiddie gkid...@... wrote: Is it the HierarchicalCollectionView that the problem lies? If so it might be related to this bug https://bugs.adobe.com/jira/browse/FLEXDMV-1755 A fix is

[flexcoders] Flashing new row in a datagrid

2009-02-25 Thread faserone
I would like to highlight the new rows added to a datagrid when the dataprovider change. Any hint? Thanks.

[flexcoders] http service and data service questions

2009-02-25 Thread Tom Preet
Hi All, can anyone share the Information regarding the questions 1. Is it possible to make httpService Requests synchronous? 2. I need to load an image from flickr into my application. Do I need a crossdomain.xml file on flickr? 3. What is the difference between httpService and Data

[flexcoders] How to configure the debugger

2009-02-25 Thread christophe_jacquelin
Hello, I want to debug my Flex application, but the debugger is not running ? How to make the debugger running ? Thank you, Christophe,

Re: [flexcoders] Re: Error: Error #1023: Stack overflow occurred.

2009-02-25 Thread Tom Chiverton
On Wednesday 25 Feb 2009, florian.salihovic wrote: Actually this is the first time i get confronted with this problem. Is there any way to determine how big the plattforms stack size is? Maybe you could explain in a bit more detail what you want find out about your data, and how that data is

Re: [flexcoders] Re: MaskedTextInput

2009-02-25 Thread Tom Chiverton
On Tuesday 24 Feb 2009, stldvd wrote: Last I heard you cannot set the focus to a textfield from outside the application. Once the user has clicked on the Flex/Flash app in the browser, setfocus will work. But not before. You can do it in IE, but not FireFox. -- Tom Chiverton Helping to

Re: [flexcoders] How to configure the debugger

2009-02-25 Thread Tom Chiverton
On Wednesday 25 Feb 2009, christophe_jacquelin wrote: I want to debug my Flex application, but the debugger is not running ? How to make the debugger running ? Are you using Flex Builder, and do you have the debug player installed ? -- Tom Chiverton Helping to greatly incentivize products

Re: [flexcoders] Re: Graph suggestion wanted

2009-02-25 Thread Janis Radins
Just make graph value span smaller. Like if all values vary in range from 1200 - 1600 make 1150 to be starting value and 1650 as top value. That should zoom graph bends nicely. Havent done anything with flex charting but I assume that would be only logical to expect this kind of functionality in

[flexcoders] Re: MaskedTextInput

2009-02-25 Thread markgoldin_2000
Likely we are using IE. --- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote: On Tuesday 24 Feb 2009, stldvd wrote: Last I heard you cannot set the focus to a textfield from outside the application. Once the user has clicked on the Flex/Flash app in the browser,

[flexcoders] where to set actionScriptProperties file for mxmlc and compc

2009-02-25 Thread kuntamayu
Hi Folks, I am compiling my flex project on server ( Tomcat 6.0.18 ) through Java. My application gets compiled also. But I want to set certain specific properties for compilation ( e.g. FlashPlayer version 10.0.0 etc. ) And I also want to compile some modules too through same way with

[flexcoders] Mirror on an image

2009-02-25 Thread christophe_jacquelin
Hello, I want to make a vertical mirror on an image mx:image id=displayImage / by modifiyng the pixels one by one, but the code is not working. Could you send me what is wrong: Thank you, Christophe, The code - var data2:BitmapData

[flexcoders] Practical information required

2009-02-25 Thread secrit.service
Hello folks, As beginning flexcoder, I still have to find a way how to structure my code. I thought I found a descent solution, but a collegue of mine has his doubts. Therefore I would like to doublecheck if my solution is done or not done. 1) For example I had the intention to always put my

RE: [flexcoders] where to set actionScriptProperties file for mxmlc and compc

2009-02-25 Thread Gregor Kiddie
Take a look at flex-config.xml in the sdk you are using to compile the swfs. That should cover what you need. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in

[flexcoders] TitleWindow and CloseButton

2009-02-25 Thread Cato Paus
Wath I want help with is: are there a another way to do this, private function thisCreationComplete(event:FlexEvent):void {trace('OverWriteWarning::thisCreationComplete'); for(var i:int = 0; titleBar.numChildren i; i++){ if(titleBar.getChildAt(i) is Button) { var butt:Button =

[flexcoders] Send an object via an ItemRenderer in a DataGrid

2009-02-25 Thread yossi.baram
Hi helper, In my columns I call my ItemRenderer cellValueRenderer rendererProvider = new AdvancedDataGridRendererProvider(); rendererProvider.columnIndex=2; rendererProvider.renderer= new ClassFactory(cellValueRenderer); rendererProvider.dataField='col1';

[flexcoders] Problems casting objects

2009-02-25 Thread Carl Friedemann Enderlein
Hi, in my application I have a problem casting value-objects from weborb into flex. I use the NET Edition of Weborb, Version 3.6 My flex application always throws an error when I load a specific value object into flex. When I parse the result, I do the following in Flex: var vo:fileVO = value

[flexcoders] Detecting whether source of image exists or not

2009-02-25 Thread neetujos
Hi all, I am having a page where i can upload multiple images.Immediately after uploading there is a provision for editing the properties of the uploaded image.In the edit page i am showing a thumbnail of the uploaded image.When i move to the edit page sometimes the thumbnail will be in the

[flexcoders] re-initialize component in viewstack

2009-02-25 Thread _estatica_
Is it possible to call a method (say init(void)) within UI component that is within viewstack every time it becomes visible in viewstack. I want to clear fields of a form every time form gets selected. Form is staged withing viewstack. Cheers!

[flexcoders] Re: MaskedTextInput

2009-02-25 Thread huu...@ymail.com
Not true. The solution I outlined above definitely works in Firefox (I'm using it now) and I'm fairly certain it works in IE. --- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote: On Tuesday 24 Feb 2009, stldvd wrote: Last I heard you cannot set the focus to a textfield

RE: [flexcoders] TitleWindow and CloseButton

2009-02-25 Thread Yves Riel
The button of a title window is located in the Panel component. You can directly access it thought the mx_internal::closeButton http://geo.yahoo.com/serv?s=97359714/grpId=12286167/grpspId=1705007207/ msgId=137608/stime=1235567809/nc1=4507179/nc2=3848640/nc3=4836036 variable. Just make sure to

Re: [flexcoders] Re: MaskedTextInput

2009-02-25 Thread Tom Chiverton
On Wednesday 25 Feb 2009, huu...@ymail.com wrote: Not true. The solution I outlined above definitely works in Firefox (I'm using it now) and I'm fairly certain it works in IE. http://www.actionscript.org/forums/archive/index.php3/t-120307.html (etc) still seems confused on the matter... --

Re: [flexcoders] Send an object via an ItemRenderer in a DataGrid

2009-02-25 Thread Johannes Nel
instead of passing a class factory to the render pass an instance of ifactory, passing the needed variables to the constructer of your custom factory. then in newInstance of your ifactory set the needed variables on that new instance. remember that your renderers will get reused, so newInstance

[flexcoders] Header Renderer

2009-02-25 Thread markgoldin_2000
I am specifying a heder renderer in the following way: mx:DataGridColumn dataField=endtime width=70 sortable=false mx:headerRenderer mx:Component

[flexcoders] Re: Header Renderer

2009-02-25 Thread markgoldin_2000
In my code id tag is a wrong entry. --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2...@... wrote: I am specifying a heder renderer in the following way: mx:DataGridColumn dataField=endtime width=70 sortable=false

[flexcoders] Re: Does anyone know how to get an accordion to occupy a specified relative height (

2009-02-25 Thread Keith Hughitt
--- In flexcoders@yahoogroups.com, Tim Hoff timh...@... wrote: Unless you specify the height of the accordion, it will grow; based on the size of the first child. mx:Panel width=100% height=25% mx:Accordion id=optionsAccordion width=100% height=100% vso:Form label=Accordion

[flexcoders] Re: Header Renderer

2009-02-25 Thread bhaq1972
You have to embed a mx:Script tag inside the Component tag i.e mx:Component mx:Label ... mx:Script etc /mx:Component --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2...@... wrote: I am specifying a heder renderer in the following way: mx:DataGridColumn dataField=endtime

[flexcoders] Re: Does anyone know how to get an accordion to occupy a specified relative height (

2009-02-25 Thread Keith Hughitt
In case anyone else runs into the same problem, here is how you can setup the event handler to respond to application resizes: mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; width=100% height=100% resize=onResize(); ... private function onResize():void { optionsAccordion.height =

Re: [flexcoders] Header Renderer

2009-02-25 Thread Fotis Chatzinikos
Where is signout defined? Did you try click={parentDocument.signOut()} PS: I do not use inline component renderes but if i remember correctly from other posts in the forum , you can use parentDocument On Wed, Feb 25, 2009 at 4:03 PM, markgoldin_2000 markgoldin_2...@yahoo.comwrote: I am

[flexcoders] Re: Header Renderer

2009-02-25 Thread markgoldin_2000
Should it be like this: mx:headerRenderer mx:Component mx:Label text=End Time/ mx:Script /mx:Script /mx:Component

[flexcoders] pair

2009-02-25 Thread smitade
Is pair (http://pair.collab.eu/) dead? Pair is an Actionscript3 implementation of the Python standard library. It's been a while since the site was updated. Any alternatives out there?

[flexcoders] Re: Flashing new row in a datagrid

2009-02-25 Thread jer_ela
If the new rows have a timestamp of when they were added, you can use the AdvancedDataGrid styleFunction to change the style of a cell based on that timestamp. Both AdvancedDataGrid and AdvancedDataGridColumn have the property. Here is a style function I used that made the text bright red for

[flexcoders] Re: Working with images of varying proportions

2009-02-25 Thread byte.sensei
OK, this works great when I run the application locally, but when I upload to the server and run it from there the images aren't being resized (no error message - nothing happens). I tracked the problem down to: var img_width:int = img.content.loaderInfo.width; var img_height:int =

[flexcoders] Re: MaskedTextInput

2009-02-25 Thread huu...@ymail.com
I've confirmed that this works in Internet Explorer (7.0) as well. As for the comments on ActionScripts.org, send them the link to my post. It's fairly straightforward, IMO. --- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote: On Wednesday 25 Feb 2009, huu...@... wrote:

[flexcoders] Re: Header Renderer

2009-02-25 Thread bhaq1972
Yes (shown below). But I actually prefer the other Fotis' suggestionbut you will have to ensure signOut() is defined in the parentDocument. mx:headerRenderer mx:Component mx:Label text=End Time click=signOut()/ mx:Script public function signOut():void {

[flexcoders] Re: PopUp jumping around.

2009-02-25 Thread flexaustin
Finally found the bug. If you are using the Adobe FIG Callout component watchout for the updateDisplay list method implementation. They are telling the Callout on update x=startX and y=startY instead of x=x and y=y or just comment it out like I did and on update don't reposition it, leave x,y

[flexcoders] Re: Mirror on an image

2009-02-25 Thread gilbert_mizrahi
You can use the Matrix to get a mirror image like: _bmpd = new BitmapData(768, 576, false); displayImage.source = new Bitmap(_bmpd); _bmpd.draw(displayImage, new Matrix(-1, 0, 0, 1, _bmpd.width, 0)); --- In flexcoders@yahoogroups.com, christophe_jacquelin christophe_jacque...@... wrote:

[flexcoders] Constraining a resizable application to the initial aspect ratio

2009-02-25 Thread Tom Chiverton
Has anyone ever tried to lock a resizable AIR/standalone Flash application to the same aspect ratio as the user resizes it ? It looks like the only way to do it is to re-implement all the mouse up/down logic myself, rather than listening for RESIZING and adjusting the size in that ? -- Tom

[flexcoders] Date conversion

2009-02-25 Thread markgoldin_2000
What is the easiest way to convert date to this: mm/dd/ hh:mm:ss? completeDateDate = new Date().toLocaleDateString() + + new Date ().toLocaleTimeString(); It gives me correct time part but not date. Thanks

RE: [flexcoders] Date conversion

2009-02-25 Thread Gregor Kiddie
Look at the DateFormatter Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in the UK Visit our Internet Web site at www.inps.co.uk blocked::http://www.inps.co.uk/

[flexcoders] Hint text input?

2009-02-25 Thread Osman Ullah
Does anyone know if there is a freely available input component which offers hint text? By hint text, I mean some text that shows up in the input field only when it is empty and not in focus. I'm sure someone has done this but I must not be using the proper terminology because I can't find

[flexcoders] Re: Flash player 10 ? - can I not call flash player 10 classes if user still on V9?

2009-02-25 Thread valdhor
You can detect the player version with flash.system.Capabilities.version. See http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/system/Capabilities.html --- In flexcoders@yahoogroups.com, luvfotography ygro...@... wrote: Hi, I want to use the PerspectiveProject class, which is

[flexcoders] Building a collection in Java to be set in a DataGrid using blazeds

2009-02-25 Thread yossi.baram
Hi, I am playing around with remoteObject and displaying string by remote using java class. I need to create a DataGrid and the provider I need to set from my Java class, that means an Array of some sort, using resultHandler(evt:ResultEvent) i think, Can you help me here? Thanks a lot

[flexcoders] Re: re-initialize component in viewstack

2009-02-25 Thread jim.abbott45
Try hooking the Show event of your UI component and add your 'init()' code to your new event handler (for the Show event). --- In flexcoders@yahoogroups.com, _estatica_ ibo...@... wrote: Is it possible to call a method (say init(void)) within UI component that is within viewstack every time it

[flexcoders] Using windows authentication in LocalTrusted sandbox

2009-02-25 Thread Flap Flap
Hi all, Here is my problem: I've a SWF file embeded in an application that will run it in the local trusted sandbox. I've a .NET webservice that run into IIS and use Windows Authentication as security model. His there any way that my SWF file can reach my webservice using the setCredentials

RE: [flexcoders] Hint text input?

2009-02-25 Thread Keith Reinfeld
Try searching on 'Input Prompt' Regards, -Keith http://keithreinfeld.home.comcast.net http://keithreinfeld.home.comcast.net/ _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Osman Ullah Sent: Wednesday, February 25, 2009 9:57 AM To:

RE: [flexcoders] Re: Error: Error #1023: Stack overflow occurred.

2009-02-25 Thread Alex Harui
I don't think there's a way to find out stack size and it can probably change from version to version. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

RE: [flexcoders] Flashing new row in a datagrid

2009-02-25 Thread Alex Harui
There's a blink item renderer example on my blog in the item renderer article Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of faserone Sent: Wednesday,

[flexcoders] Re: Send an object via an ItemRenderer in a DataGrid

2009-02-25 Thread yossi.baram
--- In flexcoders@yahoogroups.com, Johannes Nel johannes@... wrote: Thanks man, Where do i place my variable exactly? I created the instance: var renderer:IFactory= new ClassFactory(cellValueRenderer); my cellValueRenderer contains in its constructor a string let say, how d I set it in my

[flexcoders] Re: Hint text input?

2009-02-25 Thread Osman Ullah
Yeah, that didn't help either. I ended up building it myself. Wasn't as hard as I thought it would be. --- In flexcoders@yahoogroups.com, Keith Reinfeld keithreinf...@... wrote: Try searching on 'Input Prompt' Regards, -Keith http://keithreinfeld.home.comcast.net

[flexcoders] Re: Send an object via an ItemRenderer in a DataGrid

2009-02-25 Thread yossi.baram
Ok I got it, just using the properties function, Thanks man --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: --- In flexcoders@yahoogroups.com, Johannes Nel johannes.nel@ wrote: Thanks man, Where do i place my variable exactly? I created the instance: var

[flexcoders] Re: Hint text input?

2009-02-25 Thread valdhor
FlexLib (http://code.google.com/p/flexlib/) has a PromptingTextInput. --- In flexcoders@yahoogroups.com, Osman Ullah osman.ul...@... wrote: Does anyone know if there is a freely available input component which offers hint text? By hint text, I mean some text that shows up in the input field

[flexcoders] flash.events and flash.net library don't exist in Flex SDK 3.3.0.4852 ??

2009-02-25 Thread handitan
This is strange... Flex SDK 3.3.0.4852 is the latest stable build but it doesn't have these 2 packages: - flash.events - flash.net I checked my SDK 3.0 (milestone build) and it does have those packages. However those packages do appear when I enable the Include ADOBE AIR libraries option.

Re: [flexcoders] Tons of errors using FlexBuilder on Ubuntu

2009-02-25 Thread Tyler Kocheran
Is anyone in Adobe still working on Flex Builder Linux? I am using it almost every day now, and I can say that I'm really happy with it, at least as far as Flex Builder is concerned. Sure there's no design view (which I'm still waiting for ;) ), and code completion is only barely there, but all in

[flexcoders] Re: Passing data providers to drop-in item editors/renderers

2009-02-25 Thread Tyler Kocheran
Does anyone know how to do this? I'm really confused on this one, and I honestly need some help. I resorted to using a static variable to get the data to where it needs to be, but I just can't make it work. Here's some more info. I'm creating an editable DataGrid for the purpose of associating

[flexcoders] Re: http service and data service questions

2009-02-25 Thread valdhor
1. No. There are workarounds - http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetailsproductId=2postId=7184 2. Yes - Flickr already has crossdomain.xml files... static.flickr.com/crossdomain.xml http://weblogs.java.net/blog/joshy/archive/2008/05/java_doodle_cro.html 3. See

[flexcoders] Re: Passing data providers to drop-in item editors/renderers

2009-02-25 Thread valdhor
Have you checked out the combobox documentation and example? http://livedocs.adobe.com/flex/3/langref/mx/controls/ComboBox.html --- In flexcoders@yahoogroups.com, Tyler Kocheran rfkroc...@... wrote: I need to pass in data to one of my item editors for a data grid column. I have an array of

Re: [flexcoders] Tons of errors using FlexBuilder on Ubuntu

2009-02-25 Thread Maciek Sakrejda
I'm using it on Ubuntu 8.10 (was on 8.4 and 7.10 before that) and I haven't actually hit any code completion problems (except that an error pretty much anywhere in your mxml might kill code completion), but find all references is hopeless (should more accurately be called find some references

[flexcoders] Re: Embedding an SWF and RSL's / Cross Domain Policy File

2009-02-25 Thread luvfotography
Yes, in the project properties, in the 'Flex Build Path', in the 'Library Path', select 'Framework linkage:' = Runtime shared library (RSL) then open the 'Flex 3 twistie' and go down to 'framework.swc', highlight 'RSL URL' and click edit, enter in the location of the swc file:

Re: [flexcoders] Tons of errors using FlexBuilder on Ubuntu

2009-02-25 Thread Tyler Kocheran
Yeah, I know that it has code completion. Have you used JDT? JDT has *code completion*. Flex Builder (on Windows, Mac, and Linux) pales in comparison to the refactoring, auto complete, code suggest, being able to view code documentation live via JavaDoc (SO HELPFUL!), and code completion of JDT in

Re: [flexcoders] Re: Passing data providers to drop-in item editors/renderers

2009-02-25 Thread Charlie Hubbard
You can access the instance members of your surrounding document using a special property *outerDocument* from within the mx:Component tag when using inline renderers. mx:Component mx:ComboBox dataModel={outerDocument.choices}/ /mx:Component outerDocument allows you to access any special data

[flexcoders] PyAMF 0.4.1 released

2009-02-25 Thread Thijs Triemstra | Collab
The PyAMF team is proud to announce the release of 0.4.1! PyAMF [1] is a lightweight library that allows Flash and Python applications to communicate via Adobe’s ActionScript Message Format. This is a bugfix release [2], see the changelog [3] for the complete list of changes. A brief

Re: [flexcoders] Re: Passing data providers to drop-in item editors/renderers

2009-02-25 Thread Tyler Kocheran
YES!!! THANK YOU SO MUCH! Something like that was exactly what I was looking for. Thank you so much. Now, my only problem is making my ItemRenderer show the name property of the selected realm rather than the id of the realm. I think I know a way to do this. On Wed, Feb 25, 2009 at 11:30 AM,

[flexcoders] Re: Using Modules and Remote Objects

2009-02-25 Thread cortlandian
The modules presentation on your blog was very good, Alex. Thanks for your help. --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: Modules and sub-apps have the same rules with respect to RemoteObject. There might be a way to get it to work by having no vestiges of RemoteObject

Re: [flexcoders] Re: Working with images of varying proportions

2009-02-25 Thread Charlie Hubbard
I seem to remember encountering this problem as well a while back. I think the problem is that you are accessing the loader's info before the loader has a chance to finishing loading them. If you're inside complete event dispatcher you might try callLater() and see if that works. I wish I could

[flexcoders] Trying unsuccessfully to remove forward slash with this pattern /\// ?

2009-02-25 Thread Jeremy P. McKay
package { import flash.display.Sprite; public class regExp extends Sprite { public function regExp() { var asset:String = new String; asset = Tissue/Cell; var

[flexcoders] ToggleButtonBar - disable buttons

2009-02-25 Thread markgoldin_2000
Can I disable some buttons in ToggleButtonBar control? Thanks

[flexcoders] Can't Change Custom Border Custom Styles - Please Help !!!

2009-02-25 Thread greg_lafrance
I created a custom border class to create a dashed line border, and I added two custom style properties dashlen and gaplen, but I can't set them. In the attached code, the default dashlen and gaplen are 5. I create three VBox using the DashBorder, and although I have created a type selector

Re: [flexcoders] Trying unsuccessfully to remove forward slash with this pattern /\// ?

2009-02-25 Thread Guy Morton
replace RETURNS the modified string, but doesn't modify the string itself. try asset = asset.replace(pattern,); This has caught me more than once too. Guy On 26/02/2009, at 7:12 AM, Jeremy P. McKay wrote: package { import flash.display.Sprite; public class regExp extends Sprite { public

Re: [flexcoders] Tons of errors using FlexBuilder on Ubuntu

2009-02-25 Thread Tyler Kocheran
I definitely agree. What are the problems that you are experiencing? Are you running Eclipse Ganymede? On Wed, Feb 25, 2009 at 12:54 PM, Kelly dek...@gmail.com wrote: Who still uses Windoze? Srsly. Windoze is just expensive patented spyware. It spys on you in about 50 different ways.

[flexcoders] Going Bananas with Lists and drag and drop

2009-02-25 Thread djhatrick
Alex H, I am having an issue with drag and drop in a list in air, I am trying to drop an item into the same list to change it's order. What happens is when my item actually drops in, it goes into the wrong place in the list and then it duplicates that item. It's really weird, If I set

RE: [flexcoders] Going Bananas with Lists and drag and drop

2009-02-25 Thread Alex Harui
Sort takes precedence over drag/drop. You can copy a sorted list into an unsorted list then allow drag/drop Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf

[flexcoders] PopupManager and popup

2009-02-25 Thread flexaustin
Is it possible to push the popup down on the displayObjectList? I need the popup to be on top of the everything except one component. I would rather not refactor my code and current display list (purmvc related reasons). Hoping to just either push the popup down one layer or tell my top

Re: [flexcoders] Tons of errors using FlexBuilder on Ubuntu

2009-02-25 Thread Sam Lai
2009/2/26 Kelly dek...@gmail.com: I keep trying to use it in Ubuntu but without much success. It crashes a lot. I am using 8.10 though. What do the Eclipse logs say? They might help in working out what's wrong. Which version of Java are you running as well while you're at it. There are

[flexcoders] State transitions to align components in horizontal center

2009-02-25 Thread Tyler Kocheran
Is it possible? I've got two states which I'd like to transition from, and I'd like to tween the currently selected item to the horizontal center of the screen. I set my Application's layout property to absolute to allow components to move freely, should I be doing it another way? -- And do

[flexcoders] Question on DateField as itemrenderer

2009-02-25 Thread elevight
Has anyone ever tried using a mx.controls.DateField as an itemrenderer for a mx:Datagrid column? Unlike mx.controls.TextInput which has a property called 'text' to return its data, I can't find a counterpart for the DateField, so I don't know what to put in the 'editorDataField' property of

Re: [flexcoders] Tons of errors using FlexBuilder on Ubuntu

2009-02-25 Thread Sam Lai
I wonder why there aren't cross-platform open source alternatives for Flex Builder. Maybe it is usable enough (just) that people aren't interested? There were a project a while back that tried to implement an IDE for Flex using Flex itself - that could be quite interesting, and when combined with

[flexcoders] Re: ToolTip stay until closed

2009-02-25 Thread flexaustin
Ok ran into an issue. FIG Callout works great as a Popup, but the issue is I have two components on the stage that need to stay on top at all times. Is there a way to push the popup down 2 levels on the DisplayList? TIA --- In flexcoders@yahoogroups.com, flexaustin flexaus...@... wrote: Yes

Re: [flexcoders] Tons of errors using FlexBuilder on Ubuntu

2009-02-25 Thread Jeffry Houser
Sam Lai wrote: I wonder why there aren't cross-platform open source alternatives for Flex Builder. It is still early, too. Flex Builder 3 has only been out for a year; and it is the open source license that makes alternative IDEs much easier to build / use. These things don't crop up over

[flexcoders] Re: Constraining a resizable application to the initial aspect ratio

2009-02-25 Thread Amy
--- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote: Has anyone ever tried to lock a resizable AIR/standalone Flash application to the same aspect ratio as the user resizes it ? It looks like the only way to do it is to re-implement all the mouse up/down logic

Re: [flexcoders] Tons of errors using FlexBuilder on Ubuntu

2009-02-25 Thread Paul Kukiel
Did you install into Eclipse 3.3 or 3.4 because it only works with 3.3. When i tried with the apt-get install eclipse version with Ubuntu I got lots or errors but when i manually setup 3.3 FB worked correctly. Ubuntu 8.10 Paul.

[flexcoders] Loader or URLRequest Issues on Mac

2009-02-25 Thread lampei
I wrote an AIR application on my PC that will take images that are dragged 'n' dropped into it, resize them, then upload those images to a server. On my PC, everything worked great so I exported a release build and set it up as a .air application and installed it on my wife's Mac Mini. However,

[flexcoders] Re: Question on DateField as itemrenderer

2009-02-25 Thread max.nachlinger
Here's my silly version: http://home.comcast.net/~max.nachlinger/dateFieldRenderer/ (view-source enabled) DateField implements IDataRenderer, IDropInListItemRenderer, and IListItemRenderer so it was quite easy to use it as an item-renderer for the DataGrid.

[flexcoders] Re: Can't Change Custom Border Custom Styles - Please Help !!!

2009-02-25 Thread greg_lafrance
Bump. I really need to solve this. Any ideas? Thanks! --- In flexcoders@yahoogroups.com, greg_lafrance glafra...@... wrote: I created a custom border class to create a dashed line border, and I added two custom style properties dashlen and gaplen, but I can't set them. In the

RE: [flexcoders] Re: ToolTip stay until closed

2009-02-25 Thread Alex Harui
Hopefully the always on top components are also popups. If not, they should be. Then you can use systemManager.popUpChildren.setChildIndex to order them Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

[flexcoders] question for services-config?

2009-02-25 Thread markflex2007
I have question for the following code: channel-definition id=my-amf class=mx.messaging.channels.AMFChannel endpoint uri=http://{server.name}:{server.port}/{context.root}/messagebroker/amf; class=flex.messaging.endpoints.AMFEndpoint/ properties polling-enabledfalse/polling-enabled

[flexcoders] Advanceddatagrid Doubt

2009-02-25 Thread venkat eswar
I am using Advanced Datagrid. I am using three buttons. Add Task,AddSubTask,Delete Task.I am able to Add and Delete Task. I want to know how is it possible to add subtasks like tree structure.That means selecting a Task and adding Subtasks for that selected Task. For example, if i have added

[flexcoders] Re: Embedding an SWF and RSL's / Cross Domain Policy File

2009-02-25 Thread uclamerrick
Thank you, I am trying this now. --- In flexcoders@yahoogroups.com, luvfotography ygro...@... wrote: Yes, in the project properties, in the 'Flex Build Path', in the 'Library Path', select 'Framework linkage:' = Runtime shared library (RSL) then open the 'Flex 3 twistie' and go down to

[flexcoders] Re: ToolTip stay until closed

2009-02-25 Thread flexaustin
Alex, no they are not popups. I am building an app like google maps so the slider needs to remain on top and not be covered by a popup. I am trying to go back to creating component on screen instead of a popup, but getting a DisplayObject not being removed from memory getting Error #2025 So

[flexcoders] Re: Loader or URLRequest Issues on Mac

2009-02-25 Thread lampei
OK, I've got an update that may help someone troubleshoot what's going on here. I installed FB3 on my wife's Mac and ran the debugger. The error that is returned is Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found. I've tried changing the url to file:/location of file,

[flexcoders] Re: Loader or URLRequest Issues on Mac

2009-02-25 Thread lampei
And pointing directly to a URL (http://...) works correctly also, so it's definitely something weird with the file location, but I'm not sure what. --- In flexcoders@yahoogroups.com, lampei lam...@... wrote: OK, I've got an update that may help someone troubleshoot what's going on here. I

[flexcoders] Re: Loader or URLRequest Issues on Mac

2009-02-25 Thread lampei
As I'm answering my own questions here, I guess I'll just posted my findings :) There appears to be something a little strange with the way it handles the URL on a Mac. By adding 'file:/' in front of the url in new URLRequest (e.g. var request:URLRequest = new URLRequest( 'file:/' + url ); ) it

[flexcoders] VBox question

2009-02-25 Thread elevight
In MXML, you set a VBox's width to 100% by: mx:VBox width=100%/ But if you instantiated a VBox in actionscript as in: var vbox:VBox = new VBox(): How do you set its width to 100%? Thanks.

Re: [flexcoders] VBox question

2009-02-25 Thread Ashish Verma
Using percentWidth and percentHeight proerties you cam set in ActionScript. On Thu, Feb 26, 2009 at 12:20 PM, elevight i...@pilby.us wrote: In MXML, you set a VBox's width to 100% by: mx:VBox width=100%/ But if you instantiated a VBox in actionscript as in: var vbox:VBox = new VBox():

[flexcoders] Move effects makes the target invisible

2009-02-25 Thread jitendra jain
Hi coders,     I'm having a label component as a target for a move effect. I'm continously running this move effect. After some time the label component becomes invisible . Please help.     How could i track this issue?   Thanks, with Regards, Jitendra Jain Add more friends to your

[flexcoders] How to find the actual type of a custom flex component?

2009-02-25 Thread pmotzfeldt
Hi, I am wondering if anybody knows how I can find the actual class type of a custom component? By that I mean I create a custom component that is a VBox, but I call it MyCustomBox, and whenever I call className on that it returns MyCustomBox, but I want to get the class VBox by any means.