Re: [flexcoders] Refreshing Project

2008-10-21 Thread jitendra jain
Which IDE you are using... If you are using Flex Builder then try to delete bin-debug folder. It will help Thanks, with Regards, Jitendra Jain From: Guilherme Blanco [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, 21 October, 2008

Re: [flexcoders] Refreshing Project

2008-10-21 Thread jitendra jain
May be your browser is using cache. Try to clean it also.. Thanks, with Regards, Jitendra Jain From: jitendra jain [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, 21 October, 2008 11:37:48 AM Subject: Re: [flexcoders] Refreshing Project

Re: [flexcoders] Re: Which style name control the color

2008-10-21 Thread jitendra jain
I'm damn sure iconColor will work CheckBox { iconColor: #ff; } Thanks, with Regards, Jitendra Jain From: itdanny2002 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, 21 October, 2008 8:42:03 AM Subject: [flexcoders] Re: Which style

Re: [flexcoders] Re: Increase in swf size when upgraded to FlexSDK3

2008-10-21 Thread jitendra jain
Shailesh, Read this linkhttp://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:Flex_3_RSLs Thanks, with Regards, Jitendra Jain From: Shailesh Mangal [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, 21 October, 2008 7:42:42 AM

[flexcoders] Re: Repeater control and custom Component

2008-10-21 Thread lysfael
Hello all, Finally i decided to do the components myself. It's easier for me like that than using the repeater. Finally the repeater isn't that powerful component as i though. When you wanna do something very generic it doesn't fit to your application anymore. Thanks all for the help. I know

Re: [flexcoders] Re: Repeater control and custom Component

2008-10-21 Thread jitendra jain
Can u paste some code what are you trying to do. Do this favour.. I want to work on it Please... I have used Repeater component and its the best to use.. Thanks, with Regards, Jitendra Jain From: lysfael [EMAIL PROTECTED] To:

Re: [flexcoders] Re: Still no one knows ? Please help.

2008-10-21 Thread Paul Andrews
Build a very small example, then post it here. Paul - Original Message - From: itdanny2002 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, October 21, 2008 4:21 AM Subject: [flexcoders] Re: Still no one knows ? Please help. I have tried but not success. Please note

[flexcoders] Re: passing data with custom event up displaylist chain?

2008-10-21 Thread Mic
Thanks Maciek

Re: [flexcoders] Re: How can I make an ItemRenderer on a Datagrid react to a row selection?

2008-10-21 Thread jitendra jain
Use this method and put the stuff inside this function. Here the Object is a row override public function set data(value :Object){ super.data = value; // your code // your code } Thanks, with Regards, Jitendra Jain From: Tim Hoff [EMAIL PROTECTED] To:

[flexcoders] Re: Alert.show - Detect when closed from another mxml component

2008-10-21 Thread fotis.chatzinikos
Hm, I am doing something similar in some item renderers (Have in mind that there might be an easier / better way i am still learning this): I can think of two ways 1) (simple and dirty): Register the callback and in the callback call a function on the other component that you are interested:

[flexcoders] Re: Alert.show - Detect when closed from another mxml component

2008-10-21 Thread fotis.chatzinikos
Forgot to mention that (1) is 'dirty' because you will need to pass a reference of component B to component A on initialization, so component A knows about B, something similar to: componentA script [Bindable] componentBReference:ComponentB ; /script componentA/ ... application

[flexcoders] Re: z property in mx.core.UIComponent

2008-10-21 Thread fotis.chatzinikos
Hello geng, i have seen the link thanks. Interesting staff, and Flash 10 supports peer-to-peer connections as well this makes me think multiplayer games and other cool staff such as audio/video (via webcam) player collaboration and anything else you might think. --- In

Re: [flexcoders] Alert.show - Detect when closed from another mxml component

2008-10-21 Thread claudiu ursica
Suposedly you'd have a data model in there, in you app, you can hold a boolean value and set it to true everytime you call Alert show and set it to false on close. In your other mxml just check that property of the model and you're done. (Not sure it is the best way to do it though.). HTH,

Re: [flexcoders] Temporarily block tabbing into a Container

2008-10-21 Thread Fotis Chatzinikos
Can you add a keyboard handler and 'eat' the keyboard event until you need the tabbing functionality again, where you remove the 'eating' handler? On Tue, Oct 21, 2008 at 8:04 AM, reflexactions [EMAIL PROTECTED]wrote: I want to block the user from being able to tab into all controls in a

[flexcoders] Can Air access the command line

2008-10-21 Thread Jonnie Spratley
Lets say I had an air application that I wanted to execute ruby statements on the ruby.exe program. Could I send arguments to the systems command line?

[flexcoders] Re: Refreshing Project

2008-10-21 Thread fotis.chatzinikos
I always have a string somewhere visible that says version 0.9.7.a, then b, c etc... IE nearly always caches, and firefox 3 is even worse :-) It never caches until it decides to do so 3 in the morning when you have forgot everything about caching and starting beating yourself on the head debugong

Re: [flexcoders] Can Air access the command line

2008-10-21 Thread Josh McDonald
Not yet, unfortunately. On Tue, Oct 21, 2008 at 6:17 PM, Jonnie Spratley [EMAIL PROTECTED]wrote: Lets say I had an air application that I wanted to execute ruby statements on the ruby.exe program. Could I send arguments to the systems command line? --

[flexcoders] drag drop invokes click handler of dragged compoent

2008-10-21 Thread prashant194
Is there any way i can strop the click handler of the dragged component being fired when the component is dragged and dropped over other region? I want the click handler to work only on non drag operation i.e. when the component is clicked only and i want to stop click handler from fired when

Re: [flexcoders] Re: Refreshing Project

2008-10-21 Thread jitendra jain
I noted this issue manytimes while I'm running debugger. Look like it uses cache once debugging is enabled. Your problem got solved or not??  Thanks, with Regards, Jitendra Jain From: fotis.chatzinikos [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] Are my eyes painted on, or is FormItem not available in design mode?

2008-10-21 Thread Michael Schmalle
Hi Josh, It's hard coded into the Flex Builder java code. They figured since they thought it only needed to be in a form that they would remove it from the components panel (hard coded) and add it majikly when a designer dropped a control into a form (container). Seems like this is creating your

[flexcoders] Re: Still no one knows ? Please help.

2008-10-21 Thread itdanny2002
Please check the code: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute backgroundGradientAlphas=[1.0, 1.0] backgroundGradientColors=[#33, #33] mx:Script ![CDATA[ [Bindable] private var setData:Array = [ {label:Menu,

Re: [flexcoders] drag drop invokes click handler of dragged compoent

2008-10-21 Thread jitendra jain
I don't understand your question. How can you start dragging without clicking? Please make it very clear what you want... If possible give an example..  Thanks, with Regards, Jitendra Jain From: prashant194 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] mouse wheel behaviour mxml and actionscript based components

2008-10-21 Thread Michael Schmalle
Hi, Usually the reason for no mouse wheel events is a lack of background color. Can you give some examples (mxml/as) of what 'doesn't' work for you? Anyway, you need a background color for the control to broadcast mouse wheel events. Other than that it's just a guess what the problem could be

[flexcoders] How to use flash component with timeline to skin Flex application ?

2008-10-21 Thread Adnan Doric
Hello, I have a flash file containing one class MyFlashClass, a simple MovieClip with a timeline. I use it in my Flex application as standalone component : local:MyFlashClass id=myFlashClass / Now I can control its timeline using : myFlashClass.gotoAndStop( n ); Fine ! The problem is I don't

[flexcoders] actionscript made canvas scrollpolicy problems-similar to previous vbox problem

2008-10-21 Thread fotis.chatzinikos
Hello again, this time i am trying to create a canvas inside a canvas with their scroll policies set to off - It does not work -again... I tried both: setStyle(verticalScrollPolicy,off) setStyle(verticalScrollPolicy,ScrollPolicy.OFF) I assume that the second line is the correct code to use?

Re: [flexcoders] Re: Still no one knows ? Please help.

2008-10-21 Thread Michael Schmalle
Hi, I see what you r problem is now, You need to change these icons (styles); radioIcon, radioDisabledIcon, checkIcon, checkDisabledIcon. You see the default.css is; radioIcon: Embed(source=Assets.swf,symbol=MenuRadioEnabled); That will solve your problem. Mike On Tue, Oct 21, 2008 at 5:58

Re: [flexcoders] actionscript made canvas scrollpolicy problems-similar to previous vbox problem

2008-10-21 Thread Michael Schmalle
Hi, Consult the ASDoc (API), you are trying to set properties with styles. This won't work. The correct implementation is; myContainer.verticalScrollPolicy = ScrollPolicy.OFF; Mike On Tue, Oct 21, 2008 at 6:19 AM, fotis.chatzinikos [EMAIL PROTECTED] wrote: Hello again, this time i am

Re: [flexcoders] what is a String? (default encoding question)

2008-10-21 Thread Tom Chiverton
On Friday 17 Oct 2008, Pan Troglodytes wrote: The reason I ask is because I'm reading some string data in from a binary file and Some ? A large amount ? How large ? -- Tom Chiverton Helping to centrally deploy high-end dynamic fourth-generation open-source action-items

Re: [flexcoders] Re: flex and oracle

2008-10-21 Thread Tom Chiverton
On Monday 20 Oct 2008, Anthony DeBonis wrote: You would not want to make a direct Oracle connection from Flex – old Client/Server technology does not work over the Intranet. web applications are the perfect example of a client/server technology, aren't they ? -- Tom Chiverton Helping to

Re: [flexcoders] Are my eyes painted on, or is FormItem not available in design mode?

2008-10-21 Thread Josh McDonald
Yeah, I eventually figured that out. Unfortunately it only seems to work 100% when dragging from the palette, not from a bunch of existing components into a form :-/ -Josh On Tue, Oct 21, 2008 at 7:56 PM, Michael Schmalle [EMAIL PROTECTED]wrote: Hi Josh, It's hard coded into the Flex Builder

[flexcoders] [flex-coders] RemoteObject synchronism problem

2008-10-21 Thread Eduardo Souza
Hello everyone, I'm trying to build a RemoteObject DAO using AS3, but now I got a big problem. AS3 is a Script language, what it means? AS3 have a bad feature when we talk about synchronism. What's the problem? Example: First I've one MXML file wich have our RemoteObject object: ?xml

Re: [flexcoders] [flex-coders] RemoteObject synchronism problem

2008-10-21 Thread shaun
Hi Eduardo, Eduardo Souza wrote: [snip] What can I do? The asynchronous calls are something you'll have to get used to, but don't worry there is plenty of information about how it all works. I suggest reading the developer guide to begin with. Basically. mx:RemoteObject id=RO_User

[flexcoders] Re: flex and oracle

2008-10-21 Thread Anthony DeBonis
Yes - good point but I should have been clearer. I was thinking about my experience with PowerBuilder and VB type application with direct DB connection being held open. There are many examples of connecting to get data for Flex but because of the sandbox of the browser we can't (easily)

[flexcoders] Bindable popupmanager

2008-10-21 Thread Giro
Is possible for example to make a input with a bindable text, but this text content come from another input text inside a component thas is used as popup? Thanks Giro

[flexcoders] XML data problem

2008-10-21 Thread markgoldin_2000
When I am setting an XML dataProvider for a DG and that xml has 1 as a value the DG shows true instead of 1. Why that's happening? Thanks

[flexcoders] Forcing Flex to not cache images

2008-10-21 Thread oneworld95
Hi. I've got a Flex app that communicates with a Java servlet to enable image file uploads. The user clicks in a Flex DataGrid row's button to select an image file and then clicks an Upload button to send the file to the server. I'd like to have the image in the row updated to use the one the user

[flexcoders] Flex connection to Oracle 10g PL/SQL

2008-10-21 Thread tphilp74
Just began looking at Flex 3. Was wondering how do you go about running a Flex app having it connect to Oracle, passing SQL queries, binding fields, dropdowns and datagrids to a specified table. I have already set up a db connection using a JDBC Oracle thin driver in the Flex 3 Builder, and I can

Re: [flexcoders] Bindable popupmanager

2008-10-21 Thread Michael Schmalle
Hi, You can create a bindable model class, the bind this classes popupText to each of your TextInput.text properties. Mike class Model { [Bindable] public var sharedText:String = ; } ... your control (not popup) mx:TextInput id=controlInput text={Model.getInstance().sharedText}/ ...

[flexcoders] Re: HTML real caret position

2008-10-21 Thread xmrcivicboix
Daniel, Any idea why this would happen? I enter the text below, placed my cursor. Text I Entered [PLACED MY CURSOR HERE]; Then I used textArea.getTextField().replaceSelectedText(SOME TEXT); trace(textArea.htmlText) or trace(textArea.text). Got back where I entered and not the text SOME TEXT

[flexcoders] postgresql java resultset date column

2008-10-21 Thread madeiras82
A java ArrayList of a LinkedHaskMap from a postgresql resultset is returned to Flex 3.0.1 to fill a DataGrid. One of the columns is a date. On one computer it subtracts 1 day form the date and on another it is correct, it always does this. Both computers have the same flash version and

RES: [flexcoders] Temporarily block tabbing into a Container

2008-10-21 Thread Luciano Manerich Junior
You may use the event keyFocusChange and prevent it: this.addEventListener(FocusEvent.KEY_FOCUS_CHANGE, keyFocusChangeHandler); protected function keyFocusChangeHandler(event:FocusEvent):void { event.preventDefault(); } -Mensagem original- De: flexcoders@yahoogroups.com

[flexcoders] interpolateValues with minimum and maximum

2008-10-21 Thread Andy
Hi, I am attempting to create a LineChart where a user can select an area of the chart to zoom in on that area of the chart. To accomplish this I am setting the minimum and maximum values on the horizontal/vertical axes representing the area the user selected. I am also using

[flexcoders] reading problem from local shared object

2008-10-21 Thread Gökhan
Hi, I am trying to pass data between multiple mxml applications with using local shared object. It writes to sharedObject(parameterCookie) but when i try to read data from object it gets nothing. What is wrong with this code ? Thanks, Gokhan. Write.as private var myLSO:SharedObject;

[flexcoders] Hiding lineseries in a chart

2008-10-21 Thread seona.bellamy
Hi guys, I'm new to the list, and pretty new to Flex as well. I've been learning as I go while working on a project, so I'm not sure if I'm doing everything the most elegant way possible, but I'm hoping to refine it as I go. :) Anyway, I've hit a problem that I just can't seem to find my way

[flexcoders] Flash, tomcat and ssl

2008-10-21 Thread matterule
Hi, I have a flex application that do a webservice call to a ssl-secure tomcat server. The login to the webservice is basic authorization that is sent via http header. The crossdomain.xml on the server looks like this: cross-domain-policy site-control permitted-cross-domain-policies=all/

[flexcoders] Re: XML data problem

2008-10-21 Thread oneworld95
Flex is thinking the value is a Boolean (where 1 = true and 0 = false). You might be able to use a labelFunction to return a string value back to the column or a formatter for that column. --- In flexcoders@yahoogroups.com, markgoldin_2000 [EMAIL PROTECTED] wrote: When I am setting an XML

Re: [flexcoders] Increase in swf size when upgraded to FlexSDK3

2008-10-21 Thread Tom Chiverton
On Tuesday 21 Oct 2008, Shailesh Mangal wrote: Is this typical with Flex 3? Nope. Exactly what are your compiler arguments and modules (if any) ? -- Tom Chiverton Helping to preemptively embrace seamless unique eigth-generation end-to-end action-items

Re: [flexcoders] Temporarily block tabbing into a Container

2008-10-21 Thread Paul Andrews
Besides the mechanics of this, you should change the appearance of the tab to indicate that it's not available for use, otherwise the user may think there's a fault with the application if there's no clear indicator. Paul - Original Message - From: reflexactions [EMAIL PROTECTED] To:

[flexcoders] Re: sailorsea21 - RemoveChild question.

2008-10-21 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Try the debug approaches I suggested. Tracy Please trim. Remember, digest is a perfectly valid way to get this newsgroup :-).

[flexcoders] Re: How can I make an ItemRenderer on a Datagrid react to a row selection?

2008-10-21 Thread Amy
--- In flexcoders@yahoogroups.com, João [EMAIL PROTECTED] wrote: I solved it by implementing the IDropInListItemRenderer and listening to DataGrid(listData.owner).addEventListener(ListEvent.CHANGE, listChangeHandler) It's not a best practice, but for now it's enough. You might find

[flexcoders] Re: Repeater control and custom Component

2008-10-21 Thread valdhor
I'm afraid I don't agree with you. The repeater is very useful and I have used it many times. I would argue that you don't know the repeater well enough to condemn it. Perhaps working with it some more would change your mind. --- In flexcoders@yahoogroups.com, lysfael [EMAIL PROTECTED] wrote:

[flexcoders] Re: sailorsea21 - RemoveChild question.

2008-10-21 Thread sailorsea21
Hi Tracy, These are the errors I received in the debug: _aChildren[iIndexClicked] = errors during evaluation No such variable: undefined but the _aChildren variable is set as follows: private var _aChildren:Array=[]; and the iIndexClicked variable is set as

Re: [flexcoders] Case sensitive XML?

2008-10-21 Thread Daniel Freiman
Yeah, you can also use expressions or concatenation but I'm guessing this could be very inefficient: var node:XML = xmlDoc.decendants().(localName().toLowerCase() = param).(@name.toLowerCase() == movie); var node:XML = (xmlDoc..param + xmlDoc..PARAM).(@name == movie || @name == MOVIE); - Daniel

Re: [flexcoders] Re: HTML real caret position

2008-10-21 Thread Daniel Freiman
Vaguely. TextArea keeps all the values of the TextField cached. So when you edit the TextField directly, you're probably not affecting the TextArea. I don't immediately see a way around this. All the methods you would need access to in order to refresh the TextArea properties seem private.

[flexcoders] Re: Repeater control and custom Component

2008-10-21 Thread lysfael
Ok, i'll pass you a prototype of the datas, and just use them with the repeater. You code have to be generic. I mean, it doesnt have to depend on the comp you have in the repeater. lg ID=F0010_T0056-0 c ID=F0010_49-0/c c ID=F0010_50-11/c c ID=F0010_48-0OUV/c /lg lg

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-21 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Haykel BEN JEMIA haykelbj@ wrote: Could you post a working example? This would really interest me! I'll try to make time tonight :-). I updated my GroupingFunction example to show this

RE: [flexcoders] reading problem from local shared object

2008-10-21 Thread Keith Reinfeld
Gökhan, I hope this helps: Read.as private var myLSO:SharedObject; private var p_name:String; myLSO=SharedObject.getLocal(parameterCookie); // Was myLSO created? if (myLSO==null) { // myLSO was not created Alert.show(cannot create shared object ); }else{ //

[flexcoders] Re: actionscript made canvas scrollpolicy problems-similar to previous vbox problem

2008-10-21 Thread fotis.chatzinikos
Thanks Mike :-) My mistake again... I usually try with the property first and if i that the property is not there i go for the style...Somehow i went to step 2 directly here, and then googling for setstyle(horizontalScrollPolicy) made it even worse... Thanks again Fotis --- In

Re: [flexcoders] what is a String? (default encoding question)

2008-10-21 Thread Pan Troglodytes
Thousands of rows of columnar data. Doesn't really matter, though. The help for both readUTF and readMultiByte says: Returns String — UTF-8 encoded string. So no matter what I do, it appears the ByteArray can only return UTF-8 anyway. Considering this, I might as well write it to the file

Re: [flexcoders] Hiding lineseries in a chart

2008-10-21 Thread Richard Rodseth
I forget whether it's called visible or something else, but there is a property for this. I have successfully bound this to a boolean model variable and controlled it with a checkbox. In my case there *is* data. On Mon, Oct 20, 2008 at 8:28 PM, seona.bellamy [EMAIL PROTECTED] wrote: Hi guys,

[flexcoders] I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread tchredeemed
/Library/Internet Plug-Ins/Flash Player.plugin Flex Builder cannot locate the required debugger version of Flash Player. You might need to install the debugger version of Flash Player 9 or reinstall Flex Builder. Do you want to try to debug with the current version? I got this error before,

Re: [flexcoders] I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread Toby Ashley
I had this at the weekend, presumably some kind of update also caused it. The easy solution for me was... reinstall the debug version of the Player. Worked fine afterwards. On Tue, Oct 21, 2008 at 4:06 PM, tchredeemed [EMAIL PROTECTED] wrote: /Library/Internet Plug-Ins/Flash Player.plugin

Re: [flexcoders] I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread Fotis Chatzinikos
Same here, get it here (v 9 or 10): http://www.adobe.com/support/flashplayer/downloads.html you might need to manually uninstall your current player prior to this depending on OS i believe, but give it a go first, and if you get problems uninstall and reinstall the new version On Tue, Oct 21,

Re: [flexcoders] Hiding lineseries in a chart

2008-10-21 Thread Andy Buttaro
Try using a filter function on the ArrayCollection. http://livedocs.adobe.com/flex/3/langref/mx/collections/ListCollectionView.html#filterFunction - Original Message From: Richard Rodseth [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, October 21, 2008 10:49:12 AM

[flexcoders] Re: postgresql java resultset date column

2008-10-21 Thread fotis.chatzinikos
Hmmm, not sure about flex but is there a possibility of different locales on the two machines? An english and american locale (same local time) might be on different days. Do you have time with date or just date in the data? Try removing the time info possibly... --- In

Re: [flexcoders] Custom index.template.html for each new project

2008-10-21 Thread Mark Lapasa
THx Kyle, I've gotten it to actually work =) C:\Program Files\Adobe\Flex Builder 3.0.1 Plug-in\sdks\3.1.0\templates\express-installation-with-history\index.template.html Kyle Quevillon wrote: Look in your sdk directory: sdks\2.0.1\resources\html-templates sdks\3.0.0\templates

[flexcoders] Re: Forcing Flex to not cache images

2008-10-21 Thread Amy
--- In flexcoders@yahoogroups.com, oneworld95 [EMAIL PROTECTED] wrote: Hi. I've got a Flex app that communicates with a Java servlet to enable image file uploads. The user clicks in a Flex DataGrid row's button to select an image file and then clicks an Upload button to send the file to the

[flexcoders] Re: Hiding lineseries in a chart

2008-10-21 Thread Amy
--- In flexcoders@yahoogroups.com, seona.bellamy [EMAIL PROTECTED] wrote: Hi guys, I'm new to the list, and pretty new to Flex as well. I've been learning as I go while working on a project, so I'm not sure if I'm doing everything the most elegant way possible, but I'm hoping to refine it

[flexcoders] Refresh datagrid

2008-10-21 Thread oneworld95
Hi. Is there a way to refresh the data in a datagrid?

[flexcoders] Re: I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread tchredeemed
Ok. 1) I went into Flex Builder and installed the flash player that comes in Flex Builder 3/Player/mac After I did this, the project would compile and run without giving me any errors, but it never updated (for instance, I changed the background color, and it would 'compile and run', but the

[flexcoders] Re: I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread tchredeemed
For instance trace('testing'); in the creationCompleteHandler() does not trace testing... likewise, if I delete all function calls out of the creationCompleteHandler, it still calls them... --- In flexcoders@yahoogroups.com, tchredeemed [EMAIL PROTECTED] wrote: Ok. 1) I went into Flex

RES: [flexcoders] Refresh datagrid

2008-10-21 Thread Luciano Manerich Junior
You need to refresh the dataProvider (needs to be bindable). datagrid.dataProvider.refresh(); -Mensagem original- De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Em nome de oneworld95 Enviada em: terça-feira, 21 de outubro de 2008 13:43 Para: flexcoders@yahoogroups.com

[flexcoders] Re: mouse wheel behaviour mxml and actionscript based components

2008-10-21 Thread fotis.chatzinikos
Hello Michael, i just tried your suggestion and i still do not get the mouse wheel to scroll the tree. I also did a quick test to see if it will work on an mxml based tree control and surprisinly it does not scroll Do i remember something wrong? I thought i have seen some trees scroll

[flexcoders] Re: I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread tchredeemed
also it actually runs MyApp.swf?debug=true isnt it supposed to be MyApp-debug.swf ?

Re: [flexcoders] Re: I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread Troy Gilbert
it actually runs MyApp.swf?debug=true isnt it supposed to be MyApp-debug.swf ? In Flex Builder 3, both SWFs have the same name but debug includes ?debug=true. Troy.

Re: [flexcoders] I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread Troy Gilbert
I just ran Software Update, and I am not sure what updates occured, but I believe Firefox might have. No, it's whenever iTunes updates. They use Safari + Flash plug-in for browsing the iTunes Store. Whenever iTunes updates it forcibly updates the Flash player (bad updater!). Very frustrating.

Re: [flexcoders] Re: I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread Troy Gilbert
3) I installed Flash Player 10, and I am getting that error, as well I've not been able to find a link to a debug Flash Player 10... a blog I saw suggested that Flash Player 10 is both regular and debug, but I kinda doubt it (since there's a reference to a debug player for CS4). I'm guessing we

Re: [flexcoders] Re: mouse wheel behaviour mxml and actionscript based components

2008-10-21 Thread Michael Schmalle
Hi, No, it's automatic. Without an example I can't help. :) Mike On Tue, Oct 21, 2008 at 12:01 PM, fotis.chatzinikos [EMAIL PROTECTED] wrote: Hello Michael, i just tried your suggestion and i still do not get the mouse wheel to scroll the tree. I also did a quick test to see if it will

Re: [flexcoders] modules and services-config.xml

2008-10-21 Thread Maciek Sakrejda
Anyone? I can't be the first one to hit this limitation, can I? -Original Message- From: Maciek Sakrejda [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders flexcoders@yahoogroups.com Subject: [flexcoders] modules and services-config.xml Date: Mon, 20 Oct 2008 08:57:05

Re: [flexcoders] I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread Jamie S
Software Update on OSX regularly updates the Flash Player because of security vulnerabilities. It's actually a good thing to do on their part because it means that most mac users are not vulnerable to Flash Player security holes in older versions but it also means that it overwrites the debug

Re: RES: [flexcoders] Refresh datagrid

2008-10-21 Thread oneworld95
Thanks, Luciano! Just what I needed. --- In flexcoders@yahoogroups.com, Luciano Manerich Junior [EMAIL PROTECTED] wrote: You need to refresh the dataProvider (needs to be bindable). datagrid.dataProvider.refresh(); -Mensagem original- De: flexcoders@yahoogroups.com

Re: [flexcoders] I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread Jamie S
The Flash 10 debug player can be found here: http://www.adobe.com/support/flashplayer/downloads.html On Tue, Oct 21, 2008 at 9:40 AM, Jamie S [EMAIL PROTECTED] wrote: Software Update on OSX regularly updates the Flash Player because of security vulnerabilities. It's actually a good thing to do

Re: [flexcoders] Re: Problem with scaleX for system fonts!

2008-10-21 Thread Haykel BEN JEMIA
It's not working for me by setting the blendMode to layer! It only works with the embedded fonts, as expected. Here is my test application and as you can see, scaling is only working on the lines using the embedded font. In the other cases, the Label control itself is scaled and is truncating the

[flexcoders] Custom List Renderer Memory Leak

2008-10-21 Thread darkcube86
I have a list which always displays 3 items using a custom list renderer. As items are added to this list, the last one in the list is removed (FIFO Queue), and a DefaultListEffect is used to animate incoming and outgoing items with a fade effect. The problem is that after some time (~5000 items

[flexcoders] Hide columns from a datagrid

2008-10-21 Thread guillaumeracine
I have a datagrid in a mxml file that contains some hard coded mx:column objects. I want to hide the mx:columns that does not contains any value for all objects in the dataprovider... I should subclass a column renderer class or something like that i think Ex: collection of employee :

[flexcoders] Re: Crazy DataGrid display of XMLListCollection

2008-10-21 Thread edlueze
I wanted to give you a status update on my investigations with this problem. First, I wanted to thank both of you who replied - I've learned a lot about collections in no small part because of your help. In addition to the things you pointed out that I was doing wrong, the core problem turned out

RE: [flexcoders] Re: XML data problem

2008-10-21 Thread Tracy Spratt
This almost always means that you have not set the resultFormat property on the RPC call. The default is Object. This causes Flex to convert the xml into a nested dynamic object structure. The conversion process is attempting to be smart, and failing. Set resultFormat=e4x and it will leave

Re: [flexcoders] Hide columns from a datagrid

2008-10-21 Thread Paul Andrews
- Original Message - From: guillaumeracine [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, October 21, 2008 5:59 PM Subject: [flexcoders] Hide columns from a datagrid I have a datagrid in a mxml file that contains some hard coded mx:column objects. I want to hide the

RE: [flexcoders] Re: sailorsea21 - RemoveChild question.

2008-10-21 Thread Tracy Spratt
First, in unloadclick, what is the intent of this line? modulestile.removeChild(DisplayObject(event.target)); Next, why is .id always = 0? You are setting it in AddModule with this line below. How are you incrementing the NewVbox variable each time? I shouwed you how to do that in an earlier

RE: RES: [flexcoders] Refresh datagrid

2008-10-21 Thread Tracy Spratt
Actually, this is not correct. Does it work for you? ArrayCollection.refresh() causes the current sort to be applied to the collection, it is not intended to be a generic UI refresh call. Three normal ways to update a UI when the underlying data changes are: 1. Re-assign the dataProvider.

[flexcoders] Re: Hide columns from a datagrid

2008-10-21 Thread guillaumeracine
Hehehe yes but this is the context of my application... I have to convert an existing catalog of products in flex and The database is built like this : Table : product (this is generic) -property1 -property2 -property3 The product X may have property3 but not product Y. This is why i must

[flexcoders] Resizing width of TextArea to fit content width

2008-10-21 Thread Eric Cooper
Hi, I have searched through the archives and googled, but most related concerns seem to focus on text height. I am concerned solely with text width. I have a subclass of UIComponent (called BTVariable) that contains an HBox which, in turn, contains between two and four TextArea objects. I

[flexcoders] First POST - XML and Datagrid - XML parent issues

2008-10-21 Thread Bill
Here is my XML http://fantasy4sports.com/xml/players.xml my source XMLCollection call mx:XMLListCollection id=cuePointXMLList source={tempXML['team-sport-content']['league-content']['season-content']['team-content']['player-content'].player} / and the resulting datagrid

Re: [flexcoders] Re: Hide columns from a datagrid

2008-10-21 Thread Paul Andrews
- Original Message - From: guillaumeracine [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, October 21, 2008 6:15 PM Subject: [flexcoders] Re: Hide columns from a datagrid Hehehe yes but this is the context of my application... I have to convert an existing catalog of

RE: [flexcoders] what is a String? (default encoding question)

2008-10-21 Thread Gordon Smith
Always frustrating when I bump up against the wall where open source becomes closed. I wrote a Player engineer and asked but haven't gotten a reply. The Taramin AS3 engine is open-source as part of the Mozilla project. I don't have time to look at the code to answer your question, but maybe

[flexcoders] Checked tree

2008-10-21 Thread Richard Rodseth
I may have a need for a tree with checkboxes associated with the nodes. I see there are a couple of checked tree components, but I also thought I could use an AdvancedDataGrid with a column for the checkbox. Might actually look better having the checkboxes lined up. Anyone have experience to

RE: [flexcoders] what is a String? (default encoding question)

2008-10-21 Thread Gordon Smith
OK, I got the answer from some Player engineers. Unfortunately, the Player actually uses both UTF-8 and UTF-16 at various times to represent strings internally. It does a good amount of conversion back and forth due to the way it needs to interact with the various operating systems that it runs

[flexcoders] Re: First POST - XML and Datagrid - XML parent issues

2008-10-21 Thread Tim Hoff
Sounds like a job for labelFunction. -TH --- In flexcoders@yahoogroups.com, Bill [EMAIL PROTECTED] wrote: Here is my XML http://fantasy4sports.com/xml/players.xml my source XMLCollection call mx:XMLListCollection id=cuePointXMLList

[flexcoders] new to flex, problems installing Flex 4 SDK

2008-10-21 Thread Pedro Kostelec
Hi I am completely new to flex. I find it very difficult to install the Flex 4.(http://opensource.adobe.com/wiki/display/flexsdk/Gumbo). First i extracted the zip in D:\Program Files\Adobe\Adobe Gumbo 4 then i followed the instuction to install it from here:

[flexcoders] Re: sailorsea21 - RemoveChild question.

2008-10-21 Thread sailorsea21
I got it working! Thanks Tracy. I removed the following line: modulestile.removeChild(DisplayObject(event.target)); I removed the following id: main_vbox.id = String(NewVbox); and assigned it to the unload button Thanks for all your help :) --- In flexcoders@yahoogroups.com, Tracy Spratt

  1   2   >