[flexcoders] Re: Cursor Error: Bookmark no longer valid.

2009-02-24 Thread luke_lee1124
Hi, Here is my debug result Error: Bookmark no longer valid. at ListCollectionViewCursor/seek()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\collections\ListCollectionView.as:2055] at

[flexcoders] Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
Hi helper, I have a DataGrid and I need to feed its DataProvider dynamically, I have difficulties doing that. my columns: var columns:ArrayCollection = new ArrayCollection(); columns.addItem(parent); columns.addItem(cell1);

[flexcoders] add tooltip in Line chart

2009-02-24 Thread abhishekchess1
hello frnd, plz check theis code ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical verticalAlign=top horizontalAlign=center backgroundGradientColors=0x00,0x323232] paddingTop=0 viewSourceURL=srcview/index.html mx:Script

[flexcoders] Re: Unloading a swf that includes a ViewStack can cause a RTE

2009-02-24 Thread rob_mcmichael
Can anyone help on this? At the moment I am a little stuck? Thanks Rob --- In flexcoders@yahoogroups.com, rob_mcmichael rob_mcmich...@... wrote: Hi Alex, The stack is as follows: === TypeError: Error #1009: Cannot

[flexcoders] Directory for SWF files

2009-02-24 Thread christophe_jacquelin
Hello, Usually the files on a web site are in the directory httpdocs. But the SWF are public in such a case. At which location to put SWF files in a web site ? Thank you, Christophe

[flexcoders] Component/tool required

2009-02-24 Thread venkatesan.M
Hi everybody, I'm currently working on a project which needs autocomplete tool(textbox) i tried making one by myself but dint work out well. can any1 help me out. do any1 have an autocomplete tool/component wher the user can both type his data and also select from the auto list generated when he

[flexcoders] NavBar - setTargetViewStack

2009-02-24 Thread mikeycmccarthy
Hi there, I've written a code behind that manages a ViewStack and a TabBar (it's almost like a PureMVC mediator without actually being a mediator). The ViewStack is the dataprovider of the TabBar. When I try to test this I get the problem that the dataprovider is always null. I've attached

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread bhaq1972
If you want to add columns dynamically, you need something like this var colNum:int=5 for(var i:int=0;icolNum;i++) { var col:DataGridColumn = new DataGridColumn(); col.dataField = some value1; col.headerText = some value2; myDataGrid.columns.push(col); } you'd then generate your

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
Thanks man, I am doing something like you mensioned for columns, my problem is the dataprovider itself that I set to the DataGrid. Can I set it dynamically without the need to set columnName:columnValue statically? To be clear :) My current dataprovider is set accornigly in an Array:

Re: [flexcoders] Directory for SWF files

2009-02-24 Thread Sam Lai
Does it matter if it is public? It has to be accessible to the user if they are to view it anyway. You could make it only available to logged in users, but at the end of the day, if the user wants to download it, they can and there's nothing you can do about it. 2009/2/24 christophe_jacquelin

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread bhaq1972
Can I set it dynamically without the need to set columnName:columnValue statically? Sorry i'm a bit unclear. Another suggestion ... You want to create DatgridColumns based on whats in the DataProvider. If your dataProvider Array is something like the following var myArray:Array =

[flexcoders] adobe air and flex 3.3 - Invoke Event

2009-02-24 Thread Robin Burrer
Hi there, I found this article on the adobe site: http://www.adobe.com/devnet/air/flex/quickstart/startup_options.html The download links don't really work though and it says that you need the version 3.3 of flex sdk to get the example to work. I installed a pre release 3.3 but there's

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
Hi man, I am very sorry to say that I was not clear :( myArray is what I need to create, I dont have it (I just gave as example of what I need to create). This is basically my problem, How to build it based on column array and on data array? Only then I will assign it to the DataGrid Thanks for

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread bhaq1972
Thanks for your time, realy thats okay. Can you send an example of column array and data array? --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: Hi man, I am very sorry to say that I was not clear :( myArray is what I need to create, I dont have it (I just gave as

Re: [flexcoders] Re: Flex Apps on Flash 10 Crashes Browser

2009-02-24 Thread Tom Chiverton
On Monday 23 Feb 2009, Don Kerr wrote: Profiler looks good. Apps with small memory usage and apps with much more, all crash the browser equally. Do you have any 3rd party add ons installed. Try turning them off. Also try with any virus scanner, ad blocker etc. off. Do you know if you have

[flexcoders] Modify image pixels

2009-02-24 Thread christophe_jacquelin
Hello, How to modify directly the pixels of a mx:image / object ? Then how to redraw the modified image. Thank you, Christophe,

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
Hi man, I am very sorry to say that I was not clear :( myArray is what I need to create, I dont have it (I just gave as example of what I need to create). This is basically my problem, How to build it based on column array and on data array? Only then I will assign it to the DataGrid Thanks for

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
Hi, This is my columns: var columns:ArrayCollection = new ArrayCollection(); columns.addItem(parent); columns.addItem(cell1); columns.addItem(cell2); columns.addItem(dummy); let say 3 rows: var data_:ArrayCollection = new ArrayCollection;

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread bhaq1972
Not sure, i'll have a play around. Maybe someone else can take a look. --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: Hi, This is my columns: var columns:ArrayCollection = new ArrayCollection(); columns.addItem(parent);

[flexcoders] Re: HTTPRequest and Air too slow?

2009-02-24 Thread florian.salihovic
Interessting! I will keep that in mind but regarding the fact, that i use JSON and pass just one single param, it seems to be a strange behaviour i recognized. Hm, i'll have some more research to do... --- In flexcoders@yahoogroups.com, Amy amyblankens...@... wrote: --- In

[flexcoders] Select row in Advanced Data Gridprogrammatically for unit test

2009-02-24 Thread menapole
Can someone tell me if it is possible to select a row in an advanced data grid programmatically such that not only is the row selected but the click that would have been dispatched had I done a real click via the UI is also dispatched?

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
Thanks any way... --- In flexcoders@yahoogroups.com, bhaq1972 mbha...@... wrote: Not sure, i'll have a play around. Maybe someone else can take a look. --- In flexcoders@yahoogroups.com, yossi.baram yossi.baram@ wrote: Hi, This is my columns: var columns:ArrayCollection =

[flexcoders] Re: [silvafug] Calling C++ app or service from flex on Mac

2009-02-24 Thread smitade
--- In flexcoders@yahoogroups.com, Shailesh Mangal shailesh.man...@... wrote: Have you looked at Merapi? You can either use JNI with Merapi to call you dll or write similar socket based bridge in C++ -Shailesh On Feb 22, 2009, at 7:50 AM, Priya Shah wrote: Hi everyone, I am

[flexcoders] Quoted Printable decoding in AS3

2009-02-24 Thread sanjay_ruparellia
hey , I m developing application that reads the Gmail Inbox and gets the email. I have problem in decoding Quoted Printable data. I don't know how to decode Quoted Printable encoded data. so can someone help me out in decoding Quoted Printable data in normal string value. Thanks in advanced.

Re: [flexcoders] add tooltip in Line chart

2009-02-24 Thread Adrian Williams
Check out the dataTipFunction abilities. Adrian abhishekchess1 wrote: hello frnd, plz check theis code ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml http://www.adobe.com/2006/mxml layout=vertical verticalAlign=top horizontalAlign=center

Re: [flexcoders] nested viewstack problem

2009-02-24 Thread Tom Chiverton
On Sunday 22 Feb 2009, Derrick Anderson wrote: my app is primarily made up of 2 nested viewstacks and I want to be able to navigate to a child of the inner viewstack from the main application file. Bind selectedIndex to a Model variable, and just twiddle that from code. -- Tom Chiverton

[flexcoders] Re: Modify image pixels

2009-02-24 Thread oneworld95
http://www.imagero.com provides free tools for modifying images in Flex. - Alex C --- In flexcoders@yahoogroups.com, christophe_jacquelin christophe_jacque...@... wrote: Hello, How to modify directly the pixels of a mx:image / object ? Then how to redraw the modified image. Thank

Re: [flexcoders] 3.0.2 Upgrade Causes PieChart dataTipFunction placement to go haywire???

2009-02-24 Thread Tom Chiverton
On Monday 23 Feb 2009, Adrian Williams wrote: Notice that I've captured it when my cursor is over the Haplogroup Charts, mtDNA haplogroups, wedge H. These must be your own components, right ? Do you have a simple test case ? -- Tom Chiverton Helping to elementarily aggregate

Re: [flexcoders] adobe air and flex 3.3 - Invoke Event

2009-02-24 Thread Tom Chiverton
On Tuesday 24 Feb 2009, Robin Burrer wrote: I installed a pre release 3.3 but there's still noreason property in the InvokeEvent. Isn't it out for real now ? If not, I suggest trying again once it is :-) -- Tom Chiverton Helping to carefully target unique materials

[flexcoders] Re: properties and methods of a datagrid from item renderer

2009-02-24 Thread Amy
--- In flexcoders@yahoogroups.com, aceoohay pa...@... wrote: ValidatedCheckBox extends CheckBox. If I do; mx:DataGridColumn itemRenderer=ValidatedCheckBox / How do I set the ValidatedCheckBox properties such as; checkedValue=R uncheckedValue=H click=doHoldRelease(data); So that

[flexcoders] Re: FlexBuilder 3 problem -- dynamic help stops working

2009-02-24 Thread valdhor
I haven't tried this but you could try deleting the help index at: C:\Program Files\Adobe\Flex Builder 3\plugins\com.adobe.flexbuilder.help_3.0.214193\index --- In flexcoders@yahoogroups.com, Anggie Bratadinata anggie.bratadin...@... wrote: Hi, list, I'm having a problem with FlexBuilder 3

[flexcoders] Re: Unloading a swf that includes a ViewStack can cause a RTE

2009-02-24 Thread Amy
--- In flexcoders@yahoogroups.com, rob_mcmichael rob_mcmich...@... wrote: Can anyone help on this? At the moment I am a little stuck? Did you try turning off history management on the inner swf and recompiling it?

[flexcoders] appending a record to xml file

2009-02-24 Thread naresh ch
how to append a recored to external xml file suppose i have 2 or 3 text inputs at user end and i want them to append to an existing external XML file Please share any example if you have or guide me to solve my problem Thanks in advance naresh Check out the all-new Messenger 9.0! Go to

[flexcoders] Re: Best database for Flex

2009-02-24 Thread valdhor
I'd just like to make a small correction here (For anybody that comes across this post at a later date) Wally implies that RemoteObjects can only be used with ColdFusion. This is not correct - RemoteObjects can be used with most any back end server technology (I use PHP with WebORB). Best

[flexcoders] Re: Accordion question - height minus header space

2009-02-24 Thread lanekelly5
I think I have it close using: accordion.height - (accordion.numChildren * accordion_header_height) What I'm finding though is that the calculation comes in roughly 3 pixels too short. If I use the result of the above for my TileList hight (the element that I'm placing in the accordion

[flexcoders] Re: Component/tool required

2009-02-24 Thread azona26
http://developer.yahoo.com/flash/astra-flex/autocompletemanager/ --- In flexcoders@yahoogroups.com, venkatesan.M venky_g...@... wrote: Hi everybody, I'm currently working on a project which needs autocomplete tool(textbox) i tried making one by myself but dint work out well. can any1 help me

[flexcoders] label rotation in chart font size issue

2009-02-24 Thread abhishekchess1
hey frnds, could u help in solving 1 flex chart issue, i have 300*250 size application, in that showing more data like 10 records at X axis, i'm using label rotation for X axis. I found that labels of X axis are not visible properlly, when i write font-size:20 at stylessheet, like @font-face

Re: [flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread Gary Wall
On Tuesday 24 February 2009 12:09:05 yossi.baram wrote: I am doing something like you mensioned for columns, my problem is the dataprovider itself that I set to the DataGrid. Can I set it dynamically without the need to set columnName:columnValue statically? To be clear :) My current

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

2009-02-24 Thread florian.salihovic
I am the only developer in my team who gets this error. Three more people compiled the code successfully. The error appears when i try to access the length property of an ArrayCollection/ListCollectionView. The code is processed recursively. i need to process arround 4000 lines of text which

RE: [flexcoders] Calling C++ app or service from flex on Mac

2009-02-24 Thread Kevin Benz
I have been moving forward with binding C++ objects into AppWeb which allows you to bind native DLL's (C or C++) into a pretty lightweight HTTP Server and calling it with an HTTP client. AppWeb is pretty neat as it has a rudimentary scripting language. K From: flexcoders@yahoogroups.com

[flexcoders] Re: Using Modules and Remote Objects

2009-02-24 Thread cortlandian
Thanks, Alex, this is helpful. Does this also hold true if instead of modules, we used applications i.e. a main application from which swf loaders load other sub-applications. In such a scenario, does the RemoteObject and its value objects still have to be in the main application or can they be

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

2009-02-24 Thread Tom Chiverton
On Tuesday 24 Feb 2009, florian.salihovic wrote: I am the only developer in my team who gets this error. Three more people compiled the code successfully. Well, clearly there is something different about your environment. The error appears when i try to access the length property of an

[flexcoders] Re: XML Parsing - maintaining a record pointer

2009-02-24 Thread Libby
well, this is a sequential file, output from a mainframe and basically I need to start at the top and work my way to the bottom, with frequent look-aheads. I have been trying hard to use e4x but so far have not been successful with getting it to work. apparently there is something about the syntax

[flexcoders] generating codes that users can use to pay for a service

2009-02-24 Thread stinasius
hello guys before i ask this let me say i know that many people will probably suggest using online payment systems like paypal but that is not an option in my case. so this is what i would like to know. i have a website where companies can post ads but before they can post the ad they have to have

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
Hi Gary, Thanks for your reply, I just need a dynamic mechanism that creates this {parent:'root1',col1:100,date:myObject[0],col2:33}, {parent:'root1',col1:5,date:myObject[1],col2:21}, {parent:'root2',col1:11,date:myObject[2],col2:5} dynamically. I have the columns array and all the data in a

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread bhaq1972
Hi jo I've had a little play around with what you gave and came up with the following example. Let us know if this is what you want. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA[ import

[flexcoders] Localization vs. normal assets in Flex Builder

2009-02-24 Thread Borek
My scenario is simple: I use resource bundles to localize UI elements and also want Flex Builder to copy my normal assets to the output dir (for instance, in the /src/assets folder, I have several icons for the AIR app). To my surprise, it seems that I can use either localization or automatic

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
You are great Thanks man, it works like a charm :) --- In flexcoders@yahoogroups.com, bhaq1972 mbha...@... wrote: Hi jo I've had a little play around with what you gave and came up with the following example. Let us know if this is what you want. ?xml version=1.0 encoding=utf-8?

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread bhaq1972
glad I could help. --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: You are great Thanks man, it works like a charm :) --- In flexcoders@yahoogroups.com, bhaq1972 mbhaque@ wrote: Hi jo I've had a little play around with what you gave and came up with

Re: [flexcoders] generating codes that users can use to pay for a service

2009-02-24 Thread Jeffry Houser
Why isn't Paypal an option? Would Google Checkout be okay? Beyond that, you may consider getting a merchant account from your bank and a gateway account (such as Authorize.net ). That is what we did for Flextras.com . Is it worth mentioning that Paypal can act as a 1-stop provider

[flexcoders] A Loaded SWF and ScrollPolicy

2009-02-24 Thread stldvd
Hi guys, I'm using a SWFLoader to load a SWF in two places in a parent app (and the two places are different sizes) and am having trouble with scrollbars. The loaded app is quite simple: Application -- VBox -- List. When a sufficient number of items are added to the list (which is done by the

[flexcoders] Repeaters and databinding

2009-02-24 Thread Jason
Simple question. Why does example 1 below work as expected, but example 2 does not (the Pear checkbox is not added)? I thought repeaters, like other components, responded to changes in the dataprovider through databinding. -- EXAMPLE 1 ?xml version=1.0 encoding=utf-8?

[flexcoders] Can't seem to get Myriad Pro to encode in Flex

2009-02-24 Thread Adrian Gillette
I'm trying to embed couple versions of Myriad Pro into my Flex project: Myriad Pro Semibold Condensed Myriad Pro Semibold Condensed Italic Myriad Pro Condensed I've tried two different methods to embed the fonts using CSS: 1. Using an OTF file. 2. Using a fla file with embedded

[flexcoders] parentDocument variables

2009-02-24 Thread oneworld95
Awhile back, someone on this group mentioned that a good way for a component inside an itemRenderer to access variables in the parentDocument was to use custom events. I've found some info on custom events, but can't quite wrap my brains around how this would work with the itemRenderer's set

[flexcoders] Re: parentDocument variables

2009-02-24 Thread oneworld95
By the way, if there's a better way to do it, please let me know. Thanks :) - Alex C --- In flexcoders@yahoogroups.com, oneworld95 oneworl...@... wrote: Awhile back, someone on this group mentioned that a good way for a component inside an itemRenderer to access variables in the

[flexcoders] MaskedTextInput

2009-02-24 Thread markgoldin_2000
I am trying to implement that control into my application. When an application starts I want to have a control that is based on MaskedTextInput seleted. So, in my init I am saying: badgeid.setFocus(); badgeid would get its border highlighted but a mouse pointer will not be inside of

[flexcoders] Error when adding RTE toolbar to other container

2009-02-24 Thread lanekelly5
I'm trying to use the trick where you remove the toolbar from a RichTextEditor and add it elsewhere. Ideally I'd like to have a single static toolbar that interacts with the TextArea that has focus, but I haven't figured out how to do that yet. Anyway, below is the code I use to add the

[flexcoders] Re: Repeaters and databinding

2009-02-24 Thread sunild999999
Your myData Array needs to be an ArrayCollection. ArrayCollections will dispatch CollectionChange events, Arrays do not. So your repeater never gets notified that an item was added to your Array. Sunil --- In flexcoders@yahoogroups.com, Jason jason.merr...@... wrote: Simple question.

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

2009-02-24 Thread luvfotography
Hi, I want to use the PerspectiveProject class, which is new for flash player 10, If the user is still on player 9, can I skip the perspectiveProject class and not execute it? I want to be able to use my app in both Player 9 and 10, but only use the new functions if the user is running V10. Is

[flexcoders] Unload sound when unloading module... how?

2009-02-24 Thread spinglittery
I am almost done creating a modular application to display my showreel. The main app has a ToggleButton Bar that calls the modules When a new module is called the previous one unloads - except in the radio/audio module, the sound continues to play. When I try and stop it using: if(_modUrl

[flexcoders] Re: Repeaters and databinding

2009-02-24 Thread Jason
Ah, duh - I should've thought of that. Perfect, thanks. --- In flexcoders@yahoogroups.com, sunild99 sunilbd...@... wrote: Your myData Array needs to be an ArrayCollection. ArrayCollections will dispatch CollectionChange events, Arrays do not. So your repeater never gets notified that

[flexcoders] Graph suggestion wanted

2009-02-24 Thread Vik
I have some data which is say quantity for 7 days. this quantity value on 1st day is 1541 and 2nd day say 1543 , 3rd day say 1541 and so for 7 days just varies by 1 or 2 units. I created a line graph to depict. But as the quantity varies to a small value every day so the graph does not look

RE: [flexcoders] Re: parentDocument variables

2009-02-24 Thread Alex Harui
parentDocument should be ready to go in your data setter. Test it like this. override public function set data(value:Object):void { trace(parentDocument); } Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From:

[flexcoders] Re: Can't seem to get Myriad Pro to encode in Flex

2009-02-24 Thread Adrian Gillette
By the way, I used Flash CS4 to create my font swf. --- In flexcoders@yahoogroups.com, Adrian Gillette gille...@... wrote: I'm trying to embed couple versions of Myriad Pro into my Flex project: Myriad Pro Semibold Condensed Myriad Pro Semibold Condensed Italic Myriad Pro Condensed

[flexcoders] graphing flat data in Flex

2009-02-24 Thread siguva
I am looking through the graphing components that come with Flex and they seem straightforward. However, all of the examples use arrays as the data provider where calculations have already been performed. Data is rarely stored in the database that way, so I am wondering how users here obtain those

RE: [flexcoders] Re: Using Modules and Remote Objects

2009-02-24 Thread Alex Harui
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 or data classes in the main app and only have them in the child apps, but it is my understanding that there will be issues if some classes are in

[flexcoders] Re: parentDocument variables

2009-02-24 Thread oneworld95
Thanks, Alex. When would you use a custom event to connect the main Application with an itemRenderer component? - Alex C --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: parentDocument should be ready to go in your data setter. Test it like this. override public function set

[flexcoders] Re: MaskedTextInput

2009-02-24 Thread stldvd
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. -- David --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2...@... wrote: I am trying to implement

[flexcoders] Re: Select row in Advanced Data Gridprogrammatically for unit test

2009-02-24 Thread bobignacio
Try this... Given: 1. The grid's dataProvider is bound to a bindable var named dp [Bindable] private var dp:ArrayCollection; 2. A DataGrid with an id=grid... mx:DataGrid id=grid dataProvider={dp}... 3. Data in the dataProvider are Objects of some sort // To get the target row of the Object //

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

2009-02-24 Thread Keith Hughitt
Does anyone know how to get an accordion to occupy a specified relative height (e.g. 25% of the application) while ensuring that all accordion headers are visible? There are two methods that come pretty close. Both solutions behave exactly as desired when the content of the accordion's first

[flexcoders] Re: Unloading a swf that includes a ViewStack can cause a RTE

2009-02-24 Thread rob_mcmichael
Wow that was obvious! Silly me. Thanks Amy! Rob --- In flexcoders@yahoogroups.com, Amy amyblankens...@... wrote: --- In flexcoders@yahoogroups.com, rob_mcmichael rob_mcmichael@ wrote: Can anyone help on this? At the moment I am a little stuck? Did you try turning off

[flexcoders] swfLoaded charts dataTips lose parent container boundaries -- WAS: 3.0.2 Upgrade Causes PieChart dataTipFunction placement to go haywire???

2009-02-24 Thread Adrian Williams
OK, after a half day of waste on this, I've narrowed down the problem that I am having with my pie chart dataTips. It seem most likely that the problem exists somewhere in changes that were made to the swfLoader code between v3.0 and v3.2. When I have my charts loaded via a swfLoader into a

[flexcoders] Re: MaskedTextInput

2009-02-24 Thread markgoldin_2000
O, that's not good. --- In flexcoders@yahoogroups.com, stldvd stl...@... 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. -- David --- In

[flexcoders] Anyone have issue with AIR updater on Mac OSX

2009-02-24 Thread Rick Schmitty
I'm using the ApplicationUpdaterUI component to manage updates. The update process works perfectly on windows, however on OSX the update window merely flashes very quickly once and goes straight to the app no errors detected, thus not allowing the user to ever update. Again works fine on windows

[flexcoders] PopUp jumping around.

2009-02-24 Thread flexaustin
So I have this PopupManager, in my flex app, that creates a popup on the main screen of the application, but I have an eventlistener set on the main application, which calls a function that tells the Popup to follow the x,y of a sprite a couple displayobjects deep in the displaylist. So a visual

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

2009-02-24 Thread Tim Hoff
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 Entry 1 width=100% / -TH --- In flexcoders@yahoogroups.com, Keith

[flexcoders] Re: Graph suggestion wanted

2009-02-24 Thread Tim Hoff
Hi Vic, Since the variance over time doesn't change significantly, a time-based line chart doesn't appear to be that useful. It seems that you are really just displaying the relationship between products A, B and C. For something like this a simple bar chart works well. To make the chart more

[flexcoders] Re: generating codes that users can use to pay for a service

2009-02-24 Thread alinmircea_s
--- In flexcoders@yahoogroups.com, stinasius stinas...@... wrote: hello guys before i ask this let me say i know that many people will probably suggest using online payment systems like paypal but that is not an option in my case. so this is what i would like to know. i have a website where

[flexcoders] Re: Can't seem to get Myriad Pro to encode in Flex

2009-02-24 Thread ross_w_henderson
Hi, Adrian. I had a terrible time with this a few months back, but finally got it all figured out. If you can post exactly what you're including in your FLA (that's the way I ended up doing it), and exactly what you're including in your font declarations, I think I can help you get this cleared

[flexcoders] Re: MaskedTextInput

2009-02-24 Thread huu...@ymail.com
This *is* possible. In your html-template directory, locate the index.template.html file. In the file, locate these lines of code (should be around Lines 90-thru-100, assuming you haven't modified this file): == CODE === } else { // flash is too old or we can't detect the plugin

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

2009-02-24 Thread florian.salihovic
HI Tom my friend ;) I actually just found one difference after reinstalling everything and got myself a fresh new version of the sources from the repository - the only differnce is the operating system. I actually process the datastructure recusively and use the ArrayCollection - untill the

[flexcoders] Gumbo: states Could not resolves states to a component implementation.

2009-02-24 Thread flexaustin
I am inside a custom component and I am getting could not resolve states to a component implementation. See code below. ?xml version=1.0 encoding=utf-8? fig:CalloutContainer xmlns:fig=com.adobe.wheelerstreet.fig.callout.* xmlns=http://ns.adobe.com/mxml/2009;

[flexcoders] Re: Gumbo: states Could not resolves states to a component implementation.

2009-02-24 Thread flexaustin
Fixed! Namespace conflict inside a custom component. Changed to the following if anyone else has the issue. ?xml version=1.0 encoding=utf-8? fig:CalloutContainer xmlns:fig=com.adobe.wheelerstreet.fig.callout.* xmlns=http://ns.adobe.com/mxml/2009;

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

2009-02-24 Thread Alex Harui
Different platforms may have different stack sizes. You might have to flatten your algorithm. 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] Re: parentDocument variables

2009-02-24 Thread Alex Harui
Me personally? Probably never. 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 oneworld95 Sent: Tuesday, February 24, 2009 10:18 AM To:

[flexcoders] Re: MaskedTextInput

2009-02-24 Thread markgoldin_2000
Yep, that worked, thanks a lot!!! --- In flexcoders@yahoogroups.com, huu...@... huu...@... wrote: This *is* possible. In your html-template directory, locate the index.template.html file. In the file, locate these lines of code (should be around Lines 90-thru-100, assuming you haven't

[flexcoders] Re: Anyone have issue with AIR updater on Mac OSX

2009-02-24 Thread Marcello Teodori
Same here, on Leopard we've solved waiting a little timeout before dispatching the initialiazed event... I guess it's a bug... // Once initialized, wait timeout (workaround for late event) then run onUpdate appUpdater.addEventListener(UpdateEvent.INITIALIZED,

[flexcoders] Setting Consumer Selector On BlazeDS Server

2009-02-24 Thread Daniel Freiman
Is there any way to have the server set the selector for the consumer? It looks like you should be able to intercept the subscribe commandmessage and override the headers, but that isn't working. Alternately, I have users that are in groups and I want any message that is sent to a group to be

Re: [flexcoders] Re: generating codes that users can use to pay for a service

2009-02-24 Thread Sam Lai
On behalf of your future customers, please don't - having to enter long Windows product keys every now and then is painful enough. A random 8 digit number should be plenty given that once a code has been used, it can be reused for another purchase. 2009/2/25 alinmircea_s alinmirce...@yahoo.com:

[flexcoders] Stopping a Line Series on a Line Graph

2009-02-24 Thread c_higgon
Can anyone help me figure out how to stop a line from being drawn on a line graph after a certain date has been reached? I currently have a line graph that shows cumulative planned activities counts and cumulative actual completed activities counts. However, once the actual completed line

RE: [flexcoders] Re: XML Parsing - maintaining a record pointer

2009-02-24 Thread Tracy Spratt
Both XMLList and XMLListCollection can be accessed by index. Tracy From: flexcoders@yahoogroups.com on behalf of Libby Sent: Tue 2/24/2009 10:07 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: XML Parsing - maintaining a record pointer well, this

RE: [flexcoders] Re: Accordion question - height minus header space

2009-02-24 Thread Tracy Spratt
Yes, most all layout containers have default padding. Tracy From: flexcoders@yahoogroups.com on behalf of lanekelly5 Sent: Tue 2/24/2009 9:44 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Accordion question - height minus header space I think I

RE: [flexcoders] appending a record to xml file

2009-02-24 Thread Tracy Spratt
What server platform and language are you using to read/write on the server file system? From: flexcoders@yahoogroups.com on behalf of naresh ch Sent: Tue 2/24/2009 9:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] appending a record to xml file

RE: [flexcoders] NavBar - setTargetViewStack

2009-02-24 Thread Tracy Spratt
Consider binding the dataProvider instead of assigning it. Tracy From: flexcoders@yahoogroups.com on behalf of mikeycmccarthy Sent: Tue 2/24/2009 4:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] NavBar - setTargetViewStack Hi there, I've written

RE: [flexcoders] combo box help

2009-02-24 Thread Tracy Spratt
Have a change handler on the ComboBox get the key value form the selectedItem and invoke an RPC call (protocol of you choice) aganst the server platform, passing in the key value. Have the backend query the database using the key, and return the value to Flex via a result handler. Have that

[flexcoders] Re: Stopping a Line Series on a Line Graph

2009-02-24 Thread Tim Hoff
Hi Chris, You might try using a custom LineRenderer. In the updateDisplayList method, look at GraphicsUtilities.drawPolyLine(). It might be a little tricky, but you could manipulate the _lineSegment.items and _lineSegment.end parameters; to truncate the line at the desired position. -TH ---

[flexcoders] Overiding Hide effect? I want to hide immediately

2009-02-24 Thread luvfotography
Hi, I've got a hideEffect on a label with a duration of 4 seconds. When I set the visible=false on the label, it takes 4 seconds to fade away. Is there a way to make it disappear immediately in some cases? I need this to also work in the middle of the fade effect. thanks,

[flexcoders] Re: property editor component

2009-02-24 Thread Tracy Spratt
I don't know of a component, but i implemented a property editor several years ago. the core is the input item REnderer. Here is the code, maybe it will help Tracy mx:VBox xmlns:mx=http://www.adobe.com/2006/mxml; xmlns=* width=100% horizontalAlign=right verticalAlign=middle

[flexcoders] Re: property editor component

2009-02-24 Thread Tracy Spratt
Where will the dataProvider come from? --- In flexcoders@yahoogroups.com, Sefi Ninio sefi.ni...@... wrote: Okay, how about this: When defining a combo box as an itemEditor, and specifying the editorDataField - How can I specify the combo box dataProvider? I can use the model to bind a dp to

Re: [flexcoders] Re: Anyone have issue with AIR updater on Mac OSX

2009-02-24 Thread Rick Schmitty
Thanks Marcello, that definitely wouldn't have been something I would thought to try :) On Tue, Feb 24, 2009 at 5:33 PM, Marcello Teodori marcello.teod...@gmail.com wrote: Same here, on Leopard we've solved waiting a little timeout before dispatching the initialiazed event... I guess it's a

  1   2   >