Re: [flexcoders] Flex charting

2009-03-17 Thread Brendan Meutzner
mx:ColumnChart type=stacked On Mon, Mar 16, 2009 at 10:48 PM, kotha poornima poorni_ag...@yahoo.comwrote: Hi, Please find the code below. ?xml version=1.0? !-- charts/BasicColumn.mxml -- mx:Script![CDATA[ import mx.collections.ArrayCollection; [Bindable] public var

[flexcoders] IE6 RemoteObject calls fail under HTTPS

2009-03-17 Thread Rafael Faria
We have tried many many things, and seem to have narrowed it down to the session headers and the cache control. However all most all of the posts and notes around the web seem to get this issue arising with HTTPService calls that spawn a #2032 streaming error and not what we are seeing.

[flexcoders] Disabling internet explorer keys like f5, f1 etc and firing flex application keys

2009-03-17 Thread jitendra jain
Hi friends,     I want to disable internet explorer keys like f5,f1 etc . Also i want to impose key listeners in flex application. Everything works fine in FF, Google chrome etc. IE face problems only when the control is on the application .   Please help. Thanks, with Regards, Jitendra Jain

[flexcoders] Setting Focus on loading application

2009-03-17 Thread sony antony
Hi,Can anyone help me out with this craziness of flex..I need to set focus to my username field when my application gets loaded. While i was tracking this issue, I was caught up in http://bugs.adobe.com/jira/browse/FP-879 . There they specified about some kind of html wrapper code. I dint get

Re: [flexcoders] Setting Focus on loading application

2009-03-17 Thread Toby Tremayne
The issue is that the flash movie itself needs to receive focus before it can put the cursor in your username field. You can achieve this by adding this to your html wrapper (yourproject/html-template/ index.template.html): script language=JavaScript type=text/javascript function

Re: [flexcoders] Flex charting

2009-03-17 Thread kotha poornima
Hi, No, I want full 100% graph with 2 colors in one bar and another 2 colors in one bar for the same key. I hope u got my point. Thanks and Regards, Poornima From: Brendan Meutzner bmeutz...@gmail.com To: flexcoders@yahoogroups.com Sent: Tuesday, March 17,

Re: [flexcoders] How to do images inside of a textarea using htmlText?

2009-03-17 Thread Sefi Ninio
Try htmlText and replace [First Name] with the href of the image. HTH, Sefi On Tue, Mar 10, 2009 at 5:30 PM, tchredeemed apth...@liberty.edu wrote: Basically, I was wondering how I would just put an image inside of the textarea like it was a piece of text... Example:

Re: [flexcoders] how to change alpha of a disabled combobox?

2009-03-17 Thread Sefi Ninio
Have you tried disabledColor or disabledSkin? HTH, Sefi On Wed, Mar 11, 2009 at 10:06 AM, ettorepasquini ettorepasqu...@yahoo.comwrote: in my application i need to disable comboboxes (enabled = false) and change the look of the disabled combo to make it more opaque. Basically I want the

Re: [flexcoders] Question about binding and circular reference

2009-03-17 Thread Wesley Acheson
My problem and I believe enrinne's problem is that when you have two way bindings on a ui control. The initial value of the control is set back in the model. I've seen this on textInput and comboBox. I can create a sample application but I think it would be very similar to the first post in the

[flexcoders] Re: Color icon(s) in tree control

2009-03-17 Thread sandi_krese
Anybody? Please ...

[flexcoders] checkbox and text input

2009-03-17 Thread diana_usim
hye i've got a problem to build my checkbox.i have a checkbox with label IP address and a text input beside it. i want to be able to input any IP address and when i click the checkbox button it will filter the datagrid according to IP address input earlier.it like a combination of

[flexcoders] Nightly build of datavisualization SDK

2009-03-17 Thread linko27
Hello! Is there a nightly build of the datavisualization SDK? I have problems with a memory leak in the charting component and need to update the SDK. Thanks Ron

[flexcoders] Re: Color icon(s) in tree control

2009-03-17 Thread sandi_krese
Below you can read custom TreeItemRenderer, where I'm trying to color defaultleaficon in red (in original it's white square). The last line super.icon = mc; is obviously not valid. Please help me. public class CDSTreeItemRenderer extends TreeItemRenderer {

Re: [flexcoders] Setting Focus on loading application

2009-03-17 Thread sony antony
Hey.. Thanks Toby...That worked.. It was really troubling stuff for me.. Now am almost relaxed..  --- On Tue, 17/3/09, Toby Tremayne t...@lyricist.com.au wrote: From: Toby Tremayne t...@lyricist.com.au Subject: Re: [flexcoders] Setting Focus on loading application To:

[flexcoders] Re: Weired Focus Change behaviour on tab pressing

2009-03-17 Thread valdhor
Binding passes a reference to the object that you are binding. groupName requires a string. You were passing a reference to the radioButton group object to the groupName property. Of course, Flex saw that and invoked the toString() method of the radioButton group object to pass a string to the

[flexcoders] Re: Where can I get more examples using the Flex 3 reference language

2009-03-17 Thread Marius-Remus Mate
You should try Tour de Flex, it's filled with such examples. http://www.adobe.com/devnet/flex/tourdeflex/ --- In flexcoders@yahoogroups.com, fred44455 fred44...@... wrote: Flex 3 reference language offers only 1 example for each different classes. For instance, I will get an example for the

[flexcoders] How to uninstall air application programatically ?

2009-03-17 Thread Krunal Panchal
How to uninstall air application programatically ? Suppose i have air application which has facility to uninstall itself. can it be possible? how? Thanks in advance.   Regards, Krunal Panchal | Senior Software Engineer Tel 91.98795 80689 |

[flexcoders] what can cause stage width and height go negative

2009-03-17 Thread flexwdw
Hey all, I have a baffling situation where the stage.height and the stage.width are going negative (-1.07... in fact). At this time, stageWidth and stageHeight are valid, so I have an initialized stage object. This is occurring in a complex application, and I have not been able to reproduce

[flexcoders] Possible to add a textinput to a TabNavigator (next to the tabs)

2009-03-17 Thread gmoniey22
Hi, I am rather new to flex, so I apologize in advance if the answer is obvious. I have a TabNavigator and I want to place a textinput box all the way to the right. This will be a small search box that will help filter the contents of the currently selected tab. Is this possible? Thanks.

[flexcoders] Re: datefield issue

2009-03-17 Thread max.nachlinger
--- In flexcoders@yahoogroups.com, Greg Morphis gmorp...@... wrote: out of the pan and into the fire I have a datefield and I choose for example April 1, the date saves as 3/31. Greg, Flex / Flash actually remotes dates without consideration of their Timezone offsets (so 4/1/2009 00:00

Re: [flexcoders] Setting Focus on loading application

2009-03-17 Thread Sefi Ninio
Hmm... didn't work for me... On Tue, Mar 17, 2009 at 2:00 PM, sony antony pow_like_me...@yahoo.co.inwrote: Hey.. Thanks Toby... That worked.. It was really troubling stuff for me.. Now am almost relaxed.. --- On *Tue, 17/3/09, Toby Tremayne t...@lyricist.com.au* wrote: From: Toby

RE: [flexcoders] Setting Focus on loading application

2009-03-17 Thread Tracy Spratt
Be aware that this is reliable in IE, but may not work in FireFox. I do not know about the other browsers. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of sony antony Sent: Tuesday,

[flexcoders] flex 3 issue loading fp10

2009-03-17 Thread Gustavo Duenas
I have the fp10 global swc, and when I try to load it inside flex 3, it has a problem, and say that it has a bitcode error, any ideas why? Gustavo

[flexcoders] Item Rendererer Question

2009-03-17 Thread djhatrick
I have custom ItemRenderers, after a filter Function, it looks like my itemRenderers are not being cleared out, I have double the items in my list. How do I make sure they are reset and their visual content is removed after I perform a refresh() Thanks, Patrick

Re: [flexcoders] Issue with Tree in Flex

2009-03-17 Thread duraibalaji
Thank you steve, I'm using expandTree(); to get the first node expanded on creation of the tree. my requirement is to keep the first node open after creation of the tree, there after it will be handled by the user. thanks and Regards DB valdhor-3 wrote: DB I tried your code and saw

Re: [flexcoders] Item Rendererer Question

2009-03-17 Thread claudiu ursica
Can you be more specific? Generally speaking IR are reused so there is a high probability that you still have them in there. In theory you should be filtering the list data provider so that the list will display whatever the provider feeds.. Claudiu From:

RE: [flexcoders] checkbox and text input

2009-03-17 Thread Tracy Spratt
That task has several parts. Which have you done successfully and which do you need help with? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of diana_usim Sent: Tuesday, March 17, 2009

Re: [flexcoders] How to uninstall air application programatically ?

2009-03-17 Thread Jeffry Houser
Krunal contacted me off list w/ the same question. I blogged an answer http://www.jeffryhouser.com/index.cfm/2009/3/17/How-do-I-uninstall-AIR-Applications-Programatically But, in short To do this Formally I think you need to sign up for Adobe's the Runtime Distribution

RE: [flexcoders] Item Rendererer Question

2009-03-17 Thread Tracy Spratt
Renderers are manipulated by the lists and the framework based on the underlying data. Have you verified your dataProvider content? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

RE: [flexcoders] Issue with Tree in Flex

2009-03-17 Thread Tracy Spratt
Ok, but do not do that in the labelFunction. Do it after assigning the dataProvider, probably delayed with callLater(). Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of duraibalaji

Re: [flexcoders] Question about binding and circular reference

2009-03-17 Thread Josh McDonald
I re-read the original post, and it makes sense. I always use change events rather than bindings on the way back from components, which is what I'd recommend rather than two-way bindings. I'm interested to see how the SDK team handles this with the bidirectional binding feature in 4. Another

[flexcoders] Re: flex 3 issue loading fp10

2009-03-17 Thread Darrell Loverin
By load it inside flex 3 do you mean compile with fp10 global swc? To use the fp10 global swc in Flex 3 you should compile with -target-player=10. Also verify you are running the fp10 player, fp9 can't run a swf compiled for fp10. -Darrell --- In flexcoders@yahoogroups.com, Gustavo Duenas

[flexcoders] Re: Debugger can't find framework source

2009-03-17 Thread Darrell Loverin
We are thinking to provide unsigned RSLs with debug information in Flex 4. -Darrell --- In flexcoders@yahoogroups.com, reflexactions reflexacti...@... wrote: Thanks, That makes sense, though it would be nice if in a future version of Flex adobe could provide debugging RSL's as an option,

[flexcoders] FilterFunction

2009-03-17 Thread valdhor
You need to check into a number of things... ArrayCollection: http://livedocs.adobe.com/flex/3/langref/mx/collections/ArrayCollection.\ html You need to know how to filter your data. Here you will find info regarding FilterFunction. CheckBox:

[flexcoders] Re: Possible to add a textinput to a TabNavigator (next to the tabs)

2009-03-17 Thread valdhor
http://livedocs.adobe.com/flex/3/langref/mx/controls/Spacer.html --- In flexcoders@yahoogroups.com, gmoniey22 gmonie...@... wrote: Hi, I am rather new to flex, so I apologize in advance if the answer is obvious. I have a TabNavigator and I want to place a textinput box all the way to the

[flexcoders] OS-dependent mxmlc behavior for fonts?

2009-03-17 Thread pelducci
Hi there, I just recently moved my build machine from a windows box to a linux box, and now my app's fonts (both embedded and not embedded) look different (thicker and overall crappier). My build is done via mxmlc in an ANT script. What can I do about it, short of moving the build machine again?

[flexcoders] Re: IE6 RemoteObject calls fail under HTTPS

2009-03-17 Thread valdhor
Can you post a small example? I don't see this and most (95%+) of our users are on IE6 (This is the current enterprise standard set by our IT department). --- In flexcoders@yahoogroups.com, Rafael Faria rafaelfaria.gru...@... wrote: We have tried many many things, and seem to have narrowed

Re: [flexcoders] Flex charting

2009-03-17 Thread Brendan Meutzner
Poornima, I now see what you mean... sorry, didn't read carefully enough the first time (or look at screenshot :)... What you're looking for doesn't fit the logic with a 100% graph you realize. If I understand correctly, you want a stacked column series which contains two items for each point on

Re: [flexcoders] IE6 RemoteObject calls fail under HTTPS

2009-03-17 Thread Daniel Freiman
Many IE problems are cause by the no-cache header (or lack thereof, I forget which). I also vaguely remember having issues on IE only when settings didn't match up perfectly (ex. using an AMFChannel instead of a SecureAMFChannel with and https address). You might want to throw out your

Re: [flexcoders] Flex charting

2009-03-17 Thread Brendan Meutzner
The bottom example at this link with the BarChart with two different typed series... is this what you're looking for? (assuming that instead of one regular and one stacked, they'd both be stacked)

Re: [flexcoders] Smallest filesize of a swf in Flex 3 is larger then Flex 2?

2009-03-17 Thread Nick Collins
A big part of that reason is that when you attach any library, be it the SDK or an external SWC, as a RSL, it is going to increase the size of a singular app. The reason is that when a library is specified as an RSL, the ENTIRE library gets loaded, not just the parts that are needed, since it

[flexcoders] How to tell when background image is clicked?

2009-03-17 Thread Ken Dunnington
I've got a custom component based on Canvas, and I'm programmatically setting its background-image style to a loaded SWF. I need to be able to differentiate between a click on the background, and a click on any of the other children. WIth no background set, I was using this code: private function

Re: [flexcoders] Question about binding and circular reference

2009-03-17 Thread Wesley Acheson
On Tue, Mar 17, 2009 at 2:38 PM, Josh McDonald j...@joshmcdonald.infowrote: I re-read the original post, and it makes sense. I always use change events rather than bindings on the way back from components, which is what I'd recommend rather than two-way bindings. Yes that is what I was

[flexcoders] Re: converting a Java object into a chart dataprovider

2009-03-17 Thread netdeep
I'll be sending Dates, Strings, and floats. --- In flexcoders@yahoogroups.com, Josh McDonald j...@... wrote: What kind of objects are in your array? -Josh 2009/3/17 netdeep deep...@... In the flex documentation, it shows how to easily create a chart with mxml and a static Array:

[flexcoders] mxmlc.exe and config file?

2009-03-17 Thread markflex2007
I have a AIR application. I try to do this mxmlc.exe -output test.swf test.mxml I get the error: load configuration file c:\flex_sdk\frameworks\flex-config.xml and can not specified class 'mx.core.WindowApplication' for test.mxml. It seem I need change the configuration file to

[flexcoders] Re: Wrap label on Y Axis of graph

2009-03-17 Thread Nate Pearson
Bump, anyone? :) --- In flexcoders@yahoogroups.com, Nate Pearson napearso...@... wrote: I have a bar chart with big descriptions on the Y Axis. I want to be able to wrap the text. I've tried adding br/ to the data but that just cuts off the label on the y-axis (but it wraps it in the

Re: [flexcoders] Setting Focus on loading application

2009-03-17 Thread Rick Winscot
This ground may have been covered already ­ but this is an IE fix only. Firefox doesn¹t doesn¹t let you set focus programmatically to embedded Flash content. It¹s been a long-standing issue with the people at Mozilla. http://groups.google.com/group/mozilla.dev.accessibility/browse_thread/threa

[flexcoders] Re: Possible to add a textinput to a TabNavigator (next to the tabs)

2009-03-17 Thread alinmircea_s
If your component is static and will never change , children will never get removed and no new children will be added you could try an absolute positioning. I do not recommend spacer tho. On the other hand you could try to make your own component , you say that you are new to flex so I guess

Re: [flexcoders] OS-dependent mxmlc behavior for fonts?

2009-03-17 Thread Rick Winscot
Did you move the fonts with you migration or are you relying on system fonts? Are you using TTF or OTF? Do you anticipate regular changes to your font(s)? As an alternative, you could compile your font .swf and then just include it as an asset in your app. Rick Winscot On 3/17/09 9:31 AM,

[flexcoders] Re: Possible to add a textinput to a TabNavigator (next to the tabs)

2009-03-17 Thread gmoniey22
Thanks for the reply...I come from a Java background, so creating a custom component is not scary so to speak...I was just hoping there may be an easier way to do it directly to the TabNavigator instance. Also, out of curiosity, why do you not recommend the spacer?

[flexcoders] Ant and Air package?

2009-03-17 Thread markflex2007
I try to build a Ant auto package function but I do not know why it doesn't work. Any idea,atahnks Mark target name=package if=do.package depends=compile description=Packages AIR application. antcall target=create.certificate / java jar=${adt.jar} fork=true

[flexcoders] Re: Error 'Send Failed' while loading swf file

2009-03-17 Thread gnv_vishwanath
Problem with Server Connectivity - was able to access the application and view the other information. Only its giving problem while rendering flex comp. Can you please give me more clue in finding the solution. --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: NetConnection is

[flexcoders] HTTPService never returning...

2009-03-17 Thread nathanpdaniel
I have an AS3 HTTPService (that is, the HTTPService is all AS3 based, no MXML) which travels off and gets an XML feed, returns and displays the data. There are several (20+) instances where I can click on an item and this happens properly. However, I have 1 (just one) instance where this

[flexcoders] Loading data with ProgressBar

2009-03-17 Thread jerry_gagliano
I want to add a progress bar loader according to the the data being loaded. I am using the Cairngrom framework executing events. Right now I have a timer binded with the loader but i want the progressbar binded according to the data being loaded. Does anyone have an example of this? I tired

[flexcoders] Pb with accordion

2009-03-17 Thread christophe_jacquelin
Hello, Inside an accordion Panel, how to open the other panel of the accordion by a click on a button ? Thank you, Christophe,

RE: [flexcoders] mxmlc.exe and config file?

2009-03-17 Thread Jim Hayes
It's been a while since I set this up, but I have two things that I seem to remember I needed to add to my mxmlc compile task: !-- use AIR config file, not flex one -- load-config filename=${FLEX_HOME}/frameworks/air-config.xml/ and !-- AIR SWC path -- external-library-path

RE: [flexcoders] mxmlc.exe and config file?

2009-03-17 Thread Jim Hayes
It's been a while since I set this up, but I have two things that I seem to remember I needed to add to my mxmlc compile task for AIR: !-- use AIR config file, not flex one -- load-config filename=${FLEX_HOME}/frameworks/air-config.xml/ and !-- AIR SWC path -- external-library-path

RE: [flexcoders] Ant and Air package?

2009-03-17 Thread Jim Hayes
Any error messages? You don't seem to be including any icons, they're not required but if they're specified in the application descriptor you also need to specify them in the ant task or it will fail. I'm only guessing that you might have forgotten them, however - it's possible that you're

[flexcoders] Is there a better way to strikethrough an entire row in a grid?

2009-03-17 Thread gmoniey22
I am looking for a way to strike through an entire row in a grid. Only some rows will have the strikethrough effect. I looked into using item renderers and such, but this seems like more work than it needs to be, since I already have several custom item renderers. Which means I need to add

[flexcoders] Checkbox issue

2009-03-17 Thread secrit.service
Hi all, I have a checkbox (chkMyCheckbox) and added an eventlistener to it. chkMyCheckbox.addEventListener(Event.CHANGE, checkBoxChangeHandler); In the changeHandler I peform the necessary tasks : private funtion checkBoxChangeHandler (evt:Event):void { if (chkMyCheckbox.selected) {

[flexcoders] Re: Possible to add a textinput to a TabNavigator (next to the tabs)

2009-03-17 Thread Tim Hoff
Another way: mx:Canvas mx:TabNavigator width=100% height=100%/ mx:TextInput right=0/ /mx:Canvas -TH --- In flexcoders@yahoogroups.com, gmoniey22 gmonie...@... wrote: Thanks for the reply...I come from a Java background, so creating a custom component is not scary so to speak...I

[flexcoders] Re: How to tell when background image is clicked?

2009-03-17 Thread Tim Hoff
Hi Ken, I'm pretty sure that the target will never be the background image itself; but rather the Canvas. One hack is to check the type: if (evt.target is Canvas) -TH --- In flexcoders@yahoogroups.com, Ken Dunnington ken.dunning...@... wrote: I've got a custom component based on Canvas,

Re: [flexcoders] Re: How to tell when background image is clicked?

2009-03-17 Thread Ken Dunnington
Hi Tim, unfortunately, that's exactly what happens :) If you apply a backgroundImage, the target of the click event will be the FlexLoader instance for that image, or in the case of a SWF, it'll be the actual SWF instance. To make matters worse, the background image is (as far as I've been able to

[flexcoders] Re: Possible to add a textinput to a TabNavigator (next to the tabs)

2009-03-17 Thread alinmircea_s
--- In flexcoders@yahoogroups.com, gmoniey22 gmonie...@... wrote: Thanks for the reply...I come from a Java background, so creating a custom component is not scary so to speak...I was just hoping there may be an easier way to do it directly to the TabNavigator instance. Also, out of

[flexcoders] Adding and removing values from a VAR

2009-03-17 Thread Frank Griffin
I am new to Flex and I am having a problem with maintaining a VAR. Can someone point me to a code sample for a handler that maintains a VAR based on the on change of a checkbox? I think I understand how to add to a VAR but I can't find an example of removing from a VAR. Use Case: I have a

[flexcoders] Re: IE6 RemoteObject calls fail under HTTPS

2009-03-17 Thread valdhor
Can you post a small example? I don't see this and most (95%+) of our users are on IE6 (This is the current enterprise standard set by our IT department). --- In flexcoders@yahoogroups.com, Rafael Faria rafaelfaria.gru...@... wrote: We have tried many many things, and seem to have narrowed

Re: [flexcoders] Re: flex 3 issue loading fp10

2009-03-17 Thread Gustavo Duenas
Thanks Darrel that is what I mean, I've been trying to compile with the fp10 global swc. could you help me out step by step. Regards, gustavo On Mar 17, 2009, at 9:42 AM, Darrell Loverin wrote: By load it inside flex 3 do you mean compile with fp10 global swc? To use the fp10 global swc in

[flexcoders] Re: How to tell when background image is clicked?

2009-03-17 Thread Tim Hoff
Ok, maybe just check it's type: if (evt.target is FlexLoader) -TH --- In flexcoders@yahoogroups.com, Ken Dunnington ken.dunning...@... wrote: Hi Tim, unfortunately, that's exactly what happens :) If you apply a backgroundImage, the target of the click event will be the FlexLoader instance

[flexcoders] Re: Possible to add a textinput to a TabNavigator (next to the tabs)

2009-03-17 Thread alinmircea_s
In case anyone needs a more detailed explanation the need for getTabAt(tabN.numChildren-1). We cannot access tabN.tabBar because of it's protected attribute so we cannot directly get the tabBar's width. That is why we are getting the last-tab's button instance x + witdh , It's the exact width

[flexcoders] Re: Possible to add a textinput to a TabNavigator (next to the tabs)

2009-03-17 Thread gmoniey22
Thanks for your reply...I tried do something similar. As a test case, I just tried to add a label after the tabs have been created. I tried the following: var l:Label = new Label(); l.text = TEST; myTabs.addChild(l); This compiled fine...but when I ran it, nothing showed up. Where would I add

RE: [flexcoders] Checkbox issue

2009-03-17 Thread Tracy Spratt
Look to see if CheckBox supports the valueCommitted event. That fires when the selection is changed programmatically, but click and change only fire on user interaction. Be careful to check for nulls when using this event though. Tracy Spratt, Lariat Services, development services

[flexcoders] Re: Possible to add a textinput to a TabNavigator (next to the tabs)

2009-03-17 Thread gmoniey22
No offense taken...in fact, I appreciate your help. I will start playing around with it. Thanks again. --- In flexcoders@yahoogroups.com, alinmircea_s alinmirce...@... wrote: --- In flexcoders@yahoogroups.com, gmoniey22 gmoniey22@ wrote: Thanks for the reply...I come from a Java

[flexcoders] Re: flex 3 issue loading fp10

2009-03-17 Thread Darrell Loverin
There are just two steps. 1. Update your command line (see below). 2. Install FP10 if you haven't already. If you are compiling from the command line add -target-player=10 to compile with the FP10 API. An FP10 swf will be produced. If you are compiling with Flex Builder add -target-player=10 to

[flexcoders] Flex error (URLRequest) using Ruby on Rails

2009-03-17 Thread tchredeemed
Basically, I have an action upload_attachment in a controller handle_data In flex I call navigateToURL( new URLRequest( serverURL+'handle_data/upload_attachment/?profile_id=46' ) ); This seems to work fine in the following browsers: IE, safari It does not work in: Firefox( mac and pc),

Re: [flexcoders] OS-dependent mxmlc behavior for fonts?

2009-03-17 Thread Peldi Guilizzoni, Balsamiq Studios
Thanks for the reply Rick. I am using 2 TTF files for the embedded fonts, and a system font (Arial) as well. I do not anticipate any change to my fonts, no. Why? I don't really like the SWF option...do you or anyone else know why I'm getting these differences? What part of mxmlc is

[flexcoders] Re: Possible to add a textinput to a TabNavigator (next to the tabs)

2009-03-17 Thread alinmircea_s
After reading your second post with the .addChild I guess this would be helpful. Here it is ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; creationComplete=addTI() mx:Script ![CDATA[ import mx.controls.TabBar;

Re: [flexcoders] OS-dependent mxmlc behavior for fonts?

2009-03-17 Thread Rick Winscot
Do all of your fonts exhibit the same behavior? Trying to isolate an potential rogue elements... You might have figured this one out ­ but Arial on Windows is probably not Arial on Linux. So, no matter what you do use... You need to make sure you are using the exact same .ttf font packages to

Re: [flexcoders] Re: converting a Java object into a chart dataprovider

2009-03-17 Thread Josh McDonald
But what will the objects be that you're sending back? You can't make a chart out of a list of numbers, it'd be one-dimensional, not to mention not very useful :) -Josh 2009/3/18 netdeep deep...@chartertn.net I'll be sending Dates, Strings, and floats. --- In flexcoders@yahoogroups.com

[flexcoders] Re: How to combine various FLV files into one using Flex?

2009-03-17 Thread gilbert_mizrahi
Any one? I hope at least someone can point me to documentation of how to use the ByteArray class with some examples, specifically on how to read a flv with ByteArray. I have search on the forums and googled this, but with no aval. The Flex 3 doc. has only one example which is not useful for

[flexcoders] How to clear cache for all major browsers (IE, Mozilla, Safari and Chrome)

2009-03-17 Thread anuj181
Hi Guys Anyone has any idea which is the best way to clear the cache for my web application (which is made in Flex and PHP), For some reason it keeps on pulling old entries from cache and is confusing user and me with the inconsistent results, I guess that it is pulling values from the cache as

Re: [flexcoders] Setting Focus on loading application

2009-03-17 Thread Toby Tremayne
Actually I'm using it in firefox :) On 18/03/2009, at 12:15 AM, Tracy Spratt wrote: Be aware that this is reliable in IE, but may not work in FireFox. I do not know about the other browsers. Tracy Spratt, Lariat Services, development services available From:

[flexcoders] Security sandbox violation error after upgrade to SDK 3.2

2009-03-17 Thread Tim Hoff
Hi all, I just updated the Flex SDK to version 3.2, and am now getting a Security sandbox violation error everytime that I launch an AIR application from Eclipse. I was wondering if anyone else has run into this and might know of a fix. The stack trace is listed below. Thanks, -TH Error

Re: [flexcoders] JVM segfault (!) running mxmlc on OS X

2009-03-17 Thread Maciek Sakrejda
Anyone? -Original Message- From: Maciek Sakrejda msakre...@truviso.com Reply-to: flexcoders@yahoogroups.com To: flexcoders flexcoders@yahoogroups.com Subject: [flexcoders] JVM segfault (!) running mxmlc on OS X Date: Mon, 16 Mar 2009 17:47:26 -0700 A co-worker of mine recently ran into

RE: [flexcoders] How to clear cache for all major browsers (IE, Mozilla, Safari and Chrome)

2009-03-17 Thread Tracy Spratt
The only reliable, cross platform/browser solution I have seen is to append a unique string to the swf url. Modify the index.template like this: AC_FL_RunContent( src, ${swf}?nocache=+(new Date()).getTime(), It does make that app slow to load every time.

RE: Re: [flexcoders] Issue with Tree in Flex

2009-03-17 Thread duraibalaji
Hi Tracy, yes, you are right, I 've removed it and calling the expandTree from a changewatcher, the function is fine and working as per requirement. i don't see any issues in tree now. Thanks for all giving excellent advices regards DB Tracy Spratt wrote: Yes, a label function should only

[flexcoders] Hi! And a question about installing an AIR app

2009-03-17 Thread Stuart Greenberg
First of all, I'd like to say hi to everyone. I'm new to Flex and happy to find such an active group. I'm developing an AIR application at work and need to deploy it on a few desktops in one of our offices. The users do not have admin rights and the desktop is pretty well locked down. Does

[flexcoders] Re: Checkbox issue

2009-03-17 Thread Stuart Greenberg
The CheckBox does indeed have the valueCommit event and secrit.service will be happy to hear that I verified that it worked. Thanks, Tracy. I'll have to remember that one. -Stu Greenberg GUI Gumdrops http://www.guigumdrops.com --- In flexcoders@yahoogroups.com, Tracy Spratt tspr...@... wrote:

RE: [flexcoders] OS-dependent mxmlc behavior for fonts?

2009-03-17 Thread Peter Farland
Peldi, by system font, do you mean device fonts (i.e. not embedded)? What version of Flex? Are you pointing to a .ttf file using an @font-face CSS rule with a url? If so, and if you're using Flex SDK 3, go into your /frameworks/flex-config.xml and comment out the BatikFontManager from the list

[flexcoders] Re: Smallest filesize of a swf in Flex 3 is larger then Flex 2?

2009-03-17 Thread Darrell Loverin
I don't think RSLs are a bad idea for a single application if you are using signed RSLs (swz files) because they may already be in the Flash Player Cache and therefore not need to be downloaded. But to guarantee your Flash Player can load a signed RSL you will need to require Flash Player

[flexcoders] Re: Smallest filesize of a swf in Flex 3 is larger then Flex 2?

2009-03-17 Thread Darrell Loverin
I don't think RSLs are a bad idea for a single application if you are using signed RSLs (swz files) because they may already be in the Flash Player Cache and therefore not need to be downloaded. But to guarantee your Flash Player can load a signed RSL you will need to require Flash Player

[flexcoders] flex builder 3 update link

2009-03-17 Thread Dimitrios Gianninas
For Flex Builder 3... isn't there an Eclipse update link so I can easily upgrade from 3.02 to 3.03? I swear I've seen this somewhere but can't find it now. Dimitrios Gianninas RIA Developer Team Lead Optimal Payments Inc. -- WARNING --- This electronic message and its attachments may

RE: [flexcoders] HTTPService never returning...

2009-03-17 Thread Peter Farland
Can you try getting an HTTP Sniffer to see what the raw response looks like? Are they HTTPS URLs? Pete -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of nathanpdaniel Sent: Tuesday, March 17, 2009 12:32 PM To:

Re: [flexcoders] Setting Focus on loading application

2009-03-17 Thread Romeo Obane
Thanks for this post :) But I'm quite wondering that it doesn't work in Google Chrome. On Wed, Mar 18, 2009 at 7:44 AM, Toby Tremayne t...@lyricist.com.au wrote: Actually I'm using it in firefox :) On 18/03/2009, at 12:15 AM, Tracy Spratt wrote: Be aware that this is reliable in IE, but

RE: [flexcoders] HttpService headers - age old problem

2009-03-17 Thread Peter Farland
See: http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security.html For POST requests, the confusion probably arises because it was possible to send Authorization headers in the past, but it was added to the list of restricted headers (I don't have the exact version handy, but it might

[flexcoders] Is there any way to globally mute all sounds in an application?

2009-03-17 Thread greg h
Is there any way to globally mute all sounds in an application? I have an application with several short, embedded MP3 sound effects plus NetStream video that has audio. Note: In our application play() is executed programmatically via ActionScript for all Sounds and NetStream videos. My sense is

[flexcoders] Re: Nightly build of datavisualization SDK

2009-03-17 Thread tntomek
--- In flexcoders@yahoogroups.com, linko27 link...@... wrote: Hello! Is there a nightly build of the datavisualization SDK? I have problems with a memory leak in the charting component and need to update the SDK. Thanks Ron There isn't, since DMV is not free so they can't or won't

RE: [flexcoders] Security sandbox violation error after upgrade to SDK 3.2

2009-03-17 Thread Alex Harui
For any run or just profiling? Normally the profiler swf shouldn't be in play. If a profiler session dies it can leave itself in the mm.cfg or whatever your OS equivalent is. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From:

RE: [flexcoders] Pb with accordion

2009-03-17 Thread Alex Harui
Accordion.selectedIndex = n? 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 christophe_jacquelin Sent: Tuesday, March 17, 2009 10:39 AM To:

RE: [flexcoders] Is there a better way to strikethrough an entire row in a grid?

2009-03-17 Thread Alex Harui
If the logic for when you need strikethrough is data-driven, it will probably be worth the work of adding to the renderer. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Error 'Send Failed' while loading swf file

2009-03-17 Thread Alex Harui
Is your server set up to resolve this url properly? 'http://16.25.168.193/shubbuild/messagebroker/amf'' Usually requires an AMF service. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

  1   2   >