RE: [flexcoders] subclassing accordion control.

2005-03-22 Thread Jeff Krueger
Matt,       Thanks.  You are correct.  Copy and paste messed me up there.        One other side note if I may.  So now that I am able to run some code based on events like initialize any help on creating dynamic accoridions would be much appreciated.  I have another c

RE: [flexcoders] Flex Remoting has UPPERCASE results

2005-03-22 Thread Dirk Eismann
Also check my blog entry on how to transfer data between CF and Flex and enforce automatic mapping between structs and AS classes (please note that the _remoteClass trick isn't supported officially by MM anymore and may be dropped completely in a future version of Flex) http://www.richinternet

[flexcoders] SWC Flex Flash integration

2005-03-22 Thread Wilfred LEUNG
Hi By far, my understanding is that we can integrate symbols defined in SWF and use it within Flex environment. With this skill, its easy to integrate ready-made flash animation/components with Flex such that Flex components can make call to those symbols and vice versa. My question to the li

RE: [flexcoders] Passing Models into MXML components...

2005-03-22 Thread Matt Chotin
What’s the error?  Are you working with strongly typed objects?  If so, does the object have the properties you’re trying to access declared?   The key to binding is to use strong types (as Tracy pointed out).  There are other binding debugging tips listed on my blog and in the docs (wh

RE: [flexcoders] Binding with amf

2005-03-22 Thread Matt Chotin
Hi Devis,   I think you’re asking how to use binding to do an “insert” as opposed to an “edit” operation?  This is probably hard to do with binding.  Instead what I’d do is simply have a button or some other mechanism that will do the addition for you and only use binding to copy out fo

RE: [flexcoders] subclassing accordion control.

2005-03-22 Thread Matt Chotin
I don’t think you have a reference to your parent in the constructor.  Use another function like commitProperties().  Also I assume it’s intentional that you’re listening for your parent’s events, not your own?   Matt   From: Jeff Krueger [mailto:[EMAIL PROTECTED] Sent: Tuesd

[flexcoders] Re: ErrorMessage[String] : XML Aggregation failed

2005-03-22 Thread sreejithunni
Hi Matt, I guess that was a false alarm! I did some research on the web and found that this is an internal error from the webservice itself. So, I believe this had nothing to do with Flex or Network Monitor itself. Moreover, the same web service calls passed succesfully later! Thanks Sree --

RE: [flexcoders] mx.formatters.DateFormatter parsing !

2005-03-22 Thread Matt Chotin
http://www.macromedia.com/go/wish   The “why” in this case was that the parsing should have worked regardless of input format.  However I know that it didn’t end up that way, it was mostly a matter of time to implement vs. time to ship J   From: r0main [mailto:[EMAIL PROTECTED

RE: [flexcoders] Namespace Problems

2005-03-22 Thread Matt Chotin
I don’t have time to setup my own test but I’d assume that model.Person.phone.resource would work.  Try using a debugger to inspect the model and you can see how the object was built from the XML.   Matt   From: Jack Waknitz [mailto:[EMAIL PROTECTED] Sent: Monday, March 21, 2

RE: [flexcoders] Re: User Credentials Cache

2005-03-22 Thread Matt Chotin
I responded on-list to this a while ago.  There was a bug in 1.0 that caused problems like this but we thought it was fixed in 1.5.  If you are having this problem using 1.5, please try setting 0 in the appropriate proxy section in flex-config.xml   Matt   From: Matthew Shirey

RE: [flexcoders] ErrorMessage[String] : XML Aggregation failed

2005-03-22 Thread Matt Chotin
I’m not too familiar with how the network monitor works, but it may just have a cutoff on how big the response can be that it monitors.  Does the application still work?   Matt   From: sreejithunni [mailto:[EMAIL PROTECTED] Sent: Sunday, March 20, 2005 11:08 PM To: flexcoders

Re: [flexcoders] Passing Models into MXML components...

2005-03-22 Thread Scott Barnes
oops thought I had that heh. I did however find another stumbling block and that is if have a nested child within that object... employeeProfile.TRAVEL.PASSPORT.fName = "Scott" that will throw the error again (as the compiler seems to throw a darky if the object doesn't physically exist when it

RE: [flexcoders] java.lang.NullPointerException

2005-03-22 Thread Markus Ansamaa
Maybe your Trial Edition has expired and you need to restart your server to get into the Developer mode. Or if you have developer edition, then the license limit may have been reached. In that case it should be mentioned below the stack trace. -Markus -Original Message- From: Tarik Ah

RE: [flexcoders] Passing Models into MXML components...

2005-03-22 Thread Tracy Spratt
Also you should explicitly type the declaration. public var employeeModel:Object = new Object(); This helps avoid binding issues. Tracy -Original Message- From: Scott Barnes [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 22, 2005 6:57 PM To: flexcoders@yahoogroups.com Subject: Re: [fl

[flexcoders] Custom Themes in FLEX.

2005-03-22 Thread Scott Barnes
I have got a programmatic theme applied to my TabSkin.as, TitleBarSkin.as to allow me to decorate the tabs in a fashion that suites my companies corporate branding. Two things I cannot seem to find is: - Theme.fla ? I take it we use the same as Flash MX 2004 (ie Halo) - ControlBar? what skin / cl

Re: [flexcoders] Has anyone written a custom DateField that changes years via combo?

2005-03-22 Thread Scott Barnes
Thanks Jeff, hmm is it my corporate proxy or does that site not load? probably the earlier. I had wanted to remove the user from typing in dates as well thats when typos / exceptions are going to occur (ie we are a multi-national corporation and some may use Australian dateformat (dd/mm/ whil

[flexcoders] java.lang.NullPointerException

2005-03-22 Thread Tarik Ahmed
Hmm...Well my development Flex server decided it hates me. It was working fine up until today. Not sure what happened. I'm running Flex + CF over Jrun and IIS. All my Coldfusion stuff works fine, and Flex runs with the Coldfusion server instance. WE've been relocating machines from one data c

[flexcoders] Has anyone written a custom DateField that changes years via combo?

2005-03-22 Thread Scott Barnes
I dig the dateField concept, yet one thing is clear in that if you need to dates that are say a year from now or even DOB for that matter... clearly its wrong approach. I was hoping that someone here took the time and made a dateField adjustment where you can not only cycle the months via arrows

RE: [flexcoders] Updating datagrid using dynamic combo boxes

2005-03-22 Thread Blake Kadatz
I seem to have solved my own problem. In the HTTPService definitions, I was defining a result="purchaseService.send()" call to refresh the grid. Given that the combo boxes won't be updating except for the first time, I've removed the result event and that seems to have done the trick. Blake --

Re: [flexcoders] Flex Remoting has UPPERCASE results

2005-03-22 Thread Scott Barnes
thanks all for the replies, helped me understand the mechanics of Remoting and work-arounds. I still prefer a consistent case to come back (lower/upper) as i think inheriting case sensitivity from CFMX is bad form? On Tue, 22 Mar 2005 19:04:42 -0500, Darron J. Schall <[EMAIL PROTECTED]> wrote:

[flexcoders] subclassing accordion control.

2005-03-22 Thread Jeff Krueger
All,       I am trying to create a subclass of the accordion control.  I am having problems getting any of the events listening to work.  In the simplest form below the only alert message I get is the “In Constructor”.  Any ideas why the initialize or creationComplete events don

Re: [flexcoders] Flex Remoting has UPPERCASE results

2005-03-22 Thread Darron J. Schall
Scott Barnes wrote: >I noticed in: >http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19356 >Yet, I just spent the last 10mins trying to figure out why my bindings >weren't working - turns out the struct I return from CFMX is now >uppercase in FLEX - instead of case sensitive which

RE: [flexcoders] Flex Remoting has UPPERCASE results

2005-03-22 Thread Peter Farland
This is an involved discussion with much to consider... Your request goes something like this when calling CFCs via RemoteObject: Flex -> Flash -> AMF -> (AMF Gateway/Flash Remoting) -> ColdFusion -> Your CF Page In ActionScript 1.0, the Flash <-- --> AMF interation is case insensitive merely b

Re: [flexcoders] Passing Models into MXML components...

2005-03-22 Thread Scott Barnes
heh it helps if you initialize the variable inside yoru MXML Component.. public var employeeModel; should be public var employeeModel = new Object(); that seemed to have done the trick. eg: --index.mxml--- Scott -- dspTravelProfile.mxml-- On Tue, 22 Mar 2005 11:00:19 -0800,

[flexcoders] Updating datagrid using dynamic combo boxes

2005-03-22 Thread Blake Kadatz
Hi, In my application I have three combo boxes which act as a filter for a datagrid. For example, I have: Customer: Sales rep: Country: _ _ |__|_||___|_| |___|_|

[flexcoders] Flex Remoting has UPPERCASE results

2005-03-22 Thread Scott Barnes
I noticed in: http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19356 It states: "...With Flash Remoting, they are returned in exactly the same case as they are typed. For example, if you returned a query with two columns, (FirstName, LastName), when ColdFusion returns the data thr

Re: [flexcoders] ComboBox Background color - how to change?

2005-03-22 Thread Pushkar Phatak
Anthony, look for the fill-colors and selected-fill-colors property. You can apply these properties to the style for the application. I dont know if it will work though but you can try that may be?! pushkar On Tue, 22 Mar 2005 13:48:08 -, Anthony Merryfield <[EMAIL PROTECTED]> wrote: >

RE: [flexcoders] Advantages / Disadvantages of web-inf/flex/user_ classes directory

2005-03-22 Thread Jason Szeto
Title: Advantages / Disadvantages of web-inf/flex/user_classes directory Well, for one thing, putting them in user_classes makes them available to different applications on your server. If you put them in the application directory, then only that application can use those classes.   Ja

[flexcoders] Advantages / Disadvantages of web-inf/flex/user_classes directory

2005-03-22 Thread Mercer, Dustin
Title: Advantages / Disadvantages of web-inf/flex/user_classes directory Are there any advantages / disadvantages of putting your custom classes inside of web-inf/flex/user_classes directory?  I have seen some articles stating we should put our custom AS classes there, but have not seen any

RE: [flexcoders] Dynamic Window Creation

2005-03-22 Thread Clint Modien
You should be using mx.managers.PopUpManager.createPopUp()   From the docs (which are fantastic)   http://livedocs.macromedia.com/flex/1/flex_docs/wwhelp/wwhimpl/js/html/wwhelp.htm     Passing optional arguments to the createPopUp() method The createPopUp() method takes several op

[flexcoders] Dynamic Window Creation

2005-03-22 Thread Nick
Hey everyone, I just joined the group and look forward to working with all of you to build better Flex apps. I would also like to let you know that I have had a good deal of object oriented programming experience (education) and ActionScript and Flash experience, but not much Flex experience. Tha

[flexcoders] Binding with amf

2005-03-22 Thread [EMAIL PROTECTED]
Hi, it's correct, or there is a best way, this binding about you? In my project, when "scroll" the VO object bind the t_rig.text, but if i wish to insert a new VO the value of t_rig.text will into into vosviluppo[key]).pk.rifesv. Please can you give me more ligth about this concept. Dev

RE: [flexcoders] Passing Models into MXML components...

2005-03-22 Thread Blake Kadatz
I ran into this as well. The ugly way around it is to move the code from the externally referenced file into the main file. So in your case, that would be put the dspTravelProfile.mxml code into index.mxml. However, for anything more than a small app, that's clearly unacceptable. However, given

Re: [flexcoders] LabelFunction problem

2005-03-22 Thread [EMAIL PROTECTED]
sorry work fine, thank you very much, i'm dog tired, now i go home bye bye Devis Clint Modien ha scritto: > Missed the end bracket when I cut and paste > > myColumn.labelFunction = mx.utils.Delegate.create(this,getRiferimento) > > should look like that… (with the closing end backet) > > -

RE: [flexcoders] LabelFunction problem

2005-03-22 Thread Clint Modien
Missed the end bracket when I cut and paste   myColumn.labelFunction = mx.utils.Delegate.create(this,getRiferimento)   should look like that… (with the closing end backet)   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 22, 2005 11:43 AM To: flexcod

RE: [flexcoders] LabelFunction problem

2005-03-22 Thread Clint Modien
Smiles… uhh… you should be setting the labelFunction property like this…   myColumn.labelFunction = mx.utils.Delegate.create(this,getRiferimento your setting the columnName property which expects a string     From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday

Re: [flexcoders] LabelFunction problem

2005-03-22 Thread [EMAIL PROTECTED]
Thank's but myColumn.columnName(mx.utils.Delegate.create(this,getRiferimento)); myColumn.columnName=mx.utils.Delegate.create(this,getRiferimento); flex throws an compile error 1)Type mismatch in assignment statement: found Function where String is required. 2)A function call on a non-function wa

RE: [flexcoders] LabelFunction problem

2005-03-22 Thread Clint Modien
I think your problem is where you set the labelFunction Should look like this... myColumn.labelFunction = mx.utils.Delegate.create(this, getRiferimento); -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 22, 2005 10:43 AM To: Flex Coders Subje

RE: [flexcoders] Timer object for logout

2005-03-22 Thread Jason Szeto
Also, the getTimer() function will return the number of milliseconds that have elapsed since the application started.     From: Clint Modien [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 22, 2005 10:27 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Timer object fo

RE: [flexcoders] Timer object for logout

2005-03-22 Thread Jeff Krueger
Thanks, setInterval was the missing part for me.  I keep looking for timer, sleep, etc.   Thanks   Jeff     From: Clint Modien [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 22, 2005 11:27 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Timer object for logout

RE: [flexcoders] Timer object for logout

2005-03-22 Thread Clint Modien
Not that I can think of off the top of my head… as a work around you could set a global datetime var in the app each time the user clicks on the app.   Then use the setInterval function to check that global var every x number of seconds…   From: Jeff Krueger [mailto:[EMAIL PR

[flexcoders] Timer object for logout

2005-03-22 Thread Jeff Krueger
All,     Is there any type of a timer object that can be used to log a user out of an app after a certain length of inactivity?   Thanks   Jeff   Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit your group on the web, go to:http:/

RE: [flexcoders] Mxml compiler for Unix/Linux

2005-03-22 Thread Cathy Murphy
From /lib > java -Xms32m -Xmx384m -Dsun.io.useCanonCaches=false -Dapplication.home= -jar mxmlc.jar   - Cathy From: Valy Sivec [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 22, 2005 11:01 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Mxml compiler for Unix/Linux

Re: [flexcoders] Mxml compiler for Unix/Linux

2005-03-22 Thread Joe Berkovitz
I don't know about you, but my Flex 1.5 distribution came with Unix shell scripts for mxmlc, compc and fdb. All they do is basically run a JVM against the appropriate .jar file in {FLEX_HOME}/lib, so I am sure you can run the compiler, debugger, etc. on every platform that runs a JVM. Valy Si

[flexcoders] LabelFunction problem

2005-03-22 Thread [EMAIL PROTECTED]
Hi, if you can look my code please, this labelFunction don't work display nothing, but if i don't use dyn dataGridcolumn for examples work fine. Can you help me Devis function Init_Taglie() { dgsviluppo.removeAllColumns(); var myColumn: DataGrid

RE: [flexcoders] which container ?

2005-03-22 Thread Doodi, Hari - BLS CTR
Greatt! That is what I am looking for. Thanks a lot Manish. Now I know what I should do. Thanks! Hari -Original Message- From: Manish Jethani [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 22, 2005 12:01 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] which container

[flexcoders] Opening for Flex engineers -SV

2005-03-22 Thread avalancher71
Pardon the interuption, we have two positions open for skilled Flex developers located in Silicon Valley. The primary task of these positions are Flex client-side engineering, but a strong background in other web engineering roles is required. This is a large company with a big web presence, a

Re: [flexcoders] Mxml compiler for Unix/Linux

2005-03-22 Thread Valy Sivec
Thanks for your answers. It looks that the sintagm "code once test/debug everywhere" is  a perfect fit in this case.   What worries me is that the Flash Player can act a little bit different based on the platform... nice   What confuses me is why the mxml compiler has the "EXE" extensions  

Re: [flexcoders] Mxml compiler for Unix/Linux

2005-03-22 Thread Manish Jethani
On Tue, 22 Mar 2005 11:55:42 -0500, Darron J. Schall <[EMAIL PROTECTED]> wrote: > There's a fundamental flaw in that logic - you're assuming the player works > the same on Linux as it does on Macintosh as it does on Windows. That's not > entirely the case - the Linix player *really* leaves a lo

Re: [flexcoders] which container ?

2005-03-22 Thread Manish Jethani
On Tue, 22 Mar 2005 10:13:54 -0500, Doodi, Hari - BLS CTR <[EMAIL PROTECTED]> wrote: > Does canvas has dragEnter, dragDrop...etc > attributes as DataGrid has. Yes, the Canvas does have 'dragEnter', etc., but you'll have to write handlers for those. For example, you would write a handler for 'dr

Re: [flexcoders] Mxml compiler for Unix/Linux

2005-03-22 Thread Alias
I believe the question was for a compiler, not for deployment. You will need to use the linux flash 7 player for deployment to unix clients - however there are definitely minor issues with the linux player itself, as it has not had the same development resources invested in it as the Windows & M

Re: [flexcoders] Mxml compiler for Unix/Linux

2005-03-22 Thread Darron J. Schall
Manish Jethani wrote: If I compile the mxml files on windows, do I have any issues deploying them to Unix?. You should be able to deploy SWF files onto any operating system as long as the SWF version (Player version 7) is the same. Platform Independent (TM). There's

Re: [flexcoders] Mxml compiler for Unix/Linux

2005-03-22 Thread Manish Jethani
On Tue, 22 Mar 2005 08:00:58 -0800 (PST), Valy Sivec <[EMAIL PROTECTED]> wrote: > If I compile the mxml files on windows, do I have > any issues deploying them to Unix?. You should be able to deploy SWF files onto any operating system as long as the SWF version (Player version 7) is the same.

[flexcoders] Re: Redirect using HTTPService

2005-03-22 Thread zfan00
Thanks a lot! It works! I guess I was too obsessed with the HTTPService. Jen --- In flexcoders@yahoogroups.com, Manish Jethani <[EMAIL PROTECTED]> wrote: > On Mon, 21 Mar 2005 19:12:42 -, zfan00 <[EMAIL PROTECTED]> wrote: > > > > resultFormat="text" method="POST" > > result="ale

[flexcoders] Mxml compiler for Unix/Linux

2005-03-22 Thread Valy Sivec
I was wondering if mxmlc is available for Unix Sun Solaris. I would like to deploy my project on Solaris and I want to precompile the mxml files on Unix as part of the build process. I wrote an ant script for that and it works fine on Windows and I want to move forward to Unix box ( test environ

Re: [flexcoders] weird problem with Flashplayer in Linux

2005-03-22 Thread Matthew Shirey
Well, my guess would be that it didn't affect the Flashplayer directly. Java is used to create the SWF that is passed to the Flashplayer though so maybe some difference in the version was creating a SWF that wasn't quite right for the Linux flash player? M. On Tue, 22 Mar 2005 14:31:35 +0100, C

Re: [flexcoders] Re: User Credentials Cache

2005-03-22 Thread Matthew Shirey
Yes, I may have to do the same, but at this point it represents a major change to the application. =( M. On Tue, 22 Mar 2005 08:13:47 -, billheit <[EMAIL PROTECTED]> wrote: > > > My guess is that the Flex server is caching the credentials > somewhere when using the proxy server. I'm not

RE: [flexcoders] which container ?

2005-03-22 Thread Doodi, Hari - BLS CTR
Thank u v much for the info. I will look into them but I did look at the explorer sample but found drag and drop with ref with datagrid but what all I want to move a image around in a container(mostly a canvas as Manish advised in earlier mail). Does canvas has dragEnter, dragDrop...etc attributes

RE: [flexcoders] which container ?

2005-03-22 Thread Steven Webster
> drag. Where can I find API for drag purpose. http://livedocs.macromedia.com/flex/ Try searching for "Drag and Drop" or "Drag Manager". Or try the Flex Explorer that ships with Flex, there are drag and drop examples in there. And Chapter 14 of the Flex Book covers "Drag and Drop Manager" w

RE: [flexcoders] which container ?

2005-03-22 Thread Doodi, Hari - BLS CTR
Thank you very much for the advice. I was look at macromedia Flex ActionScript and MXML API Reference Version 1.5 but couldn't find any attributes or events or method related to drag. Where can I find API for drag purpose. Please help me, if you have a sample code can you pass on to me. Thanks in

RE: [flexcoders] Build version of SWF?

2005-03-22 Thread Dirk Eismann
well, that's what I meant as I referred to CVS tags ;) Dirk. > -Original Message- > From: Manish Jethani [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 22, 2005 3:36 PM > To: flexcoders@yahoogroups.com > Subject: Re: [flexcoders] Build version of SWF? > > > > On Tue, 22 Mar 2005 15:

Re: [flexcoders] which container ?

2005-03-22 Thread Manish Jethani
On Tue, 22 Mar 2005 09:26:16 -0500, Doodi, Hari - BLS CTR <[EMAIL PROTECTED]> wrote: > Which container is more appropriate to place an image control and > manipulate it - zoom, rotate and drag image within the container? I'd go for Canvas if I want to move/resize the Image control repeat

Re: [flexcoders] Build version of SWF?

2005-03-22 Thread Manish Jethani
On Tue, 22 Mar 2005 15:23:56 +0100, Dirk Eismann <[EMAIL PROTECTED]> wrote: > The idea is to have a "About" box inside our app that shows the current build > number. Using a more general version number will be the workaround then. Oh, you could just have a Version.as with something like the fol

RE: [flexcoders] Build version of SWF?

2005-03-22 Thread Abdul Qabiz
Ignore thisYou already have solution... -abdul -Original Message- From: Abdul Qabiz [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 22, 2005 7:56 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Build version of SWF? Hi Dirk, How do you want to access this number? To u

[flexcoders] which container ?

2005-03-22 Thread Doodi, Hari - BLS CTR
Hi, Which container is more appropriate to place an image control and manipulate it - zoom, rotate and drag image within the container? Thanks! Hari Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from

RE: [flexcoders] Build version of SWF?

2005-03-22 Thread Abdul Qabiz
Hi Dirk, How do you want to access this number? To use in ActionScript or to use in file system for comparing with other versions? -abdul -Original Message- From: Dirk Eismann [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 22, 2005 7:50 PM To: flexcoders@yahoogroups.com Subject: RE: [

RE: [flexcoders] Build version of SWF?

2005-03-22 Thread Dirk Eismann
Hi Abdul, > Dirk, is this you are looking for? yes! > If yes, then no compiler doesn't embed any such info AFAIK. ok - no problem. > But you can do something like that, as I mentioned couple of ways in > previous mails... thanks for the hints. We do have all of our source files inside CVS

RE: [flexcoders] Build version of SWF?

2005-03-22 Thread tor.kristensen
I've been looking for this as well >Exactly - I mean the build number of the resulting SWF file. Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*>

RE: [flexcoders] Build version of SWF?

2005-03-22 Thread Abdul Qabiz
Hi Jesse, Yeah Player and IDE do have build numbers...But a SWF file doesn't have a build number... But I guessed, what he is looking for. In windows programming, if you develop a windows exe/dll, an incremental build number is assigned to exe/dll, each time you build the project. Probably same

RE: [flexcoders] Build version of SWF?

2005-03-22 Thread Dirk Eismann
Exactly - I mean the build number of the resulting SWF file. e.g. creating file foo.mxml and compiling it for the first time sets the build number of the resulting foo.mxml.swf to 1, after 42 compilations the build number is 42 and so on. Dirk. > -Original Message- > From: JesterXL [

RE: [flexcoders] internal representation of an array

2005-03-22 Thread Erik Westra
Yeah that was likely to cause the problem. U could create a static class to hold the array. And then reference the array in your separate classes that way they are all working with the same array. Greetz Erik -Original Message- From: Krzysztof Szlapinski [mailto:[EMAIL PROTECTED]

Re: [flexcoders] Build version of SWF?

2005-03-22 Thread JesterXL
He doesn't mean trace($version) or trace(System.capabilities.version), he means the build. Like, Flash MX came with 6.0.25.0 (or something close to it). As time went one, and sub-players were released, as was ellipsis, the default player DLL used to actually compile to the SWF as higher. So,

RE: [flexcoders] Build version of SWF?

2005-03-22 Thread Abdul Qabiz
>> You can write some code to keep version number in a persistent XML file By this I mean, to write some server-side code, JSP file which has embedded MXML... JSP loads the last count, increments the count and passes to MXML via flash vars...This is other way? -abdul -Original Message-

RE: [flexcoders] ComboBox Background color - how to change?

2005-03-22 Thread Anthony Merryfield
Thanks Pushkar, That's useful to know about, it looks alot better, is there any way to do fillColors="[0xff,0xff]" in a stylesheet so it is applied application wide? T -Original Message- From: Pushkar Phatak [mailto:[EMAIL PROTECTED] Sent: 22 March 2005 12:36 To: flexcoders@ya

RE: [flexcoders] Build version of SWF?

2005-03-22 Thread Abdul Qabiz
Hi, There is no build-version of SWF. Do you mean SWF version? In case of Flex, it would be 7 always.. You can probably have an ActionScript variable inside SWF, which represents the SWF build-version. You can write some code to keep version number in a persistent XML file and this xml file get

RE: [flexcoders] flashvars

2005-03-22 Thread Abdul Qabiz
Hi, You should be able to see it while initialize. Can you please post your code? FlashVars are set before application initialization starts...Please check your code again... Also, you need to declare variables in your application, in order to use passed vars.. ##FlashVarsTest.mxml###

[flexcoders] Build version of SWF?

2005-03-22 Thread Dirk Eismann
Silly question but is there a built-in way to read out the "build version" of the compiled SWF file? Any ideas? Thanks, Dirk. Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to:

Re: [flexcoders] weird problem with Flashplayer in Linux

2005-03-22 Thread Christoph Guse
Hi James, despite my answer from yesterday I updated the linux box to jdk1.5.0_02 and tomcat 5.5.7. The problem disappeared. I'm astonished. Wich effect can the JVM have to the Flashplayer? Greets Christoph James Ward schrieb: > Perhaps the difference is JVM version? Are you running the lat

Re: [flexcoders] AutoWidth/AutoHeight?

2005-03-22 Thread Scott Barnes
doh! bwhahaha - so simple yet overlooked. On Tue, 22 Mar 2005 15:43:24 +0530, Manish Jethani <[EMAIL PROTECTED]> wrote: > > On Tue, 22 Mar 2005 12:54:23 +1000, Scott Barnes <[EMAIL PROTECTED]> wrote: > > > Q. How do you subclass control tags, as at the moment I tried to do a > > DataGrid befo

[flexcoders] flashvars

2005-03-22 Thread viraf_bankwalla
Hi, At what stage are the flashvars set in the application? I do not seem to have them set at initialize. Thanks Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMA

Re: [flexcoders] ComboBox Background color - how to change?

2005-03-22 Thread Pushkar Phatak
try somethign like this Antony Hope this helps Pushkar On Tue, 22 Mar 2005 12:04:15 -, Anthony Merryfield <[EMAIL PROTECTED]> wrote: > > > Hello, > > How do you go about changing the default color of the ComboBox? The gradient > in the background sticks out a bit too much... > > Che

[flexcoders] ComboBox Background color - how to change?

2005-03-22 Thread Anthony Merryfield
Title: ComboBox Background color - how to change? Hello, How do you go about changing the default color of the ComboBox? The gradient in the background sticks out a bit too much... Cheers, Tony. This communication together with any attachments transmitted with it ("this E-Mail") i

[flexcoders] Re: dataGrid dataProvider with blank rows?

2005-03-22 Thread bhaq1972
I was looking at the help and dataProvider.addItem() method dispatches a modelchanged event (so you dont have to).therefore remove mx.core.Application.application.dgcolore.dataProvider.dispatchEvent ({type:"modelChanged"});. First, of all it should have worked (try out a simple example) S

Re: [flexcoders] At runtime enable/disable of menuitems

2005-03-22 Thread Manish Jethani
On Mon, 21 Mar 2005 10:47:57 +0100, Jeroen De Vos <[EMAIL PROTECTED]> wrote: > I know this, but how can I tell the menubar that when a user selects an item > in, for example, a datagrid that the 'edit' menuitem needs to be enabled and > if nothing is selected in the datagrid, then the 'edit' need

Re: [flexcoders] AutoWidth/AutoHeight?

2005-03-22 Thread Manish Jethani
On Tue, 22 Mar 2005 12:54:23 +1000, Scott Barnes <[EMAIL PROTECTED]> wrote: > Q. How do you subclass control tags, as at the moment I tried to do a > DataGrid before but when i use it spat an error. Use the same namespace. ... Manish Yahoo! Groups Links <*> To visit

Re: [flexcoders] Redirect using HTTPService

2005-03-22 Thread Manish Jethani
On Mon, 21 Mar 2005 19:12:42 -, zfan00 <[EMAIL PROTECTED]> wrote: > resultFormat="text" method="POST" > result="alert(svc.result.toString())"> > > {userName.text} > {password.text} > > Instead of HTTPService, I think you want to use

[flexcoders] mx.formatters.DateFormatter parsing !

2005-03-22 Thread r0main
Hi MM folks, why doesn't the DateFormatter object have a non-static parse() function that TAKE into consideration the formatString given ? Grrr, I have to code that by myself... Ciao, r0main Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/

Re: [flexcoders] Re: dataGrid dataProvider with blank rows?

2005-03-22 Thread [EMAIL PROTECTED]
sorry but don't work only if i click into row of dataGrid display the user change ? Devis bhaq1972 ha scritto: >try firing a modelChanged event after your addItem eg >mx.core.Application.application.dgcolore.dataProvider.addItem >(vocolore); >mx.core.Application.application.dgcolore.dataProvider

Re: [flexcoders] Tomcat, Unix and .swo files

2005-03-22 Thread Christoph Guse
Hi Will, I prefer to use the Tomcat Web Application Manager. In the manager you can deploy/undeploy an application or even start/stop/reload an application in a convenient way. If it is installed, you can normally find it in localhost:8080/manager. To get access you have to change the tomcat-u

[flexcoders] Re: dataGrid dataProvider with blank rows?

2005-03-22 Thread bhaq1972
try firing a modelChanged event after your addItem eg mx.core.Application.application.dgcolore.dataProvider.addItem (vocolore); mx.core.Application.application.dgcolore.dataProvider.dispatchEvent ({type:"modelChanged"}); --- In flexcoders@yahoogroups.com, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>

Re: [flexcoders] Re: Star System

2005-03-22 Thread Ketan Bengali
Sorry.. had all the display code in set. Shifted it to draw now. Now it should work. Attaching the updated file. P.S: The component checks if the number received as parameter is a whole integer else rounds off. Example: if num is 3.49 and lesser rounds to 3 else rounds to 4. Regards, Ketan B

Re: [flexcoders] Re: dataGrid dataProvider with blank rows?

2005-03-22 Thread [EMAIL PROTECTED]
Thank's work fine, but now my dataGrid not refresh the data into dataGrid in "realTime" , only if i click with mouse into a row dataGrid the data are refresh! Bye Devis bhaq1972 ha scritto: >try >mx.core.Application.application.dgcolore.dataProvider.addItem >(vocolore); > > > >--- In flexcoder

[flexcoders] Re: dataGrid dataProvider with blank rows?

2005-03-22 Thread bhaq1972
try mx.core.Application.application.dgcolore.dataProvider.addItem (vocolore); --- In flexcoders@yahoogroups.com, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi, > i have an dataGrid with an dataProvider of array of CColoriVO. > > from here work: > cellPress="key=dg.selectedIndex"> > vo

[flexcoders] Re: User Credentials Cache

2005-03-22 Thread billheit
My guess is that the Flex server is caching the credentials somewhere when using the proxy server. I'm not sure if this is a bug or just that it is not designed to be used this way. Anyway, I have not gotten a solution from this forum or the Flex forum on Macromedia's site so I have changed