[flexcoders] setTimeout in flex 2.0

2006-12-27 Thread jensen.axel
I'm confused on how to use setTimeout i have a function that i need to wait 500 milliseconds to call... var aVars:Array = [lat, lng, zoom]; trace(aVars); //39,-105,6 var my_timedFunction:uint = setTimeout(manipulateMap,500,aVars); public function

[flexcoders] Calling javascript with navigateToURL

2007-01-09 Thread jensen.axel
I'm trying to do a loop, and call a javascript function in flex for every loop. The loop only seems to call the javascript once the loop is done... and it only calls it for the last iteration of the loop. To reproduce the issue do the following: 1. Create a new project in flex 2. Put a button

[flexcoders] Re: Calling javascript with navigateToURL

2007-01-10 Thread jensen.axel
That worked great, thanks --- In flexcoders@yahoogroups.com, jensen.axel [EMAIL PROTECTED] wrote: I'm trying to do a loop, and call a javascript function in flex for every loop. The loop only seems to call the javascript once the loop is done... and it only calls it for the last iteration

[flexcoders] CreationComplete help....

2007-01-16 Thread jensen.axel
Hello, I have a custom Component (it is an edit/create form) that i'm initializing... when i go and initialize the component, it runs a function on creationComplete=setup() then i save some data, and change viewStates... then i pick a different item from a mx:Tree, and reload the component,

[flexcoders] using mx:Tree to get custom icons

2007-01-25 Thread jensen.axel
I'm working with a real estate company, and making an administrative utility, to manage properties... some of these properties are not active, or they are in a certain price range (100,000 - 200,000) or (200,000 - 300,000) and for ease of use, I would love to be able to replace the icon on my leaf

[flexcoders] Re: scrollToIndex just won't work ... any workarounds ?

2007-01-25 Thread jensen.axel
If you are using xml in your tree, you can use e4x to manipulate which item you want to be selected by searching with e4x... for example: import mx.events.* import mx.rpc.events.*; import mx.collections.*; [Bindable] public var treeCollection:XML; /* this would be in your

[flexcoders] Re: Custom icons on Tree - scroll corruption...

2007-01-25 Thread jensen.axel
I've been trying to implement custom icons in my tree, but i'm having trouble trying to figure it out? can you help me? --- In flexcoders@yahoogroups.com, jamiebadman [EMAIL PROTECTED] wrote: Hi, I've implemented custom icons on a tree component - which looks great until the vertical

[flexcoders] Re: Populate tree from specific XML Node

2007-01-28 Thread jensen.axel
try to set your tree's showRoot=false usually when dealing with xml you have to do that. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: First, to get the result event, do not use lastResult. That is intended for binding expressions only. Instead do: myXML =

[flexcoders] Re: using mx:Tree to get custom icons

2007-01-29 Thread jensen.axel
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jensen.axel Sent: Thursday, January 25, 2007 4:41 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] using mx:Tree to get custom icons I'm working with a real estate company

[flexcoders] selectedIndex Issue, after dataprovider is updated

2007-01-30 Thread jensen.axel
If you notice the selectedIndex of an mx:List or anything list based for that matter, be it a, tree, combobox, or anything that is built of the base List... whenever the dataprovider changes the selectedIndex is lost say i want to bind my mx:List id=myList

[flexcoders] Re: selectedIndex Issue, after dataprovider is updated

2007-01-31 Thread jensen.axel
... it would work on creationComplete, but everytime you call it there after, it would be blank... because the setting of the dataprovider erases whatever is in there... --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 30 Jan 2007, jensen.axel wrote: so i'm binding

[flexcoders] Re: Populate Tree with data from a query?

2007-02-06 Thread jensen.axel
Hi Malik, I have never exactly populated a tree with straight query data, i usually convert it to xml first within the cfc that i'm calling, and i return a string from that cfc... it took some playing with but i eventually got it... google the following: using cfxml returning it to flex? or

[flexcoders] Re: Populate Tree with data from a query?

2007-02-07 Thread jensen.axel
mailto:flexcoders%40yahoogroups.com , jensen.axel axel@ wrote: Hi Malik, I have never exactly populated a tree with straight query data, i usually convert it to xml first within the cfc that i'm calling, and i return a string from that cfc... it took some playing with but i eventually

[flexcoders] Re: Determining Drop Index in a List

2007-02-17 Thread jensen.axel
For pete's sake, i hope someone answers this. I need to determine in if the drop is before the selected index... and if it is, (i'm using allowMultipleSelection) I need to determine the length of the drag source, and add that number to the selectedIndex... Axel

[flexcoders] Re: Determining Drop Index in a List

2007-02-17 Thread jensen.axel
Paul, I think I found a good source to look at for the answer, use a function called calculateDropIndex(event) I don't know enough about it yet, but here is a page to look at, just right-click to view the source, and copy and paste it into your own new flex project... Hope you can dissect it

[flexcoders] How do you Scroll programmatically in a Panel

2007-04-25 Thread jensen.axel
I'm filling a panel with a few vboxes, and sometimes it grows to big... I've never done anything with the scroll bar programmatically... i've skinned it, but thats about it. I'm adjusting this vbox's height programmatically, and so initially the panel may not have a scroll bar... i need to

[flexcoders] using XMLListCollection and it's filterFunction... how to filter children nodes?

2007-04-27 Thread jensen.axel
Problem: Trying to filter a mx:Tree to show only things that I type… when I filter, it filters the folders, and the main root items, but not any children, I'm using an xmlListCollection… I don't know if you've done this with an xml list collection, it seems a lot of people are trying it with an

[flexcoders] using XMLListCollection and it's filterFunction... how to filter children nodes

2007-04-30 Thread jensen.axel
any one have any advice on this? --- In flexcoders@yahoogroups.com, jensen.axel [EMAIL PROTECTED] wrote: Problem: Trying to filter a mx:Tree to show only things that I type… when I filter, it filters the folders, and the main root items, but not any children, I'm using an xmlListCollection

[flexcoders] Re: using XMLListCollection and it's filterFunction... how to filter children no

2007-05-01 Thread jensen.axel
http://axel.cfwebtools.com/Examples/filterATreeInFlex/bin/filterATreeInF\ lex.html http://axel.cfwebtools.com/Examples/filterATreeInFlex/bin/filterATreeIn\ Flex.html I blogged about it here... http://axel.cfwebtools.com/index.cfm/2007/5/1/Using-a-Data-Manager-and-F\

[flexcoders] Cool Example of a Hovering Menu

2007-05-15 Thread jensen.axel
I wanted to post a link to this, I thought it was worth a look. Blog Entry: http://axel.cfwebtools.com/index.cfm/2007/5/15/Expanding-and-Contracting\ -Animated-Menu-In-Flex#more http://axel.cfwebtools.com/index.cfm/2007/5/15/Expanding-and-Contractin\ g-Animated-Menu-In-Flex#more Sample:

[flexcoders] Using the Spring Loaded Tree

2007-09-08 Thread jensen.axel
This is an example of Jason Hawryluk's Spring loaded tree but re done to use the datadescriptor rather than xml for finding branches... it's a great component... you can drag and hover over the node you want, and it opens right up...

[flexcoders] cairngorm and popup window wierdness, with a tree... in need some of help...

2007-09-25 Thread jensen.axel
I have a problem with using a tree that mimics another tree within a popup window... here is the link to simulate the problem... it seems like a bug to me... it would be nice if to know if it was for sure a bug... (right click to view source)

[flexcoders] Re: Draw a straight line with your mouse

2007-10-19 Thread jensen.axel
please help... any links at all would help. --- In flexcoders@yahoogroups.com, jensen.axel [EMAIL PROTECTED] wrote: Hey, I need a little help, i've found some resources online on how to draw with your mouse, and most of them are like drawing with the pencil in any normal graphics programs

[flexcoders] Re: open source flex xml mp3 player

2007-10-19 Thread jensen.axel
--- In flexcoders@yahoogroups.com, jensen.axel [EMAIL PROTECTED] wrote: Finally it's here...OPEN SOURCE FLEX XML MP3 PLAYER Flex xml mp3 player Basically you can specify an xml playlist from the url, and have it play whatever is in the playlist… The links for the examples

[flexcoders] open source flex xml mp3 player

2007-10-18 Thread jensen.axel
Finally it's here...OPEN SOURCE FLEX XML MP3 PLAYER Flex xml mp3 player Basically you can specify an xml playlist from the url, and have it play whatever is in the playlist… The links for the examples are on the right side. You can also specify the playlist in the url if you'd like:

[flexcoders] Re: Draw a straight line with your mouse

2007-10-22 Thread jensen.axel
] On Behalf Of jensen.axel Sent: Friday, October 19, 2007 11:36 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Draw a straight line with your mouse please help... any links at all would help. --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , jensen.axel axel

[flexcoders] Re: Dragging from Datagrid to Tree

2007-10-22 Thread jensen.axel
i have a blog post on this... includes code http://axel.cfwebtools.com/index.cfm/2007/9/7/Using-a-tree-with-drag-and-drop-FROM-a-grid --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: DataGrids have linear data and place into the dragsource a format called items. A tree

[flexcoders] Flex Charting Width resetting after data comes back

2007-11-30 Thread jensen.axel
Forgive me for my ignorance, i'm new to the charting side of flex... I have a vbox with a line chart in it's got 100% width at first until the data comes back, when the data gets back it shortens it's own width... i'm a little confused why it doesn't stretch out... has anyone seen this or is it

[flexcoders] Re: Flex Charting Width resetting after data comes back

2007-12-03 Thread jensen.axel
... i'm open to anything. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 30 Nov 2007, jensen.axel wrote: I have a vbox with a line chart in it's got 100% width at first until the data comes back, when the data gets back it shortens it's own width... i'm

[flexcoders] Datagrid ItemEditor ComboBox Question

2008-01-21 Thread jensen.axel
I have a client that would like a combobox in a datagrid... simple enough the scenario is a combobox filled with upc numbers, and when a upc gets selected, the whole row of the datagrid gets filled out, and it adds an empty row to the bottom of the datagrid... It's not working the way i

[flexcoders] Re: Datagrid ItemEditor ComboBox Question

2008-01-21 Thread jensen.axel
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jensen.axel Sent: Monday, January 21, 2008 2:04 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Datagrid ItemEditor ComboBox Question I have a client that would like a combobox

[flexcoders] Re: How to hide the Vertical Axis in a BarChart

2008-01-22 Thread jensen.axel
--- In flexcoders@yahoogroups.com, reflexactions [EMAIL PROTECTED] wrote: I want to hide the vertical axis, how? tks more info needed... the labels? the line? try the following i guess... mx:Style .vAxis { showLine:false;

[flexcoders] Re: How to hide the Vertical Axis in a BarChart

2008-01-22 Thread jensen.axel
I meant: .vAxis { showLine:false; showLabels:false; verticalTickAligned:true; } --- In flexcoders@yahoogroups.com, jensen.axel [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, reflexactions reflexactions@ wrote: I want to hide the vertical axis, how? tks more info

[flexcoders] Re: Richtexteditor, html text generate really bad html !!!

2008-04-04 Thread jensen.axel
totally copy and paste the RTE into my own and open up some of the methods... my email is jensen.axel (at) yahoo.com let me know if you have any questions...

[flexcoders] Re: Rich Text Editor issue

2008-04-14 Thread jensen.axel
Check this out. post: http://www.axelscript.com/2008/04/02/introducing-acjeditor-its-a-rte/ application: http://axelscript.com/wp- content/Examples/RichTextEditorExample/RichTextEditorExample.html#app=3f d671dc-selectedIndex=1 the application will show you, you can put in a link and it will be

[flexcoders] Re: Flexbuilder or Eclipse plugin to emulate VisualStudio function drop down?

2008-04-29 Thread jensen.axel
You can press Ctrl + o (thats o as in ox) and it will give you a little popup that lets you type and filter variables and functions... you might like that... http://axelscript.com Axel Jensen

[flexcoders] Re: dealing with apostrophes in text saved to Sqlite from an AIR app

2008-08-23 Thread jensen.axel
if your using objects... you can pass this function an object and it looks for the name property in an object and fixes the ticks to go into the db... http://axelscript.com http://axelscript.com or http://reynacho.net http://reynacho.net Jake Churchill wrote the function, but didnt write about

[flexcoders] AdvancedDataGrid Sorting

2009-07-31 Thread jensen.axel
Is there anyway to get rid of the sort number in the AdvancedDataGrid second row... when you sort the datagrid header, it shows a number 1 then an arrow... is there anyway to get rid of it?

[flexcoders] AdvancedDataGrid Sorting

2009-07-31 Thread jensen.axel
When you sort in the advanceddatagrid, you get a sort order that shows up as a 1 in the datagrid header... is there anyway to get rid of that number? I dont want to see it?