[flexcoders] Re: filtering a flex datagrid using a slider with two thumbs

2008-08-08 Thread stinasius
hi guys i hope am not being a pain, but how can i use a combo box and a slider (two thumbed) to fliter a datagrid? a small code sample will do it. thanks.

[flexcoders] LCDS: how to fetch the items from lazy collection

2008-08-08 Thread Zdenek Mikan
I have an ArrayCollection which is filled from the LCDS/Hibernate destination with lazy=true. For display it is OK, but for export I need to go through all items to send them to output. Is there any way how to force fetch all items from the server? BTW the sample in LCDS ES 2.6 Developer Guide

[flexcoders] Re: LCDS: how to fetch the items from lazy collection

2008-08-08 Thread zdenekmikan
I was able to solve my problem with following async loop, but I wonder if there is some simpler solution. private var itemArray:ArrayCollection private var index:int; private var count:int; private var noIPE:Boolean; public function execute(cgEvent:CairngormEvent):void { count =

Re: [flexcoders] Re: Multiple Builder instances / windows?

2008-08-08 Thread Tom Chiverton
On Thursday 07 Aug 2008, Daniel wrote: 200MB? javaw.exe can take up to 700MB when running builder for a couple of hours... That's a lot of memory... Are you using a recent JVM ? -- Tom Chiverton This email is sent for and on behalf of

Re: [flexcoders] Re: Multiple Builder instances / windows?

2008-08-08 Thread Tom Chiverton
On Thursday 07 Aug 2008, Amy wrote: If you use the Help a lot it can go much higher, especially if you have more than one Help window open at a time. Oh, right. I use the online help because it'll be more up to date, and possibly have some useful comments. -- Tom Chiverton

Re: [flexcoders] Set background color of special dates in DateField

2008-08-08 Thread Tom Chiverton
On Thursday 07 Aug 2008, kruse.morten wrote: Is this possible? selectedRanges -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales

Re: [flexcoders] Re: Using Create App from DB - Saving decimal number 123.123??

2008-08-08 Thread Blair Cox
Ha, too funny ;) I thought it was a simple matter of changing the script. It is set to Number on the flex side and int of the php. Sorry, did you say to set it to Œlong¹? (or is that log?) I¹ll look up the options within php, but I¹m not familiar with this one. Cheers! Thanks for the assistance.

[flexcoders] Event Handling

2008-08-08 Thread mekaprakashraju
Hi All, Is there a way that parent will push an event to its child. for example VBox Component1 . . this.dispatchEvent( XEvent ); /Component1 Component2 this.addEventListener( XEvent, onXEvent ); function onXEvent( XEvent ) : void { I need

[flexcoders] Re: Different separator line colors on AdvancedDatagrid

2008-08-08 Thread Pun Sophany
I have resolved my problem by overriding drawRowBackgrounds() in AdvancedDatagrid. This method is called each time I make a vertical scroll. public class MyADG extends AdvancedDataGrid { public function MYADG() { super(); } override

[flexcoders] Sub-Objects in AdvancedDataGrid?

2008-08-08 Thread tudsy
I seem to recall seeing this issue discussed, but can't find it right now... I want to display properties of a sub-object of an object in my dataProvider as a column in my AdvancedDataGrid. The data is hierarchical. Something like (not the actual code): public class House{ public function

[flexcoders] Force UI update during intense AS work

2008-08-08 Thread verma.java
Hello All, I am Ashish. I am working in Adobe Flex AIR from last six months only. I have a problem that anyone will have been faced in flex/air of updaing UI during the intense AS work before. Actually I am reading the OS File System and making a XML file that would work as data provider for

[flexcoders] Re: Set background color of special dates in DateField

2008-08-08 Thread kruse.morten
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 07 Aug 2008, kruse.morten wrote: Is this possible? selectedRanges -- Tom Chiverton Hi Tom, There is no selectedRanges property on the DateField!

RE: [flexcoders] Force UI update during intense AS work

2008-08-08 Thread Gregor Kiddie
The only real solution for this (as I'm sure you've discovered) is to try and separate the work up into chunks, allowing the UI to be updated in between these chunks. Until we get multiple threading, you have to limit the amount of work you are doing at any one time if you want the UI to keep up.

RE: [flexcoders] Re: Set background color of special dates in DateField

2008-08-08 Thread Gregor Kiddie
Possibly DateField.selectableRange is what Tom meant? 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 the UK Visit our Internet Web site at www.inps.co.uk

RE: [flexcoders] Event Handling

2008-08-08 Thread Gregor Kiddie
The example you've given isn't a parent / child scenario, it is two components at the same level. If you add the listener and dispatch the event to / from the component which contains the two components, you may have more luck. i.e. parent.addEventListener( ... ) and parent.dispatchEvent( ... )

[flexcoders] Re: New to Adobe AIR - SQLite

2008-08-08 Thread tech.sivakami
i got output.thank u. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 07 Aug 2008, tech.sivakami wrote: i tried some simple examples on using this SQLite but i couldnt retrieve data from that or even to update database.anyone knows about this or having

[flexcoders] Resizing a Loader object image

2008-08-08 Thread Joy
Hi I have a loader() object, which is loading new URLRequest( thumbSmall ) image. But I am not able to resize the width n height of this. Please let me know how we can do it. Thanks in advance.

[flexcoders] Re: LCDS: how to fetch the items from lazy collection

2008-08-08 Thread marcel.panse
This is a backend problem not a flex problem. Your java backend application fetches the data lazily from the database, which means he doesn't fetch it at all until you need it at runtime. When you send this lazily loaded object through LCDS over the line to your flex application it loses the

[flexcoders] Re: Resizing a Loader object image

2008-08-08 Thread marcel.panse
Just put the loader loaded data into a Image object and show the Image object in your canvas, set the height and with in your Image object to make it scale. If you really want to actual resize the bitmapdata you can do something like: public static function

Re: [flexcoders] Force UI update during intense AS work

2008-08-08 Thread George
You cannot do anything if you do not ask Flex to update. If you want to 'display something' before you finally update data provider, give an early collection of data provider (smaller and fast) to ask DataGrid could update. George verma.java wrote: Hello All, I am Ashish. I am working in

[flexcoders] Re: Force UI update during intense AS work

2008-08-08 Thread marcel.panse
Yeah try to break up large for-loops. Use Application.application.callLater() to call a method, that will give the UI time to update before calling the method. For example you could like loop through 1000 items and use the callLater method every 100 items to update the UI. gr marcel --- In

[flexcoders] Re: Multiple Builder instances / windows?

2008-08-08 Thread Amy
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 07 Aug 2008, Amy wrote: If you use the Help a lot it can go much higher, especially if you have more than one Help window open at a time. Oh, right. I use the online help because it'll be more up to

[flexcoders] Re: WindowedApplication custom close / exit

2008-08-08 Thread marcel.panse
There is a close and closing event on windowedApplication. You could probably just catch those and use something like event.preventDefault() when you don't want it to close. This works: mx:WindowedApplication closing=onClose(event) xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA[

[flexcoders] Flex is time consumming

2008-08-08 Thread litesh_b321
Hi guys, I am facing a problem while working on flex builder 3.0 Problem description : My application consist around 4000 line of code where i am binding 2000 XML with different ids. now whenever i want to edit any line of code or if i want to delete any line of code flex is taking too much

RE: [flexcoders] Force UI update during intense AS work

2008-08-08 Thread Gregor Kiddie
If you throw us your scanning code, someone might be able to give you some pointers. 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 the UK Visit our

[flexcoders] Re: CursorManager problem - custom cursor disappears

2008-08-08 Thread ferriejbank
Thanks Alex, I see that's the problem and I was able to make a work-a-round by delaying the intense processing some milliseconds so at least the cursor image will change into the busy cursor (before freezing - but I can live with that, as long as the user gets a clue of what's happening).

Re: [flexcoders] Flex is time consumming

2008-08-08 Thread Paul Andrews
Presumably you don't have 4,000 lines of code in one file, which would be asking for trouble. The other thing to do is to turn off automatic builds in flexbuilders preferences. Paul - Original Message - From: litesh_b321 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday,

[flexcoders] Re: How to display the vertical scrollbar of a container on the left

2008-08-08 Thread haykelbj
So, no responses/suggestions? Ok I'm trying some things and as soon as I have something usable I'll post it here. But in the meantime I have a question to the Adobe SDK developers: Will Gumbo support RTL components? When you set the direction of a component to rtl for example, it will mirror its

[flexcoders] Re: filtering a flex datagrid using a slider with two thumbs

2008-08-08 Thread Tim Hoff
No worries, It looks like your filter function already uses the comboBox's selectedLabel to compare. You can initiate the filter like this: private function filterDataGrid():void { myArrayCollection.filterFunction = myFilterFunction; myArrayCollection.refresh(); } mx:ComboBox

[flexcoders] Re: Using Create App from DB - Saving decimal number 123.123??

2008-08-08 Thread Tim Hoff
Oh sorry, been in the java world too long. I beleive that php uses Float; instead of double or long. -TH --- In flexcoders@yahoogroups.com, Blair Cox [EMAIL PROTECTED] wrote: Ha, too funny ;) I thought it was a simple matter of changing the script. It is set to Number on the flex side

[flexcoders] Re: Flex access of RMI server

2008-08-08 Thread ron_mori
Fidel, I appreciate your input. Sometimes you get to choose the pieces of the application and sometimes you don't.. in this case I don't. The client is pondering a number of communication protocol options for his app - RMI being just one. I'm constantly presented the questions: Can you

[flexcoders] Question about Changewatch?

2008-08-08 Thread markflex2007
Hi, I did a simple test for changewatch.I try to watch a variable change.but I am not sure why it doesn't work. (variable theChange change from true to false) The code is here: BindingUtils.bindProperty(this,onChange, this, theChange ); }

Re: [flexcoders] Re: Using Create App from DB - Saving decimal number 123.123??

2008-08-08 Thread Blair Cox
No, you were correct. It also uses float, however long was already in the code, just not used. I made a couple changes and works like a charm. All I¹m really doing is passing along the variable from the user end and storing it in the db, so I don¹t need to perform any calculations along the way.

[flexcoders] URL deeplinking or other?

2008-08-08 Thread flexaustin
Does anyone know the best way or anyway to pass an URL into a Flex app in order move to the correct state? So if I have an app - Panel - itemrender and I want to display one of them items (which when selected grows and expands) when it receives a certain URL. Is this possible and has anyone

[flexcoders] introspection - remote object

2008-08-08 Thread marioa00
hi, i'm using flex to create an application (client) that shows the methods and parameters that are in a java file, and this file is in my blazeds server. i have a remote object define as: var ro : RemoteObject = new RemoteObject(); ro.destination = entryVO.destinationVar; i just need to

[flexcoders] Re: Using Create App from DB - Saving decimal number 123.123??

2008-08-08 Thread Tim Hoff
nice! --- In flexcoders@yahoogroups.com, Blair Cox [EMAIL PROTECTED] wrote: No, you were correct. It also uses float, however long was already in the code, just not used. I made a couple changes and works like a charm. All I¹m really doing is passing along the variable from the user end and

[flexcoders] How do you update your Flex Builder SDK?

2008-08-08 Thread Rick Schmitty
Perhaps the dumbest question of the day... but how do you update your Flex Builder if there has been a bug that was fixed? http://bugs.adobe.com/jira/browse/SDK-3323 I'm on a mac if that matters...

Re: [flexcoders] How do you update your Flex Builder SDK?

2008-08-08 Thread Matt Chotin
http://opensource.adobe.com/wiki/display/flexsdk/Using+Flex+3+Builds+in+Flex+Builder On 8/8/08 10:28 AM, Rick Schmitty [EMAIL PROTECTED] wrote: Perhaps the dumbest question of the day... but how do you update your Flex Builder if there has been a bug that was fixed?

Re: [flexcoders] How do you update your Flex Builder SDK?

2008-08-08 Thread Rick Schmitty
Ah, thank you. Is it recommended you update the Flex 3 SDK directly or create a new SDK directory such that you have Flex 2.0.1 Hotfix 3 Flex 3 (sdk that shipped with flex builder) Flex 3.0.x (latest stable release) and while I'm at it, if I wanted to look at the new flash player features Flex

Re: [flexcoders] How do you update your Flex Builder SDK?

2008-08-08 Thread Matt Chotin
Create new SDK directories is the recommendation. That way if you don't' like something you have an easy way to revert. On 8/8/08 10:41 AM, Rick Schmitty [EMAIL PROTECTED] wrote: Ah, thank you. Is it recommended you update the Flex 3 SDK directly or create a new SDK directory such that

[flexcoders] Re: WindowedApplication custom close / exit

2008-08-08 Thread aphexyuri
Thanks I actually just figured that out right after I made the post...it always works like that...thanks anyways! --- In flexcoders@yahoogroups.com, marcel.panse [EMAIL PROTECTED] wrote: There is a close and closing event on windowedApplication. You could probably just catch those and use

RE: [flexcoders] URL deeplinking or other?

2008-08-08 Thread Alex Harui
deeplinking = BrowserManager. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexaustin Sent: Friday, August 08, 2008 10:03 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] URL deeplinking or other? Does anyone know the best way

[flexcoders] Re: Question about Changewatch?

2008-08-08 Thread haykelbj
Did you declare the variable theChange as Bindable? This works for me: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=init() mx:Script ![CDATA[ import mx.controls.Alert; import

RE: [flexcoders] Re: How to display the vertical scrollbar of a container on the left

2008-08-08 Thread Alex Harui
Override updatedisplaylist, override viewMetrics, cross your fingers. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of haykelbj Sent: Friday, August 08, 2008 8:13 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to display

[flexcoders] Re: Sub-Objects in AdvancedDataGrid?

2008-08-08 Thread gerhard.schlager
--- In flexcoders@yahoogroups.com, tudsy [EMAIL PROTECTED] wrote: I seem to recall seeing this issue discussed, but can't find it right now... I had a few problems with this too [1]. There's a link to a small demo which shows how it could work, however, there's still the problem with the

Re: [flexcoders] Re: How to display the vertical scrollbar of a container on the left

2008-08-08 Thread Michael Schmalle
This is possible, I have done it with vertical and horizontal scrollbars. One component I made was a tab bar that had it's horizontal scroll bar on the top of the content. As Alex said, cross your fingers because you really have to know what you are doing to get it to work (IE know what does

[flexcoders] Re: URL deeplinking or other?

2008-08-08 Thread haykelbj
You can use BrowserManager http://livedocs.adobe.com/flex/3/html/help.html?content=deep_linking_3.\ html . In the handler function of the BrowserChangeEvent.BROWSER_URL_CHANGE event you can get the fragment from the BrowserManager and according to its value you can choose which item to display.

RE: [flexcoders] Re: filtering a flex datagrid using a slider with two thumbs

2008-08-08 Thread Gordon Smith
I don't have a tested code sample to offer, but you would use the fact that your DataGrid's dataProvider has probably been turned into an ArrayCollection, which has a filterFunction property. You set the filterFunction to be a reference to a method that takes a single data item as an argument and

[flexcoders] Re: Force UI update during intense AS work

2008-08-08 Thread Amy
--- In flexcoders@yahoogroups.com, verma.java [EMAIL PROTECTED] wrote: Hello All, I am Ashish. I am working in Adobe Flex AIR from last six months only. I have a problem that anyone will have been faced in flex/air of updaing UI during the intense AS work before. Actually I am reading

[flexcoders] Flexbuilder for iPhone?

2008-08-08 Thread Merrill, Jason
Ryan Stewart just tweeted, I just let Adobe's iPhone secret slip while at lunch with effectiveUI. We're going to have Flex Builder for the iPhone. http://brightkite.com/people/ryanstewart/ http://twitter.com/ryanstewart For real? Could you actually code flexbuilder on an iPhone? Seems like a

Re: [flexcoders] Flexbuilder for iPhone?

2008-08-08 Thread dnk
On 8-Aug-08, at 12:18 PM, Merrill, Jason wrote: Ryan Stewart just tweeted, I just let Adobe's iPhone secret slip while at lunch with effectiveUI. We're going to have Flex Builder for the iPhone. http://brightkite.com/people/ryanstewart/ http://twitter.com/ryanstewart For real? Could

Re: [flexcoders] Flexbuilder for iPhone?

2008-08-08 Thread Clint Tredway
that would rock.. I just got an iPhone and I am learning the SDK for it, but flex apps would be awesome. On Fri, Aug 8, 2008 at 2:33 PM, dnk [EMAIL PROTECTED] wrote: On 8-Aug-08, at 12:18 PM, Merrill, Jason wrote: Ryan Stewart just tweeted, I just let Adobe's iPhone secret slip while at

Re: [flexcoders] Flexbuilder for iPhone?

2008-08-08 Thread Matt Chotin
Read the follow-up tweets, they were joking around. No Flex Builder on the iPhone. No Flex Builder building apps for the iPhone. Matt On 8/8/08 12:35 PM, Clint Tredway [EMAIL PROTECTED] wrote: that would rock.. I just got an iPhone and I am learning the SDK for it, but flex apps would

[flexcoders] Paginate DataGrid

2008-08-08 Thread Joshua Jackson
Dear all, How do I paginate DataGrid? In the flex 3 reference it is written that DataGrid can be paginated, but it doesn't explain on how to do it? Could anyone give me a hint on this? Best regards -- Setting a new landmark. Blog: http://joshuajava.wordpress.com/ Twitter:

[flexcoders] Re: introspection - remote object

2008-08-08 Thread marioa00
by the way, as you can see, the remote object destination is set dinamically, the user choose the destination to use and the application must show the functions inside that destination.

[flexcoders] aspx Wrapper for Flex Build Possible?

2008-08-08 Thread Adrian Williams
Hi all, Just a quick question. I know the flex builder tool allows you to auto-generate an HTML wrapper on compile. Has anyone found a way to have it create a wrapper in .aspx, possibly using some kind of master template? Thanks, Adrian

[flexcoders] Re: Flexbuilder for iPhone?

2008-08-08 Thread Jason
Ah, the follow up tweets were not there when i saw them. So Ryan's on my blacklist now - stupid joke. :P) --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Read the follow-up tweets, they were joking around. No Flex Builder on the iPhone. No Flex Builder building

[flexcoders] Re: aspx Wrapper for Flex Build Possible?

2008-08-08 Thread nathanpdaniel
We create the wrapper in ASPX, then build the app to our local site (in the Flex project's properties) and turn off the generate HTML wrapper functionality (also in the Flex project's properties). Hope this helps a little - albeit has nothing to do really with your original question... :D

[flexcoders] Why Doesn't This JavaScript Regular Expression Work in AS3?

2008-08-08 Thread jwebbsuccess
I have a regular expression that works in JavaScript and does not work in ActionScript 3, even though both languages supposedly use the ECMAScript standard for regular expressions. I need the expression to return true when ever it tests the two strings below: true,$ true, $ I need the

[flexcoders] Tabbing in an ItemEditor

2008-08-08 Thread Ben
By default, if the user strike the tab key in a Tree ItemEditor, then the ItemEditor loses focus and is destroyed. However, I have multiple controls in my ItemEditor that need to be tabbed between. Somehow I need to keep the ItemEditor being destroyed after a tab, but so far I have been unable

RE: [flexcoders] Paginate DataGrid

2008-08-08 Thread Alex Harui
What do you mean by paginated? The PrintDataGrid will help you print across multiple pages. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joshua Jackson Sent: Friday, August 08, 2008 1:16 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Tabbing in an ItemEditor

2008-08-08 Thread Alex Harui
http://blogs.adobe.com/aharui/2008/08/datagrid_itemeditor_with_two_i.htm l From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben Sent: Friday, August 08, 2008 3:16 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Tabbing in an

RE: [flexcoders] Re: introspection - remote object

2008-08-08 Thread Alex Harui
Did you try for..in From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of marioa00 Sent: Friday, August 08, 2008 1:24 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: introspection - remote object by the way, as you can see, the

[flexcoders] deprecated horizontalAxisRenderer

2008-08-08 Thread coder3
Hi All, i have flex2 code, and now shows warnings in flex 3 for example, mx:CartesianChart ::: mx:horizontalAxisRenderer mx:AxisRenderer styleName=noAxisStyle / /mx:horizontalAxisRenderer

[flexcoders] Re: deprecated horizontalAxisRenderer

2008-08-08 Thread Michael VanDaniker
You have to tell your AxisRenderer which axis it should render by setting the axis property. --- In flexcoders@yahoogroups.com, coder3 [EMAIL PROTECTED] wrote: Hi All, i have flex2 code, and now shows warnings in flex 3 for example, mx:CartesianChart :::

Re: [flexcoders] deprecated horizontalAxisRenderer

2008-08-08 Thread coder3
not sure how to do it. is there an example? thanks Michael VanDaniker wrote: You have to tell your AxisRenderer which axis it should render by setting the axis property. --- In flexcoders@yahoogroups.com, coder3 [EMAIL PROTECTED] wrote: Hi All, i have flex2 code, and now shows

[flexcoders] Re: deprecated horizontalAxisRenderer

2008-08-08 Thread Michael VanDaniker
Certainly! mx:ColumnChart dataProvider={collection} mx:horizontalAxis mx:CategoryAxis id=horizontalAxis categoryField=foo / /mx:horizontalAxis mx:verticalAxis mx:LinearAxis id=verticalAxis / /mx:verticalAxis mx:verticalAxisRenderers mx:AxisRenderer axis={verticalAxis}/

Re: [flexcoders] Re: Data caching dto's

2008-08-08 Thread Brian Deitte
This message is probably too late, but I'll answer anyways. If you're just trying to compare ten objects at a time, I'd just use the Array technique that you described. Assuming you need to do a deep equality check, just use ObjectUtil.equals() (or something like that, it's in the Flex

Re: [flexcoders] deprecated horizontalAxisRenderer

2008-08-08 Thread coder3
thanks!!! if i use the out of box code, it works fine. but the problem is, i use an extended AxisRenderer .as class, http://bugs.adobe.com/jira/secure/attachment/12340/InnerAxisRenderer.as. now i got this run time error: do i need to modify the class? how? TypeError: Error #1009: Cannot

[flexcoders] storage directory debugging AIR in FLEX3

2008-08-08 Thread slackware2142
Sorry, if this is a newbie question, but I google'd about it, and I didn't find any answer. While debugging AIR apps in FLEX3, what is the storage directory to write files (windows)?. Once the application is compiled and installed, the default directory is something like: C:\Documents and

[flexcoders] Re: Paginate DataGrid

2008-08-08 Thread Joshua Jackson
I mean the data in DataGrid is paginated, so not all of them is displayed on one page. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: What do you mean by paginated? The PrintDataGrid will help you print across multiple pages.

[flexcoders] FlexReport issues

2008-08-08 Thread aceoohay
FlexReport developers, I have a few questions, The following relates to the current SVN version; 1) When I set the PaperFormat to LETTER and adjust my template to width=792 height=1224 the image in the previewer and PDF are smeared so much that everything appears as gray horizontal streaks.

[flexcoders] Sorting XMLListCollection by childIndex()

2008-08-08 Thread Amy
Hi, all; I'm using an XMLLisCollection as the dataprovider for a bar chart. For some reason a bar chart draws the bars from bottom to top, rather than from top to bottom. This puts my data upside down, and the order is important in this application. I'd rather not change the data itself,

Re: [flexcoders] Re: Flexbuilder for iPhone?

2008-08-08 Thread Howard Fore
Sounds like a bad 80's movie...Flex and Java, banned from iPhonia, team up together to reclaim their birthright... -- Howard Fore [EMAIL PROTECTED] Sent from my iPhone On Aug 8, 2008, at 5:33 PM, Jason [EMAIL PROTECTED] wrote: Ah, the follow up tweets were not there when i saw them. So

[flexcoders] Re: Chart example posted

2008-08-08 Thread sa3376
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: Hi, all; Someone on another forum asked me about how to create multiple axes in a chart in Flex. I put together a little example of how to do a chart completely in AS and posted it on my blog. For those doing charting,

[flexcoders] Re: Why Doesn't This JavaScript Regular Expression Work in AS3?

2008-08-08 Thread haykelbj
The JavaScript and ActionScript codes are not doing exactly the same thing. In your AS code, at a certain point you are doing the following assignment: _testValue = qualifier.toLowerCase()+ ,$; This will result in _testValue = true,$ which will make the test isCurrency.test(_testValue) return

Re: [flexcoders] Re: aspx Wrapper for Flex Build Possible?

2008-08-08 Thread Howard Fore
I can't remember where I saw it now but I found some instructions for doing this to create a coldfusion wrapper. I'll post the particulars when I get back to my workstation but I recall it had to do with making a coldfusion file in the html-templates directory that was named the same as

[flexcoders] Application close event?

2008-08-08 Thread Guy Morton
Hi all Does anyone know if there is an event that can be used to trigger clean-up activities when a Flex app is closed, either by the browser being closed or the user navigating to a new page? TIA Guy

[flexcoders] Re: Tabbing in an ItemEditor

2008-08-08 Thread Ben
Thank you. This worked perfectly. The trick from that example is to add an event for a key focus change, and manually change the focus there and do preventDefault. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote:

[flexcoders] How to let RichTextEditor component to set indent of paragraph

2008-08-08 Thread Jonathan Lee
Hello all: The RichTextEditor component can edit most of the basic stuff. Now the question I have is how to set the indent of a paragraph? Any one has a sample? I think the HTML in textfield supports the attribute BLOCKINDENT which allows the indent of paragraph. But anyone knows how to do it

RE: [flexcoders] Sorting XMLListCollection by childIndex()

2008-08-08 Thread Alex Harui
I think as the sort happens, the child indexes will change. I'd wrap the collection so that it iterates in reverse order. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Amy Sent: Friday, August 08, 2008 7:06 PM To:

RE: [flexcoders] Re: Paginate DataGrid

2008-08-08 Thread Alex Harui
If the datagrid has too many items than rows, it shows a scrollbar. You can turn off the scrollbar via verticalScrollPolicy=off and add some other way to change verticalScrollPosition From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] How to get selected row in AdvancedDataGrid with Hierarchical Data?

2008-08-08 Thread Djamshed
When you open children in AdvancedDataGrid which uses Hierarchical data, rowIndex in selectedCells does not refer to the ADG's dataprovider index. Here is the example: http://djamshed.googlepages.com/grid.html Source is here: http://djamshed.googlepages.com/Grid.mxml.html Open a child node and