RE: [flexcoders] FLEX and CF7..

2005-05-12 Thread Hans Omli
It depends what you're trying to accomplish and what metric you use to measure performance. The price-to-performance ratio, however, is best with Tomcat. ;-) On a more serious note, my take on why Flex doesn't include a JRun license is that it is being targeted toward Enterprises who are very

[flexcoders] RE: [flexcoders-Ely Greenfield ] Gantt chart in flex?

2005-05-12 Thread nithya karthik
I have never come across a 'floating bar chart' in flex 1.5... Could u pls tell me how to use it? Ely Greenfield [EMAIL PROTECTED] wrote: Nithya – Flex 1.5 supports a ‘floating bar chart’ component, which is sufficient for what most people mean when they ask for a gantt chart. If

[flexcoders] Re: why can not pass arguments to flex in portal js p page

2005-05-12 Thread loveewind
Matt: yes,the two page's println content are same, also I put the trace() in function initLocale(){ trace('log'); language = %=l%; country = %=c%; mx.controls.Alert.show(language); resourceBundleDelegate.setLocale(language,country); } it have not execute, and I

RE: [flexcoders] RE: [flexcoders-Ely Greenfield ] Gantt chart in flex?

2005-05-12 Thread Ely Greenfield
Sure. To make a standard bar chart, you need to generate data that has the value that the right edge of each bar should represent in a named field: Var dp = [ { value: 24 }, { value: 47 }, { value: 15 } ]; BarChart dataProvider={dp} series Array BarSeries

Re: [flexcoders] Accordion header class, checkbox

2005-05-12 Thread Manish Jethani
On 5/12/05, Andrew Spaulding [EMAIL PROTECTED] wrote: Is it possible to add icons, and possibly even a checkbox to the right hand side of an Accordion Header? This is kind of a matter of urgency, any help would be appreciated. I know there exists an AccordionHEaderClass, but if someone could

Re: [flexcoders] Set Drop Down Menu Width wider than actual menu width?

2005-05-12 Thread Manish Jethani
On 5/12/05, nextadvantage [EMAIL PROTECTED] wrote: Can I set the width of a menu drop down list to fit the drop down text width or force the drop down menu to be wider than the select width? I'm not sure what you mean. You can generally set the width of an UI object if you have a reference to

[flexcoders] Re: Setting percentage value by setValue

2005-05-12 Thread sreejithunni
Manish, I did try that ... For example, in the CellRenderer if I use a mx:Text it displays the % value but does not work for anything else such as mx:Image or mx:HBox. ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=http://www.macromedia.com/2003/mxml; width=100% xmlns=* mx:Script ![CDATA[

Re: [flexcoders] Charting

2005-05-12 Thread Rich Tretola
Thank you Matt. I guess I missed your previous post. Rich On 5/11/05, Matt Chotin [EMAIL PROTECTED] wrote: I sent this out a few weeks ago I think, different subject: This was data.xml I think in drilldown: list month name=Jan-04 total=400263 average=80052

[flexcoders] Legend in chart..

2005-05-12 Thread nithya karthik
hai, I'd like to know if the legend for chart can be made horizontal.. by defult the legend items are aligned vertically, but i want it to be vertical. how to do it? and how do i have the x-axis of a bar chart at the top instead the bottom? Yahoo! Messenger - Communicate instantly..."Ping"

[flexcoders] How to load a .mdb from a flex application?

2005-05-12 Thread nithya karthik
hai, How to load a .mdb file from a flex application either on click of a button or somehow? thanks, nithya Yahoo! Messenger - Communicate instantly..."Ping" your friends today! Download Messenger Now Yahoo! Groups Links To visit your group on the web, go

Re: [flexcoders] FLEX and CF7..

2005-05-12 Thread Scott Barnes
On 5/12/05, Hans Omli [EMAIL PROTECTED] wrote: It depends what you're trying to accomplish and what metric you use to measure performance. The price-to-performance ratio, however, is best with Tomcat. ;-) Yeah, well i had thought we owned CF7 Enterprise but it was standard (oh well, next

Re: [flexcoders] How to load a .mdb from a flex application?

2005-05-12 Thread Manish Jethani
On 5/12/05, nithya karthik [EMAIL PROTECTED] wrote: How to load a .mdb file from a flex application either on click of a button or somehow? You mean a Microsoft Access database? You'll have to convert to XML. Yahoo! Groups Links * To visit your group on the web, go to:

RE: [flexcoders] How to load a .mdb from a flex application?

2005-05-12 Thread Steven Webster
Do you mean how to do you connect Flex to an access database ?!? Flex doesn't connect directly to a database; you would have some middleware perform your database integration (eg j2EE code, or some C# code exposed as a web service) and them use one of the Flex Data Service APIs (eg

[flexcoders] How can I show validation error message with ActionScript progrmming?

2005-05-12 Thread cto
Hi~ I want to show a validation error messgae with ActionScript. I general, if there is invalid data in form with validator, user can see the error message(ErrorTip) when he rollover the formItem. But, my customer want to show this error message without mouse rollOver. Do you have

RE: [flexcoders] How to load a .mdb from a flex application?

2005-05-12 Thread nithya karthik
Is there any possibility to run an EXE on click of a button( i'd like to open an MS Access application) regards, nithyaSteven Webster [EMAIL PROTECTED] wrote: Do you mean how to do you connect Flex to an access database ?!? Flex doesn't connect directly to a database; you would have some

RE: [flexcoders] How to load a .mdb from a flex application?

2005-05-12 Thread Abdul Qabiz
Hi, I guess, you can try to open .mdb file using getURL(..), user would be prompted to save or open the file. File would be opened with default application to open .mdb, which is MS Access if someone has not changed it to Open Office :)try this: getURL("my.mdb", "_blank"); -abdul

[flexcoders] Dynamically changing the default icon of tree

2005-05-12 Thread nithya karthik
hai, I' like to change the default icon for the tree based on some condition. the code which i'm using right now doen't work.. pls tell me where i go wrong ?xml version="1.0" encoding="utf-8"?mx:Application

RE: [flexcoders] How to load a .mdb from a flex application?

2005-05-12 Thread nithya karthik
Hai, I tried using the getURL(), but it didnt work.. I need to open an MS Access application with the particular .mdb file opened on click of a button or something... please help me with the code thanks, nithyaAbdul Qabiz [EMAIL PROTECTED] wrote: Hi, I guess, you can try to open .mdb file

[flexcoders] applications that forget variables

2005-05-12 Thread nostra72
Is there a limit to a scope of a variable if I store it in an array because I have done so in the past declared it public at the top of the mxml file yet at times it seems the computer forgets the value by the time it goes through like ten functions. Is this unusual and if so is there a way to

RE: [flexcoders] applications that forget variables

2005-05-12 Thread Mika Kiljunen
Hi, you seem to be having the same problem that I had earlier (on popup and binding ) and I faced it again yesterday. I have an array on my main as file that contains Value objects. I launch a popup window and the popup window sets its internal variable like this iMyArray =

[flexcoders] HTTP service context.root

2005-05-12 Thread Valy Sivec
Hello, In a flex application I have defined a servlet as HTTP service ( see the conf. below ). In case the "production-mode" is set to false in the flex-config.xml everything works fine. Wanted to change the production-mode param to true, then I get an error "HTTP Service Fault". I woudn't

[flexcoders] Re: FLEX and CF7..

2005-05-12 Thread David Gassner
If it's just a question of pricing, it's definitely less expensive to buy a separate JRun license - $899 - than to upgrade from CFMX Standard to CFMX Enterprise, which lists at $5,999. The limitation is that you won't be able to wrap Flex and CFMX into a single server - the best you'll be

RE: [flexcoders] How to load a .mdb from a flex application?

2005-05-12 Thread Sho Kuwamoto
In general, you cannot launch arbitrary applications from Flex for the same reason that you cannot launch arbitrary applications from HTML: security. If you need to execute server-side code, it needs to happen through a web server, such as .Net, PHP, CF, or any J2EE server. If you need to

[flexcoders] Re: How to load a .mdb from a flex application?

2005-05-12 Thread Dave Gillem
I'm New to Flex, but using getURL() would require the user to have the app on their machine and have that file type defined to open up in the app your trying to trigger. -Dave --- In flexcoders@yahoogroups.com, nithya karthik [EMAIL PROTECTED] wrote: hai, How to load a .mdb file from a

[flexcoders] Re: labelFunction item object and font style

2005-05-12 Thread msloumac
thanks once again Matt I will give your suggestion a try :) --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Maybe it'd just be easier to use a simple cell renderer of a VBox with a label inside and in your setValue method just adjust your properties as appropriate?

[flexcoders] Lose reference to my Validator object after an asynchronous call

2005-05-12 Thread bhaq1972
Hi I'm doing an async call (using the Pending call procedure) in my extended TextInput (which has a mx:Validator object attached). I save the validator object reference in a class variable (so i can use it in the result handler later on), but when I return to the result handler i dont get the

[flexcoders] Re: How can I show validation error message with ActionScript progrmming?

2005-05-12 Thread jgserrault
I was just about to begin working on what you discribe. My initial thought was to simply take the already formatted tooltip and tie it's appearance, or lack thereof, to the logic that controls the on/off status of the red box around the invalid field. Until I see how it looks with multiple

RE: [flexcoders] Legend in chart..

2005-05-12 Thread Ely Greenfield
Yes, you can set Legend direction=horizontal / And no, you cant put the horizontal axis for a chart at the top. Its something were considering for Flex 2.0 Ely. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of nithya karthik

RE: [flexcoders] Re: Setting percentage value by setValue

2005-05-12 Thread Sho Kuwamoto
I believe the problem is that you didn't set maintainAspectRatio="false" on the image. Try this: ?xml version="1.0" encoding="utf-8"?mx:Canvas xmlns:mx="http://www.macromedia.com/2003/mxml" width="100%" xmlns="*"mx:Script![CDATA[function setValue(str:String,obj:Object) { colorBar.width

Re: [flexcoders] How can I show validation error message with ActionScript progrmming?

2005-05-12 Thread michael keirnan
the errorString property of UIComponent causes the red borders and rollover error tip. errorString is set by the default validation listener when it gets errors. so you'll need to do something like this: - write a validation listener that does not set errorString, but instead presents the

[flexcoders] CurrencyFormatter

2005-05-12 Thread jonbez
Hi Everyone, I need to be able to display an amount in the following format: 15,99$ I use the following currency formatter, but it does not seem to work. mx:CurrencyFormatter id=priceFormat precision=2 rounding=nearest alignSymbol=right decimalSeparatorFrom=. decimalSeparatorTo=,/ (The

[flexcoders] Pass variable to mx:image tag

2005-05-12 Thread cazzaran
I need to include an external SWF file that takes variables to display some content. It's just a banner, so the mx:Image tag is sufficient, except that I can't figure out how to pass variable information to it. There's talk of a flashVar tag, but that's for JSP, and it doesn't look like

RE: [flexcoders] Pass variable to mx:image tag

2005-05-12 Thread Matt Horn
You can append query string params to pass variable data to an included SWF. psuedoexample: var src = "" + myVar;... mx:Image source="{src}" / HTH, matt horn flex docs From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cazzaranSent: Thursday, May 12,

Re: [flexcoders] Re: FLEX and CF7..

2005-05-12 Thread Paul Lee
OK... here is my setup. CFMX7 Ent. Full Version.. Also I have Flex 1.5 Installed. I am running CFMX7 under IIS 5 on XP... everything is great. Somehow I can see some the funtionality that flex offers in the "getting started and demo" area of coldfusion. I am pointing IIS websiteto a dir

Re: [flexcoders] New Guy (aka CF7 + Flex)

2005-05-12 Thread Tarik Ahmed
Were you guys able to get CF7+Flex going where your Flex and CF are running under the same Jrun instance with a shared context root in that you can put your CF and Flex files in the same dir and have no issues with remoting and such? Ben Elmore wrote: We are about to deploy on a

Re: [flexcoders] Re: FLEX and CF7..

2005-05-12 Thread Tarik Ahmed
Hey Paul did you follow these instructions: http://www.macromedia.com/support/documentation/en/flex/1_5/flexforcf.html Paul Lee wrote: OK... here is my setup. CFMX7 Ent. Full Version.. Also I have Flex 1.5 Installed. I am running CFMX7 under IIS 5 on XP... everything is great.

[flexcoders] Anyone seen this...Bueller???

2005-05-12 Thread Rob Dickey
Ok, so I'm happily (well, most of the time) coding away in Flex Builder.I am using Tomcat as my testing server, which has been working great for months.I have a non-trial license for both Flex and FlexBuilder.and much to my dismay I get the following message when testing my app within FlexBuilder.

RE: [flexcoders] Legend in chart.. What else is coming in 2.0?

2005-05-12 Thread Ely Greenfield
Pekka For all the usual boilerplate reasons, I cant go into too much detail on what is being considered for future releases for flex. I can tell you, however, that dual y scale axes is the absolute top request for charts in flex, and we hear you loud and clear. You can put

RE: [flexcoders] Debugging objects

2005-05-12 Thread Tracy Spratt
If FlexBuilder, use the watch panel. Find your property once, Right-click it, and Add to Watch List. Additionally, the Variables page does not update reliably as you setp through the code, but the Watch Panel does. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL

Re: [flexcoders] Anyone seen this...Bueller???

2005-05-12 Thread Tarik Ahmed
Have you tried the licensetool to see what it says? Rob Dickey wrote: Ok, so I'm happily (well, most of the time) coding away in Flex Builder.I am using Tomcat as my testing server, which has been working great for months.I have a non-trial license for both Flex and FlexBuilder.and much to my

RE: [flexcoders] Adding icon to panel?

2005-05-12 Thread Tracy Spratt
What if you put the Panel on a Canvas at 0,0, then put the image/icon wherever you want on top? Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Wednesday, May 11, 2005 4:26 PM To: flexcoders@yahoogroups.com Subject: Re:

[flexcoders] Default Text Color?

2005-05-12 Thread JesterXL
I suck at math; what is 734012 in hex? Thanks if you can help. --JesterXL 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] * Your use of Yahoo! Groups is

[flexcoders] Classloader Problem?

2005-05-12 Thread Stacy Young
Some of our developers are having trouble running one of our apps and we can't figure out what the heck is going on. Error: 6 Errors found. Error /com/optimal/raven/resources/raven.css:-1 macromedia.css.LocatorParser Error Could not find class

Re: [flexcoders] Default Text Color?

2005-05-12 Thread JesterXL
0x0B333C; right? - Original Message - From: JesterXL [EMAIL PROTECTED] To: Flexcoders flexcoders@yahoogroups.com Sent: Thursday, May 12, 2005 12:57 PM Subject: [flexcoders] Default Text Color? I suck at math; what is 734012 in hex? Thanks if you can help. --JesterXL Yahoo! Groups

Re: [flexcoders] Default Text Color?

2005-05-12 Thread Dave Carabetta
On 5/12/05, JesterXL [EMAIL PROTECTED] wrote: I suck at math; what is 734012 in hex? Thanks if you can help. b333c. Regards, Dave. 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

RE: [flexcoders] Default Text Color?

2005-05-12 Thread Matt Chotin
Yep. I just use the calculator in Windows in scientific mode to help me out for stuff like this J From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of JesterXL Sent: Thursday, May 12, 2005 10:07 AM To: flexcoders@yahoogroups.com Subject: Re:

Re: [flexcoders] Default Text Color?

2005-05-12 Thread Dave Carabetta
On 5/12/05, JesterXL [EMAIL PROTECTED] wrote: 0x0B333C; right? Correct. Regards, Dave. 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] * Your use of

Re: [flexcoders] Default Text Color?

2005-05-12 Thread JesterXL
Rock, that's what I ended up doing; good to know it's an accurate way of doing things. Thanks yall! - Original Message - From: Matt Chotin To: flexcoders@yahoogroups.com Sent: Thursday, May 12, 2005 1:10 PM Subject: RE: [flexcoders] Default Text Color? Yep. I just use the

[flexcoders] Internal popups

2005-05-12 Thread Jeff Beeman
Ive been scouring the documentation, but I cant seem to find how to do something that should be quite simple. How do I create a popup window that doesnt reference an external file? All examples point to loading in an external mxml file, but I would like to simply create a panel that is

RE: [flexcoders] Classloader Problem?

2005-05-12 Thread Stacy Young
Thanks to Jim, were looking to see if fop.jar is the issue -Stace From: Stacy Young Sent: Thursday, May 12, 2005 1:00 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Classloader Problem? Some of our developers are having trouble running one of our apps and

Re: [flexcoders] Default Text Color?

2005-05-12 Thread michael keirnan
Matt Chotin wrote: Yep. I just use the calculator in Windows in scientific mode to help me out for stuff like this J ugh, why go through all that trouble? perl -e 'printf("%x\n", "734012")' ;) /mgk From: flexcoders@yahoogroups.com

RE: [flexcoders] Classloader Problem?

2005-05-12 Thread Dimitrios Gianninas
Answer: Ok I finally understand the reason why fop.jar inside the CLASSPATH breaks Flex applications. Flex doesn't use the fop.jar but uses various batik components (http://xml.apache.org/batik/). In the Mainifest.mf, in the fop.jar shipped with BEA, there is this

[flexcoders] Charting Multiple Selections in dataGrid

2005-05-12 Thread Dave
I'm stumped. I want my chart to add a series for each row selected from a corresponding dataGrid. I've used the Series Selection example (under Misc Techniques and Examples) here http://flexapps.macromedia.com/flex15/chartexplorer/explorer.mxml as the model, but it still doesn't work. The

[flexcoders] XMLObjectOutput bug

2005-05-12 Thread Sean McKibben
I think that the trObj method of XMLObjectOutput.as has as problem where it keeps doubling the size of its internal __stack variable with each new object it has. The section which has: // verify that we have not already seen this object if(obj instanceof Array || obj

[flexcoders] SWFs and domains

2005-05-12 Thread Dimitrios Gianninas
Hi, I know I have this question already, but maybe some help with someone with more experience will help. Local I have the following setup: http://localhost:8100/contextA/appA.mxml http://localhost:8200/contextB/appB.mxml Using the Loader component, appA can load appB and then appB has

[flexcoders] Re: Pass variable to mx:image tag

2005-05-12 Thread cazzaran
Matt, Thanks for the response. A related question: is there a limit on the size of the query string? I know for browsers it's 255 chars. Otherwise, is there a way to load the values as FlashVars? -Josh --- In flexcoders@yahoogroups.com, Matt Horn [EMAIL PROTECTED] wrote: You can append

Re: [flexcoders] SWFs and domains

2005-05-12 Thread JesterXL
Have you tried: - System.security.loadPolicyFile? - System.allowDomain()? - Original Message - From: Dimitrios Gianninas To: flexcoders@yahoogroups.com Sent: Thursday, May 12, 2005 1:39 PM Subject: [flexcoders] SWFs and domains Hi, I know I have this question already, but

[flexcoders] how to use a repeater question

2005-05-12 Thread cnewroth55
is it possible to use a repeater control to 'duplicate' a group of checkboxes? I have this text array i would like to have put into a group of checkboxes; ![CDATA[ var thrustData:Array = [All Reports, ASMT - Affordable Structures Mfg. Tech., ALE - Advanced Lean Efficient, ASC - Advanced

[flexcoders] ThemeColor in CellRenderers

2005-05-12 Thread JesterXL
I have the same problem in Flash. How do I have controls used in a CellRenderer adopt the global themeColor? Do I have to do like: createClassObject(ComboBox, my_cb, getNextHighestDepth(), {styleName: owner}); Or something? ThemeColor is haloOrange, but the controls default to haloGreen.

[flexcoders] Re: calling a CFR from a CFC - got it working!

2005-05-12 Thread cnewroth55
the cfm file code: cfinvoke component=gvs_reports method=Needs_Report returnvariable=MyReport cfinvokeargument name=ReportFormat value=PDF /cfinvoke the CFC code: cfcomponent cffunction name=Needs_Query returntype=query output=false access=remote cfset var

[flexcoders] can i invoke an exe in windows from any event in mxml file

2005-05-12 Thread send2martin
hi i an a newbe to flexand i dont know if this question is answered already if pls redirect me to that .. else help me to find if i can load a windows application .. from a mxml event ... i need to opena MS acess file at runtime (onclick) thnk in advance Yahoo! Groups Links * To

RE: [flexcoders] Re: Pass variable to mx:image tag

2005-05-12 Thread Matt Horn
I don't think the limitation is 255 characters. At one time, that was a limitation on some servers. It's more like 4000 on most modern browsers and web servers. Here's something relevant from a devshed discussionI found googling: There isn't any limit in theory. Any limit on the length

[flexcoders] can i save my data to a Excel spreadsheet

2005-05-12 Thread send2martin
hi i would like to know if there is a way to export my data from a data grid to a .xls file .. thnk in advance 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

RE: [flexcoders] SWFs and domains

2005-05-12 Thread Dimitrios Gianninas
Thanks for the suggestions Jester, I removed the crossdomain.xml and tried: System.security.allowDomain( "*" ); Didn't work. Then I added a jimmy.xml which is my personal crossdomain.xml file with the same content as what I mention previously. And then I added in appB.mxml:

Re: [flexcoders] Internal popups

2005-05-12 Thread JesterXL
It's compiled into the final SWF so there isn't technically a dependency. However, if you want a simple popup, you could use an Alert. check out Alert.show for that, and for loading internal components as popups, look up PopUpManager.createPopUp - Original Message - From: Jeff

RE: [flexcoders] Internal popups

2005-05-12 Thread Jeff Tapper
try this: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; mx:Button click=toggleVis() label=click me/ mx:TitleWindow id=tw title=Some title mx:Label text=hi there/ /mx:TitleWindow mx:Script

Re: [flexcoders] SWFs and domains

2005-05-12 Thread JesterXL
Dude, there's always a way, I've got TONS of ideas! Hrm... Did you add System.security.allowDomain in appA.mxml? Have tried System.security.allowInsecureDomain()? Those, I believe, need to be in the caller SWF so when B goes, "Yo A, can I borrow data?" A will have code in it granting

[flexcoders] SWFs as backgrounds

2005-05-12 Thread Ryan Scott Jones
Does anyone know if it is possible to have a SWF instead of an image as the background of a flex app? Thanks, Ryan 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

Re: [flexcoders] SWFs as backgrounds

2005-05-12 Thread JesterXL
Go look here: C:\Program Files\Macromedia\Flex\extras\stylesheets Good examples in the CSS how to do it. - Original Message - From: Ryan Scott Jones To: flexcoders@yahoogroups.com Sent: Thursday, May 12, 2005 2:35 PM Subject: [flexcoders] SWFs as backgrounds Does anyone know

RE: [flexcoders] SWFs as backgrounds

2005-05-12 Thread Sreejith Unnikrishnan
Title: Message You could use a ".swc". Open up the theme files that come with Flex. Look for thebackground component. Make yor changes, export it from the library as swc and use it as a theme in flex! -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Internal popups

2005-05-12 Thread Jeff Beeman
The problem is that the TitleWindow in your example still takes up space in the application window. I need it to behave like a normal popup. /** * Jeff Beeman **/ -Original Message- From:

RE: [flexcoders] SWFs and domains

2005-05-12 Thread Dimitrios Gianninas
Yup,I understand your point. Ok I left the System.security.loadPolicyFile( http://localhost:8200/contextB/jimmy.xml ); in appB. I added System.security.allowInsecureDomain( "*" ) to appA.mxml I also tried System.security.allowDomain( "*" ) in appA.mxml Nadda the solution to this

RE: [flexcoders] Internal popups

2005-05-12 Thread Sreejith Unnikrishnan
Title: Message Confused? Well, maybe you should help by defining "normal popup" :-) -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff BeemanSent: Friday, May 13, 2005 12:14 AMTo: flexcoders@yahoogroups.comSubject: RE:

RE: [flexcoders] Internal popups

2005-05-12 Thread Jeff Beeman
Hmm still not what Im looking for. I guess what I would like is for something like this (what the previous responder sent) to work: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml mx:Button click=toggleVis() label=click me/

Re: [flexcoders] SWFs and domains

2005-05-12 Thread JesterXL
Darn... hrm... Try 'em both without anything in the (), like: System.security.allowDomain() System.security.allowInsecureDomain() - Original Message - From: Dimitrios Gianninas To: flexcoders@yahoogroups.com Sent: Thursday, May 12, 2005 2:46 PM Subject: RE: [flexcoders] SWFs

RE: [flexcoders] Internal popups

2005-05-12 Thread Sreejith Unnikrishnan
Title: Message ok ... thats interesting .. Here's an idea ... you can try it ... mx:Application mx:Canvas mx:HBox // Your entire application goes here // /mx:HBox mx:HBox // The poup you need can go in here preferably in another Hbox hidden initially that takes x and y

Re: [flexcoders] Internal popups

2005-05-12 Thread Matthew Shirey
Yeah, you were just a little quicker than me getting that one posted. Mine is pretty much the same solution: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml mx:Script ![CDATA[ function toggleVis(){ tw.visible = !tw.visible; } ]]

RE: [flexcoders] SWFs and domains

2005-05-12 Thread Dimitrios Gianninas
lowers head... Nope. Well I have a plan B... but it would be nice if this worked. Don't know if you can think of anything else... thanks for the help Jester. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: JesterXL [mailto:[EMAIL PROTECTED] Sent: Thursday, May

RE: [flexcoders] Internal popups

2005-05-12 Thread Sreejith Unnikrishnan
Title: Message Yes Matthew, sorry better luck next time :-) One correction, if I understood Jeff's requirements correctly, he does not want to see the TitleWindow in its native form with the header,etc. So he will have to go with a HBox, I think. Sree -Original

[flexcoders] Re: Lose reference to my Validator object after an asynchronous call

2005-05-12 Thread bhaq1972
thanks for your response. I will look at isStructureValid(). I used it ages ago but the example i tried from the flex docs wasn't making any async calls. but i will take a look again. --- In flexcoders@yahoogroups.com, jgserrault [EMAIL PROTECTED] wrote: Could you perhaps just use/call the

[flexcoders] Re: can i invoke an exe in windows from any event in mxml file

2005-05-12 Thread temporal_illusion
There was just a thread about a similar topic a few hours ago: http://www.mail-archive.com/flexcoders%40yahoogroups.com/msg06893.html If the Excel file was on the web server you could use getURL and spawn a new browser pointing at the file. --- In flexcoders@yahoogroups.com, send2martin [EMAIL

Re: [flexcoders] SWFs and domains

2005-05-12 Thread JesterXL
Grrr hrm Do you not get a security alert in the Flash Player in your browser at all? ...For the time being, try in your apps onLoad/init, whatever do: System.showSettings(); What is the default settings for loading data across domains? What version of the player are you using?

[flexcoders] MediaDisplay, can it be resized on the fly?

2005-05-12 Thread temporal_illusion
I want to programatically resize a video display on the fly (ie have it grow when moused over), but I can't seem to get it to resize at all once it's been set. Is this a limitation of the MediaDisplay control? Yahoo! Groups Links * To visit your group on the web, go to:

RE: [flexcoders] SWFs and domains

2005-05-12 Thread Dimitrios Gianninas
Flash Player is 7,0,35,29 running in Firefox (same occurs under IE) No security alerts whatsoever. Settings are: Gathering from the question being asked, the Allow/Deny setting has nothing to do with Domain access. None of the other tabs relate to Domain access. Is this what you were

RE: [flexcoders] SWFs and domains

2005-05-12 Thread Peter Farland
Where is the cross domain file specifically - (i.e. write out the full path using your naming examples of subA and subB below)? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dimitrios GianninasSent: Thursday, May 12, 2005 2:23 PMTo:

Re: [flexcoders] SWFs and domains

2005-05-12 Thread JesterXL
Canuck beer? Hell yeah I'd fly up! You don't EVER see the security alert? WTF... Alright, if your're bored please do this; have your B.swf access a text file on A's sub-domain via a simple LoadVars script: var lv = new LoadVars(); lv.> { trace("success: " + success); }

RE: [flexcoders] Internal popups

2005-05-12 Thread Jeff Beeman
Thanks, all, for your help! Ill give this a shot and see if it can handle my needs. /** * Jeff Beeman **/ From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

Re: [flexcoders] Re: FLEX and CF7..

2005-05-12 Thread Paul Lee
Yes, but somehow it's not working.. I really don't see why they just can't create an install script to handle this problem. PaulTarik Ahmed [EMAIL PROTECTED] wrote: Hey Paul did you follow these instructions:http://www.macromedia.com/support/documentation/en/flex/1_5/flexforcf.htmlPaul Lee

RE: [flexcoders] SWFs and domains

2005-05-12 Thread Dimitrios Gianninas
Thereis: http://subA.bespin.com/contextA/appA.mxml http://subB.bespin.com/contextB/appB.mxml appB.mxml loadsthe cross domain file bydoingSystem.security.loadPolicyFile( "http://subB.bespin.com/contextB/jimmy.xml" ); appA.mxml has: System.security.allowDomain( "*" );

RE : [flexcoders] how to use a repeater question

2005-05-12 Thread CHANSOU Patrick ROSI/SICOR
Title: [flexcoders] how to use a repeater question mx:Repeater id="rp" dataProvider="{thrustData}"mx:CheckBox id="subCheck" label="{rp.currentItem}"//mx:Repeater I don't know if it's faster but you can have your array populatedvia AS or use the same array in multiple mxml.

RE: [flexcoders] can i save my data to a Excel spreadsheet

2005-05-12 Thread Steven Webster
Martin, i would like to know if there is a way to export my data from a data grid to a .xls file .. Sure you can, but not with an MXML tag or ActionScript 2.0 code. If you are using J2EE as your server-side, then you need to create a Java class that given your datagrid data, spews it

[flexcoders] Wish List Item...

2005-05-12 Thread Tarik Ahmed
Uhmm... In CF you can display, compare, and format time in any way imaginable with ease. I'm finding in ActionScript that dealing with Dates is pretty cumbersome. I did some googling with no luck.. But I've got to believe someone has made some kind of DateUtil class out there so you can

[flexcoders] On the topic of Wishlists

2005-05-12 Thread pk_wasp
I know Macromedia has a page where u can submit bugs or feature request is there any pages on Macromedia site or livedocs to show what ppl have wished/requested for (thinking of filling out some feature requests for Flex 2.0 but don't really want to repeat what other people might have

Re: [flexcoders] Wish List Item...

2005-05-12 Thread Tarik Ahmed
Thx. I'll definitely bookmark that for going the other way around. But I'm more interesting in something like: var myDate1 = new ARobustDateObject(03/05/05); var myDate2 = new ARobustDateObject(01/01/2005 15:42:32); var myDate3:String = 06/25/1972; var isDate3Older =

Re: [flexcoders] On the topic of Wishlists

2005-05-12 Thread John Dowdell
pk_wasp wrote: I know Macromedia has a page where u can submit bugs or feature request is there any pages on Macromedia site or livedocs to show what ppl have wished/requested for (thinking of filling out some feature requests for Flex 2.0 but don't really want to repeat what other people

[flexcoders] Style Question

2005-05-12 Thread Rich Tretola
What is the css property for changing the color of the header text of a datagrid ? When I change the color property, it changes the header text but also changes the grid text color which is not what I need. I need the 2 text colors set differently. Rich Yahoo! Groups Links * To visit your

Re: [flexcoders] Wish List Item...

2005-05-12 Thread JesterXL
I LOVE Arul's parser, I use it on my blog all the time; he's da man! How about these; you could use as is, or convert to AS2: http://proto.layer51.com/l.aspx?p=9 - Original Message - From: Tarik Ahmed [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, May 12, 2005 8:32 PM

Re: [flexcoders] HTTP service context.root

2005-05-12 Thread Valy Sivec
I wasn't able to fix this. Is there any way to configure a HTTP service with {context.root} in flex-config.xml and production-mode = true? ( see the config below ). If production mode=false the apps works, if set the production mode to true the app won't work. Keep the production mode = true and

Re: [flexcoders] Wish List Item...

2005-05-12 Thread Tarik Ahmed
Now yer talkin! JesterXL wrote: I LOVE Arul's parser, I use it on my blog all the time; he's da man! How about these; you could use as is, or convert to AS2: http://proto.layer51.com/l.aspx?p=9 - Original Message - From: "Tarik Ahmed" [EMAIL PROTECTED] To:

[flexcoders] Halo Themes List

2005-05-12 Thread Jeff Steiner
Anyone know where I can find a listing of the available HALO themes? Thanks, Jeff http://www.flexauthority.com 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

  1   2   >