[flexcoders] How to clear client browser cache (SWF)

2008-09-11 Thread Siva Kumar S
Dear All We are in development of an ERP application in Flex. Initially we may rollout few modules for testing, as the change request will trigger during this process. We need to release new version and so on. Like to know how to clear the client SWF version to replace the new version of it.

Re: [flexcoders] How to clear client browser cache (SWF)

2008-09-11 Thread Sefi Ninio
The straight froward approach would be to append the url with now date or something, to make it different from the one in the cache... On Thu, Sep 11, 2008 at 9:03 AM, Siva Kumar S [EMAIL PROTECTED] wrote: Dear All We are in development of an ERP application in Flex. Initially we may

Re: [flexcoders] chatroom on flex and red5

2008-09-11 Thread Nate Beck
I bet you can find a suc... err someone interested over at elance.com On Wed, Sep 10, 2008 at 5:48 PM, Doug McCune [EMAIL PROTECTED] wrote: no no, he can design it *on flex*, so that's all the hard work. Then all you have to do is code it and get fuctions workingm. That's the simple part,

RE: [flexcoders] Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-11 Thread Gregor Kiddie
In all seriousness... any scrollbar skinning has always been along the same lines as these posts. http://axel.cfwebtools.com/index.cfm/2007/3/27/Custom-Scroll-Bar-Using-C SS http://breathflex.blogspot.com/2007/03/skinning-scrollbar-in-flex.html

Re: [flexcoders] Re: Bug or not: Display both scrollBar in browser

2008-09-11 Thread Haykel BEN JEMIA
This is strange, I don't have this problem! Try using fxspy ( http://code.google.com/p/fxspy/ ) to inspect your components and find out who is causing that horizontal scrollbar to appear. Another thing: not only the widths of the components are important but also their position. So if the largest

[flexcoders] DataGrid - how to show the editor for a particular cell?

2008-09-11 Thread Stephen Roy J. Tang
Hi, Say I have a datagrid with editable cells. That is, the user can click the cell to make the itemEditor appear and input data. This datagrid also has a feature that if I click on an empty row, I add a new record to the dataProvider and the user can input a new record. I've implemented

RE: [flexcoders] AIR - HTML - view source

2008-09-11 Thread Jim Hayes
Do you mean programatically, or as a normal user viewing the application? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of arieljake Sent: 11 September 2008 06:48 To: flexcoders@yahoogroups.com Subject: [flexcoders] AIR - HTML - view source I

[flexcoders] Re: Bug or not: Display both scrollBar in browser

2008-09-11 Thread itdanny2002
Thanks Million. The program is useful. I filter all properties by width and check which component has changes if just adjusting vertical height. I got it but don't understand. The width of FlexSprite content pane has been increased. All others component doesn't. What's that ?

Re: [flexcoders] Question about binding via AS

2008-09-11 Thread Josh McDonald
I've been poking around sanity-checking some code I'm working on for my DI package, and posted my conclusions and thoughts here: http://is.gd/2tAu -Josh On Thu, Aug 21, 2008 at 8:28 AM, Josh McDonald [EMAIL PROTECTED] wrote: I'd say if A is long-lived you'd definitely want to keep a reference

[flexcoders] focus rectangle

2008-09-11 Thread Kenneth Sutherland
What's the best way to change the focus rectangle from its default size? Our designers have some skins for radiobuttons and sliders amongst others, but the skins for these components do not show the focus rectangle properly. I'm try to change it programmatically but is it easier to do it in

RE: [flexcoders] focus rectangle

2008-09-11 Thread Gregor Kiddie
Hey Kenny, UIComponent has a focusThickness style, changing that changes the focus rectangle. Shown at, http://blog.flexexamples.com/2008/05/24/setting-the-focus-thickness-on-a -numericstepper-control-in-flex/ Any help? Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343

[flexcoders] Scroll if object not on screen

2008-09-11 Thread itdanny2002
If object is not on screen, e.g. below the screen, I need to scroll up the screen to see it. I use the following but not success. // To check if it is below while (MyObj.y (verticalScrollPosition+application.height)) { verticalScrollPosition=verticalScrollPosition+application.height; } //

[flexcoders] ClassReference in StyleManager loaded SWFs

2008-09-11 Thread Tom Chiverton
If I have Button { skin:ClassReference( foo.bar.baz.ButtonSkin ); } in a .css file compiled to a .SWF and then loaded by StyleManager, I get compile time errors saying Flex Builder can't find the class. Putting the same CSS in an mx:Style block instead so it is always loaded is fine

[flexcoders] Grid's rowindex and columnIndex ( Not DataGrid)

2008-09-11 Thread Manu Dhanda
Hii, How to find the row and column index of a Grid's cell when some action(say mouse click) happen on that particular cell. Note: It's Grid, not DataGrid. Thanks, Manu. -- View this message in context:

RE: [flexcoders] focus rectangle

2008-09-11 Thread Kenneth Sutherland
Hi G, cheers but nope. The thickness is OK as it is. Setting the styles isn't a problem, I've got around the radiobutton issue with moving the registration point 0.5 (in flash) and then changing the cornerradius in flex. I'd still like to know how to move/change it programmatically though. I

Re: [flexcoders] ClassReference in StyleManager loaded SWFs

2008-09-11 Thread Guillaume Malartre
If your Button style exist before the .css compiled is loaded its totally normal to have a compile error since the class foo.bar.baz.ButtonSkin is not included yet. On Thu, Sep 11, 2008 at 6:50 AM, Tom Chiverton [EMAIL PROTECTED] wrote: If I have Button { skin:ClassReference(

Re: [flexcoders] ClassReference in StyleManager loaded SWFs

2008-09-11 Thread Tom Chiverton
On Thursday 11 Sep 2008, Guillaume Malartre wrote: If your Button style exist before the .css compiled is loaded its totally normal to have a compile error since the class foo.bar.baz.ButtonSkin is not included yet. So how do I reference a custom skin class in a loadable style SWF ? -- Tom

[flexcoders] XMLList obtained after filtering to act as dataprovider to datagrid

2008-09-11 Thread samata
Hi, I want the XMLList obtained after filtering to act as dataprovider to my datagrid... Can some1 help me plz?? This is my code: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=init(); mx:Script ![CDATA[

[flexcoders] Re: Unable to traverse an XML document whose tag names have : signs

2008-09-11 Thread penidocl
Hi Tracy: Thank you for your quick reply. I was wondering if you could point me to a sample Flex project that uses xml namespaces. I researched every where and I was not able to find enough information on the subject. It would be great help if you could point me to an actual example where xml

[flexcoders] Re: chatroom on flex and red5

2008-09-11 Thread sniperbe
--- In flexcoders@yahoogroups.com, Nate Beck [EMAIL PROTECTED] wrote: I bet you can find a suc... err someone interested over at elance.com On Wed, Sep 10, 2008 at 5:48 PM, Doug McCune [EMAIL PROTECTED] wrote: no no, he can design it *on flex*, so that's all the hard work. Then all you

Re: [flexcoders] How to clear client browser cache (SWF)

2008-09-11 Thread Siva Kumar S
Hi Sefi Is there any other alternative, because changing the URL frequently will create a problem with the end-user. Thanks Siva Kumar S From: Sefi Ninio Sent: Thursday, September 11, 2008 11:43 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How to clear client browser cache

[flexcoders] Re: How is this done?

2008-09-11 Thread guillaumeracine
I don't think the previous answers helped you much. If you want to dynamically increase your HTML div, you must use the ExternalInterface object. In the HTML side : script language=JavaScript type=text/javascript function myJavascriptResizeFunction(height) {

[flexcoders] Cannot unmarshall

2008-09-11 Thread Alban
Hello *, we've got a problem with flex builder 3 (Version: 3.0.194161) and a generated webservice. Our wsdl file is generated by openedge (progress). This is a sample of it where i think the problem come from: [code] element name=dsOrder complexType sequence element maxOccurs=unbounded minOccurs=0

Re: [flexcoders] ClassReference in StyleManager loaded SWFs

2008-09-11 Thread Guillaume Malartre
Apply the stylesheet after the swf is loaded. A simpler way would be to use a swc so your class get include at compilation, no loading require. On Thu, Sep 11, 2008 at 8:06 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 11 Sep 2008, Guillaume Malartre wrote: If your Button style

RE: [flexcoders] Re: Remote Object and Session ???????

2008-09-11 Thread Dimitrios Gianninas
ok so you mean your Flex client beeds to communicate with http://abc.com and http://xyz.com? Both servers belong to you? Seems like you are going to have to keep info on who is logged in at the DB level so that both servers can access that same info and know that someone is logged in. Not

Re: [flexcoders] ClassReference in StyleManager loaded SWFs

2008-09-11 Thread Douglas Knudsen
is your .css in the source tree or elsewhere? There are some issues with this. I'm going to guess your css file is outside the source tree. DK On Thu, Sep 11, 2008 at 6:50 AM, Tom Chiverton [EMAIL PROTECTED] wrote: If I have Button { skin:ClassReference( foo.bar.baz.ButtonSkin ); }

Re: [flexcoders] How to clear client browser cache (SWF)

2008-09-11 Thread Paul Andrews
I suppose you could build a flash loader to get the correct url from the server and load it. That way the user could always reference the same URL and the flash loader would have to get the correct (changing) url from the server before loading the main application. Paul - Original

RE: [flexcoders] ClassReference in StyleManager loaded SWFs

2008-09-11 Thread Kenneth Sutherland
1) Create a library project, place your foo.bar.baz.ButtonSkin class inside the library project. 2) Take the then created SWC file and place inside your libs folder. 3) Hey presto error has now disappeared J HTH Kenneth. From: flexcoders@yahoogroups.com

RE: [flexcoders] Cannot unmarshall

2008-09-11 Thread Peter Farland
Unfortunately you cut off the most important part - what do the namespaces in the schema map to? They may be declared on the wsdl definitions root tag or the schema tag, but it's not clear from your post what the S2 namespace prefix maps to... I'm guessing that it is (incorrectly) the XML

RE: [flexcoders] Re: Remote Object and Session ???????

2008-09-11 Thread Battershall, Jeff
If you set the credentials for the remote object, post authentication, those will be passed with each request. All you need to do is look for those credentials on the server side and log the user in and assign roles on the server in question. Doing this in CF is trivial, it would depend on

RE: [flexcoders] BlazeDS FlexSessionListener

2008-09-11 Thread Seth Hodgson
http://livedocs.adobe.com/blazeds/1/blazeds_devguide/help.html?content=lcconnections_4.html#1076159 A browser closing has no immediate correlation to a server-side Http session being destroyed. Session destruction is generally based on a configurable timeout interval defined for the server

[flexcoders] Production inefficiency

2008-09-11 Thread Nik Derewianka
Hi All, For those of you that are using lots of flash CS3 swf's, what is your folder organisation and publishing process ?? Right now we have everything including project folder ~/Documents/Flex Builder 3/Proj/ under subversion control. Everything that we want to publish (to localhost

[flexcoders] UITextField roundedcorners in a combobox

2008-09-11 Thread flexaustin
Does anyone know if it is possible to round the corners of the TextInput/UITextField in a combobox? I have a combobox that is set to editable (mycombo.editable=true). Butby doing so the textinput pushes up against the left side so it makes one side look square. So would it be possible to round

Re: [flexcoders] VDividedBox - prevent dragging of divider

2008-09-11 Thread rviswanathan
Thanks Sherif for the response. I am trying to do this to achieve 2 needs. a) I need the divider to move by a standard number up or down on click of the divider. I am able to do this by moving the divider up or down inside the dividerPress handler - no problem here b) I also want to avoid

[flexcoders] How to create summary in GroupingCollection -- AS3

2008-09-11 Thread vkc_nair
Hi All, I have a function to create the grouping (two levels), which is the data provider for Advanceddatagrid. I want to add summary at the group node. How to do that? eg Node1(20) Node1.1(5) Node1.2(15) Node2(10) Node2.1(8) Node2.2(2) This is my function. public function

[flexcoders] Flash video component?

2008-09-11 Thread markflex2007
Hi, There are Video component in Flash, like vid1=new Video(240,180); which component in Flex to take place the Video component in Flash. Thanks Mark

Re: [flexcoders] Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-11 Thread anuj sharma
Awesome Gregor Great These links will be definitely helpful. Thanks a lot for your help Gregor. I really appreciate that Anuj On Thu, Sep 11, 2008 at 12:11 AM, Gregor Kiddie [EMAIL PROTECTED]wrote: In all seriousness… any scrollbar skinning has always been along the same lines as these

[flexcoders] Note to someone at Adobe who is in charge of documentation

2008-09-11 Thread Pan Troglodytes
Hopefully, someone who reads this can maybe forward it or mention it to someone who is in the documentation department. My biggest problem with the documentation is when it comes to function signatures. Unfortunately in ActionScript, function signatures are not typeable. If I was using Delphi,

Re: [flexcoders] Note to someone at Adobe who is in charge of documentation

2008-09-11 Thread Matt Chotin
Consider this forwarded. On 9/11/08 9:32 AM, Pan Troglodytes [EMAIL PROTECTED] wrote: Hopefully, someone who reads this can maybe forward it or mention it to someone who is in the documentation department. My biggest problem with the documentation is when it comes to function signatures.

Re: [flexcoders] Flash video component?

2008-09-11 Thread Jon Bradley
On Sep 11, 2008, at 12:22 PM, markflex2007 wrote: which component in Flex to take place the Video component in Flash. mx.controls.VideoDisplay I believe. Has no UI components associated with it. You'll need to add those yourself. Or, you can always output an SWF of a video player built in

[flexcoders] Re: Is it possible to increase the heigth and width of scroll bars in any container?

2008-09-11 Thread Tim Hoff
Cheers Gregor. -TH --- In flexcoders@yahoogroups.com, Gregor Kiddie [EMAIL PROTECTED] wrote: In all seriousness... any scrollbar skinning has always been along the same lines as these posts. http://axel.cfwebtools.com/index.cfm/2007/3/27/Custom-Scroll-Bar- Using-C SS

[flexcoders] LCDS : changeObject.addChangedPropertyName works correctly??

2008-09-11 Thread Shigeru Nakagaki
Hello I'm talking about Data Management Service with LCDS 2.5.1 + CF801. I'm tring to add change information like ... cfset new = dao.update(old, new) cfset co.addChangedPropertyName(hoge) cfset co.processed() But actual result is NOT correctly once every two times. I mean it set a different

Re: [flexcoders] How to clear client browser cache (SWF)

2008-09-11 Thread dnk
Dear All We are in development of an ERP application in Flex. Initially we may rollout few modules for testing, as the change request will trigger during this process. We need to release new version and so on. Like to know how to clear the client SWF version to replace the new version of

[flexcoders] Flex Builder Help on Mac falls a bit short

2008-09-11 Thread Troy Gilbert
I began using Flex Builder under Windows (v2) and found the context-sensitive help, like in all good IDEs, a lifesaver. Under FB/Win, if I put the cursor under an API function and hit F2, the help would take me right to the function. And, the help was launched in its own app/process. Finally, when

[flexcoders] Disabling an entire MenuBar in Flex 2

2008-09-11 Thread Paul Steven
I would like to disable an entire MenuBar but can’t quite figure out how. I was hoping I could just do something like this menubar1.enabled = false; but unfortunately this doesn’t seem to work. Here is my menu bar code. mx:MenuBar labelField=@label itemClick=menuHandler(event)

[flexcoders] Re: How to clear client browser cache (SWF)

2008-09-11 Thread tuco_ck
Or You can control your version by assign in the final of your url with a simple number of your current version after a ?, like this: myapp.swf?315 When you alter your app, change also the version, like this: myapp.swf?316 Understand? --- In flexcoders@yahoogroups.com, Easow Jacob [EMAIL

[flexcoders] Performace Load testing for Flex 3

2008-09-11 Thread Vivek Kapadekar
Hi All   I am looking for some tool ( opensource or commercial) for Load/Stress tetsing our Flex 3 based web application.   I have searched many threads and web, but most of them point to tools which support Flex 2 ( example LoadRunner 9.1 and WebLoad from RadView)   If anyone can share some

[flexcoders] Re: How to clear client browser cache (SWF)

2008-09-11 Thread tuco_ck
Or You can control your version by assign in the final of your url with a simple number of your current version after a ?, like this: myapp.swf?315 When you alter your app, change also the version, like this: myapp.swf?316 Understand? --- In flexcoders@yahoogroups.com, Easow Jacob [EMAIL

Re: [flexcoders] How to determine if TreeItemRenderer is horizontally visible?

2008-09-11 Thread Greg Hess
Thanks very much Alex! -Greg On Wed, Sep 10, 2008 at 5:35 PM, Alex Harui [EMAIL PROTECTED] wrote: Have the renderer let you access the label's x position and test against the width of the Tree minus viewmetrics From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg

[flexcoders] Re: Displaying a date in a line chart

2008-09-11 Thread gr33neye501
Thanks guys (Tom and yourself), I want to stick with the DateTimeAxis, for the very reason the you just mention. my data is already collection of dates and want to/need to keep it that way. So label function it is then. Thanks once again. J. --- In flexcoders@yahoogroups.com, sunild99

[flexcoders] Content of 500 error page

2008-09-11 Thread Fernando Flórez
Hello, I'm trying to retrieve the content of a webpage if an error such as 500 is thrown. I'm able to dispatch an event when this occurs but not retrieve the content of the webpage. Does someone know if this is possible? Thanks, || fernandoflórez - [EMAIL PROTECTED] ||

RE: [flexcoders] Re: Unable to traverse an XML document whose tag names have : signs

2008-09-11 Thread Tracy Spratt
I have mostly had control of the server in my apps so have been able to avoid most of the namespace headaches. I have a webservice example on www.cflex.net http://www.cflex.net/ that shows how to declare a default namespace, but that is not your issue. I suggest google. I recall several

[flexcoders] Re: Unable to traverse an XML document whose tag names have : signs

2008-09-11 Thread penidocl
Thanks, Tracy I appreciated very much your help. -Claudia --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: I have mostly had control of the server in my apps so have been able to avoid most of the namespace headaches. I have a webservice example on www.cflex.net

RE: [flexcoders] DataGrid - how to show the editor for a particular cell?

2008-09-11 Thread Alex Harui
editedItemPosition From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephen Roy J. Tang Sent: Thursday, September 11, 2008 2:02 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid - how to show the editor for a particular cell? Hi, Say I have a datagrid

RE: [flexcoders] Scroll if object not on screen

2008-09-11 Thread Gordon Smith
There isn't enough data here, since you don't say where MyObj is within the application's parent/child hierarchy, or what object this script is in (so whose verticalScrollPosition are you setting?). You may be having a problem with coordinate systems. The y coordinate of a component is its

RE: [flexcoders] Content of 500 error page

2008-09-11 Thread Tracy Spratt
This is a well-known problem. The browsers do not pass the fault data to the Player if the error code is greater than 200. Essentially, you choices are to use a proxy, BlazeDS, LCDS or your own, trick the server into sending a 200, or to implement your own socket communication. Search

[flexcoders] Subclassing Components: Theoretical Question

2008-09-11 Thread wnoone01
Hey all, I've got a theoretical question about subclassing a component. Here is the use case: A programmer requires buttons that support multiline labels. This is a requiement for Button, RadioButton, and CheckBox. Now to start, the programmer can subclass mx.controls.Button to implement the

[flexcoders] Holding functions and http services in separate files

2008-09-11 Thread ghus32
Hello everyone, My application has reached over 3000 lines and now I want to clean up my code.. Is there a way I can put all http services into one file and load them on application startup, same with functions. thanks

[flexcoders] Re: Flex Builder Help on Mac falls a bit short

2008-09-11 Thread Amy
--- In flexcoders@yahoogroups.com, Troy Gilbert [EMAIL PROTECTED] wrote: I began using Flex Builder under Windows (v2) and found the context-sensitive help, like in all good IDEs, a lifesaver. Under FB/Win, if I put the cursor under an API function and hit F2, the help would take me right

[flexcoders] key listeners in air windows

2008-09-11 Thread blc187
Does anyone know if its possible to add a key down listener for an entire air app? As it stands now I have several air windows open, I'm adding the listener to the stage but its window specific. I'd like to be able to recognize whether a key is pressed anywhere in the app, instead of only one

[flexcoders] Re: AIR - HTML - view source

2008-09-11 Thread arieljake
Programatically. --- In flexcoders@yahoogroups.com, Jim Hayes [EMAIL PROTECTED] wrote: Do you mean programatically, or as a normal user viewing the application? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of arieljake Sent: 11

Re: [flexcoders] key listeners in air windows

2008-09-11 Thread Andrew Wetmore
the way I deal with this is to use a switch statement on the currentState: in init() I call registerGlobalKeyHandler() which is private function registerGlobalKeyHandler(): void{ stage.addEventListener(KeyboardEvent.KEY_DOWN, keyHandler); } and has this event handler: private

RE: [flexcoders] Holding functions and http services in separate files

2008-09-11 Thread Tracy Spratt
Sure, where are you stuck? Basic OOP stuff? The basic process is to put your functionality in a component. You can use a normal class, and then instantiate it using either mxml or AS, or you can use static functions, or you can use the singleton pattern. By the way, you say all http

RE: [flexcoders] Re: AIR - HTML - view source

2008-09-11 Thread Jim Hayes
I'm surprised that didn't come up in a search ! http://tech.groups.yahoo.com/group/flexcoders/message/121867 hth Jim. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of arieljake Sent: 11 September 2008 20:28 To: flexcoders@yahoogroups.com

Re: [flexcoders] Subclassing Components: Theoretical Question

2008-09-11 Thread Guillaume Malartre
When I find it too messy to override button class or whatever class to change the label (for multiline or more advance stuff) I just put a label on top of the button and turn includeInLayout=false and mouseChildren=false It does need more coding if you want to respect the style textRollOver etc..

Re: [flexcoders] Content of 500 error page

2008-09-11 Thread Fernando Flórez
Thanks! || fernandoflórez - [EMAIL PROTECTED] || funcitoncommunications - justcommunicate || telf: 719.6500 - http://www.funciton.com - Original Message - From: Tracy Spratt [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, September 11, 2008 1:13:25 PM GMT -05:00

[flexcoders] Re: key listeners in air windows

2008-09-11 Thread blc187
I'm not sure that solves the problem, we may be talking about two different issues... So when you call registerGlobalKeyHandler(), where do you do it and what are you listening to that it registers a key was pressed in different windows? Because when I add the listener to stage, only the

Re: [flexcoders] FilterFunction is throwing an error #1069

2008-09-11 Thread David Harris
Hi, I came across this error not long ago, and when I search about it I found something like this is logged in the Flex issue tracker (Jira) The work round provided is something like: Before you call the filter function on the dataprovider for the Combo box, set the selected index for the combo

[flexcoders] Wrapping Contents in HBOX or VBOX

2008-09-11 Thread pratikshah83
Hi Guys, I am using a Hbox/Vbox to place legends in the chart. So if I use a Hbox the legend displays like legend 1 legend 2 legend 3 legend 4 legend 5 legend 6 Due to which I get a scroll bar as the number of legends increase. I would like to know how could I wrap them in Hbox so that it

[flexcoders] Regular TextField styling.

2008-09-11 Thread giannif17
The UITextFields that are used in Flex Text components have some rendering issues that the basic ActionScript TextFields don't have. I want to use TextField, and set its style based on a style that's available in the StyleManager, but can't make the connection. This is what I did, it works in my

RE: [flexcoders] Wrapping Contents in HBOX or VBOX

2008-09-11 Thread Tracy Spratt
Use a Tile container (NOT TileList). Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pratikshah83 Sent: Thursday, September 11, 2008 4:55 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Wrapping Contents in HBOX or VBOX

[flexcoders] Searching collections using contains()

2008-09-11 Thread sleblang
I am searching an XMLListCollection using XMLListCollection.contains(). The XMLListCollection is also filtered. With that said, I am unable to have it return a 'true' value even if I hardcode the 'contains' value so that I (should be) forcing a 'true' value. Per the Help Docs, I have even tried

[flexcoders] How can I remove classes from framework that I don't need

2008-09-11 Thread Hyder
For example, if I simple want to build, let's say, a data grid. How can i go about removing all those charting components from datavisualisation.swc to reduce the size of my app?

RE: [flexcoders] How can I remove classes from framework that I don't need

2008-09-11 Thread Alex Harui
If all you have is a DataGrid and no charts in the app, chart code from datavis.swc will not be linked into your SWF From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Hyder Sent: Thursday, September 11, 2008 2:52 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How

RE: [flexcoders] Searching collections using contains()

2008-09-11 Thread Alex Harui
Your findValue is an XML node that is not a member of the XMLList so it isn't contained in there. The XMLList contains a different unique XML node with the same value., but isn't the same node. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sleblang Sent: Thursday,

RE: [flexcoders] Regular TextField styling.

2008-09-11 Thread Alex Harui
UITextField is just a subclass of TextField. What doesn't it do correctly? I'm not sure what you mean by transparent box. If factory is null, you should run that code when the factory is ready. There should be an event for that. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] Subclassing Components: Theoretical Question

2008-09-11 Thread Alex Harui
Make one subclass that handles both HTML and multiline? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wnoone01 Sent: Thursday, September 11, 2008 11:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Subclassing Components: Theoretical Question Hey all, I've

[flexcoders] Re: Searching collections using contains()

2008-09-11 Thread sleblang
Got it thanks. I was wrongly under the assumption that I could simply create an XMLNode with the same value of one contained in the XMLList. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Your findValue is an XML node that is not a member of the XMLList so it isn't

Re: [flexcoders] Content of 500 error page

2008-09-11 Thread Matt Chotin
But we're going to make progress in this with FP 10, yippee! On 9/11/08 1:11 PM, Fernando Flórez [EMAIL PROTECTED] wrote: Thanks! || fernandoflórez - [EMAIL PROTECTED] || funcitoncommunications - justcommunicate || telf: 719.6500 - http://www.funciton.com - Original Message - From:

Re: [flexcoders] Subclassing Components: Theoretical Question

2008-09-11 Thread Josh McDonald
Yeah, I'd make one subclass of Button that lets you put whatever you please as the label, and have function set labelControl(cntrl:*) as the [DefaultProperty]. If it finds a string, go with a UITextField, if it's a DisplayObject, use it, if not throw an error. Then you have: pkg:FreeFormButton

[flexcoders] Re: Regular TextField styling.

2008-09-11 Thread giannif17
There is a subtle translucent white box surrounding my Label component. You can hardly see it, but it's there. It's pretty much invisible on my mac, but on my pc you can see it more clearly. Our designers are quite picky about it. A good comparison is a canvas with backgroundColor white, and

Re: [flexcoders] Subclassing Components: Theoretical Question

2008-09-11 Thread Doug McCune
heh, that's almost the exact description of what I called the CanvasButton: http://dougmccune.com/blog/2007/06/01/new-component-canvasbutton-added-to-flexlib/ Doug On Thu, Sep 11, 2008 at 3:22 PM, Josh McDonald [EMAIL PROTECTED] wrote: Yeah, I'd make one subclass of Button that lets you put

Re: [flexcoders] Re: key listeners in air windows

2008-09-11 Thread Andrew Wetmore
It is working for me throughout all the windows in my app. On creationComplete of the app I call init() to run a number of processes. One line in init() is registerGlobalKeyHandler(); which calls what I showed you before. So I am adding the listener not in any window, but in the app itself I

[flexcoders] Compiile errors from html template

2008-09-11 Thread Tom McNeer
Hi, All of a sudden, I'm getting compiler errors related to the index.template.html. They refer to XHTML validation errors in the file (such as the lack of a type on a script tag). But I haven't changed the template file. And why would the compiler look into the template and do XHTML validation,

Re: [flexcoders] Subclassing Components: Theoretical Question

2008-09-11 Thread Josh McDonald
Well I'm sure as hell not gonna write it and put up on my blog then ;-) -Josh On Fri, Sep 12, 2008 at 8:28 AM, Doug McCune [EMAIL PROTECTED] wrote: heh, that's almost the exact description of what I called the CanvasButton:

RE: [flexcoders] Re: Regular TextField styling.

2008-09-11 Thread Alex Harui
Does a plain UITextFIeld also have the white box? Can you post a simple test case? Instead of reading the factory, why not just call getStyle() on the cssstyledecl. We have equivalent code in UITextField From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of giannif17

[flexcoders] Re: Regular TextField styling.

2008-09-11 Thread giannif17
Yes, a plain UITextField has the same white box. Here's a link: http://therichardsonnyc.com/images/TestFlex.swf I can't even see it on my mac. If I used getStyle(), I'd have to do that for every property I wanted to set on the TextFormat object. textFormat.bold = css.getStyle(fontWeight);

RE: [flexcoders] Re: Regular TextField styling.

2008-09-11 Thread Alex Harui
I don't see it on Win XP with IE. Here's what I got: [cid:image001.png@01C91429.B6F9F920] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of giannif17 Sent: Thursday, September 11, 2008 4:06 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Regular TextField

Re: [flexcoders] Re: Regular TextField styling.

2008-09-11 Thread Josh McDonald
I definitely can't seen anything, but I'm also on a Mac. Sorry if this is a dumb question, but have you taken a screenshot on windows and checked it thoroughly with Photoshop to make sure it's really there? It may be an optical illusion. Do you see it on several different windows machines? What

[flexcoders] Re: Regular TextField styling.

2008-09-11 Thread giannif17
You can see it on both the timecodes on the bottom scrubber in this screen shot of a video player. http://therichardsonnyc.com/images/screenshot.jpg I'll look at on other PCs when I get back in my office tomorrow. When I use TextField, it goes away. Thanks --- In flexcoders@yahoogroups.com,

Re: [flexcoders] Content of 500 error page

2008-09-11 Thread Fernando Flórez
Nice! It's been a while Matt since i last saw an email from you. Thanks for the news! || fernandoflórez - [EMAIL PROTECTED] || funcitoncommunications - justcommunicate || telf: 719.6500 - http://www.funciton.com - Original Message - From: Matt Chotin [EMAIL PROTECTED] To:

Re: [flexcoders] Re: Regular TextField styling.

2008-09-11 Thread Josh McDonald
Hmm, I see what you mean, but there's a lot else going on in that application, do you see it also in that simple test swf you posted? I can have a co-worker open it in windows and email me a PNG24 (jpg's a bad idea for diagnosing this sort of problem)... -Josh On Fri, Sep 12, 2008 at 9:37 AM,

Re: [flexcoders] Content of 500 error page

2008-09-11 Thread Josh McDonald
Bah! The man's an awful tease ;-) I'm hoping they sneak in some extra HTTP methods too, I'm greedy like that. -Josh On Fri, Sep 12, 2008 at 9:49 AM, Fernando Flórez [EMAIL PROTECTED]wrote: Nice! It's been a while Matt since i last saw an email from you. Thanks for the news! --

[flexcoders] Re: Wrapping Contents in HBOX or VBOX

2008-09-11 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Use a Tile container (NOT TileList). Tile has the annoying property of calculating its columns/rows from the square root of the number of items. When they subclassed it for use in the Legend control, somehow they

[flexcoders] Re: Regular TextField styling.

2008-09-11 Thread giannif17
Yes, I see the exact same thing in a completely isolated test SWF. In that SWF I have two textfields, one is UITextField and one is just TextField, and it is quite apparent. I can see it in the SWF viewer launched from Flex Builder. I'll post a screen shot of that tomorrow. --- In

[flexcoders] Re: Wrapping Contents in HBOX or VBOX

2008-09-11 Thread pratikshah83
Thanks Tracy, This helped me solve one of my issue. If you could help me with another issue. ie. if i have my chart legend towards the right and the legend text is too long how do I wrap the text of the legend in multiple lines ?? for example if the text for the legend is long legend test

[flexcoders] Re: Searching collections using contains()

2008-09-11 Thread Amy
--- In flexcoders@yahoogroups.com, sleblang [EMAIL PROTECTED] wrote: Got it thanks. I was wrongly under the assumption that I could simply create an XMLNode with the same value of one contained in the XMLList. I am not sure I agree with this. I was able to construct a new node and compare it

Re: [flexcoders] Grid's rowindex and columnIndex ( Not DataGrid)

2008-09-11 Thread Manu Dhanda
No response yet!! Anyone around who had faced this situation.. maybe it's too easy, but my thoughts are blocked at the moment.. Regards, Manu. Manu Dhanda wrote: Hii, How to find the row and column index of a Grid's cell when some action(say mouse click) happen on that particular cell.

Re: [flexcoders] Content of 500 error page

2008-09-11 Thread Matt Chotin
No http methods, just a nickel-bag of fixes. Matt On 9/11/08 5:02 PM, Josh McDonald [EMAIL PROTECTED] wrote: Bah! The man's an awful tease ;-) I'm hoping they sneak in some extra HTTP methods too, I'm greedy like that. -Josh On Fri, Sep 12, 2008 at 9:49 AM, Fernando Flórez [EMAIL

Re: [flexcoders] Content of 500 error page

2008-09-11 Thread Josh McDonald
Aw, nuts! Still, thanks for clearing it up :) On Fri, Sep 12, 2008 at 11:31 AM, Matt Chotin [EMAIL PROTECTED] wrote: No http methods, just a nickel-bag of fixes. Matt -- Therefore, send not to know For whom the bell tolls. It tolls for thee. http://flex.joshmcdonald.info/ :: Josh

  1   2   >