[flexcoders] Menubar control Anybody?

2005-04-13 Thread nithya karthik
I use tab navigator container to display the category names and the menubar to display the subcategories under each tab.. the menu bar should appear if and only if there is any subcategory under the selected tab.. but the problm with my coe is that it displays a menubar with label- 'undefined'

[flexcoders] Charts and fields

2005-04-13 Thread Mika Kiljunen
Hi, I ran into problem with charts. I have an object that contains another object and I need to make a chart using them. Lets say that the object looks like this: class com.mycom.myObjectX { public var myString:String; public var myOtherObject:SomeObject; // Contains a field:

[flexcoders] full screen panel.

2005-04-13 Thread Duccio Del Ministro
Hi flexcoders, i need some help!!! I'm trying to open a panel or a popup full screen. I've seen some flash sites using full screen mode and i'm wondering if we can do that in flex. Thanks Duccio Del Ministro ___ Nuovo Yahoo! Messenger: E'

[flexcoders] Preloading Images

2005-04-13 Thread Ketan Bengali
Might sound like a stupid question but would like to know if there is any way to preload images in Flex like the way we do in HTML. -- Regards, Ketan Bengali Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from

Re: [flexcoders] Christophe Coenraets-Using Flex with iBatis

2005-04-13 Thread Francois Le Lay
Hi Barclay, Did you check my comment on Christophe's blog? Still not working? Cheers, François--http://www.mfworx.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 PROTECTED]

Re: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-04-13 Thread Christoph Guse
Hi Peter, I decided to use tail -f catalina.out, which works fine for me. tail -f flex.log didn't work, I forgot to mention this in the last mail. The NCD is nicer to use than cosole logging. Perhaps there is an appropriate tool in the next Flex version. Greets Christoph Peter Farland wrote:

Re: [flexcoders] redraw DataGrid

2005-04-13 Thread Christoph Guse
Hi Manish, here is my code: public function viewInfo() : Void { if(openInfo == false){ boxHeight = view.AufgabenBox.height; dgHeight = view.AufgabenlistePanel.height; infoHeight = view.aufgabenInfo.height;

Re: [flexcoders] redraw DataGrid

2005-04-13 Thread Manish Jethani
On 4/13/05, Christoph Guse [EMAIL PROTECTED] wrote: The last line (view.AufgabenlistePanel.redraw(true);) doesn't work. I followed the instructions in Improving performance when resizing Panel containers in the flex documentation. I'm afraid I'm going to need more context. What do you mean

Re: [flexcoders] full screen panel.

2005-04-13 Thread Manish Jethani
On 4/13/05, Duccio Del Ministro [EMAIL PROTECTED] wrote: I'm trying to open a panel or a popup full screen. I've seen some flash sites using full screen mode and i'm wondering if we can do that in flex. Some web browsers allow you to go full screen, but it mostly depends on the user's

Re: [flexcoders] Accordion headers and forms

2005-04-13 Thread Manish Jethani
On 4/13/05, Andrew Spaulding [EMAIL PROTECTED] wrote: If I have an Validation error in a form, what is the best way to show this in an accordion header? Set the label property of the currently selected view to include the error message in it. accordion.selectedChild.label += (Error: foo);

RE: [flexcoders] Preloading Images

2005-04-13 Thread Abdul Qabiz
Hi Ketan, No, I am not sure. But you can do the achieve the same in two ways: 1) Embed all images in the swf using Embed metatag 2) On initialization, start a setInterval(..) which loads list of images in background But why would you want to do that? If you want to make sure that required

Re: [flexcoders] full screen panel.

2005-04-13 Thread Duccio Del Ministro
Thanks Manish. Regards Duccio --- Manish Jethani [EMAIL PROTECTED] wrote: - On 4/13/05, Duccio Del Ministro [EMAIL PROTECTED] wrote: I'm trying to open a panel or a popup full screen. I've seen some flash sites using full screen mode and i'm wondering if we

Re: [flexcoders] redraw DataGrid

2005-04-13 Thread Christoph Guse
Hi Manish, as far I understood Flex an event is broadcastet when a component is changed and the component will be drawed again. Example: Flex application is a mxml file with width=100% and height=100% called directly in a browser. If I change the size of the browser, some event is broadcasted

[flexcoders] OT:?versionChecked=false crashes JRun/Apache

2005-04-13 Thread Johan Lopes
Hi, I just noticed that when I rewrite the versionChecked queryString on the browser (Mozilla 1.7.3 on Windows) to false (http://myserver.com/flex/myflex.mxml?versionChecked=false) the Jrun Connector for Apache goes into what it looks like an infinite loop and crashes, resulting in an internal

[flexcoders] Grid Header ContextMenu

2005-04-13 Thread viraf_bankwalla
Hi, How do I create a context menu for my Header in a grid? I have a HeaderRenderer and tried to cast it to a MovieObject and set the menu attribute, however this did not work. Thanks. - viraf Yahoo! Groups Links * To visit your group on the web, go to:

RE: [flexcoders] OT:?versionChecked=false crashes JRun/Apache

2005-04-13 Thread Abdul Qabiz
Hi Johan, That's known bug, hopefully it gets fixed in next version of Flex. -abdul -Original Message- From: Johan Lopes [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 4:46 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] OT:?versionChecked=false crashes JRun/Apache

[flexcoders] DataGrid performance

2005-04-13 Thread viraf_bankwalla
I have a DataGrid with approximately 20 rows and 10 columns. Each cell in the grid contains 4 other objects that are displayed. When scrolling vertically the performance is poor at best. What can I do to improve the performance? I am reading the articly on Macromedia's site - however my

[flexcoders] Re: OT:?versionChecked=false crashes JRun/Apache

2005-04-13 Thread Johan Lopes
Abdul, Thanks for the prompt reply. I was getting a bit worried I had done something wrong while setting up Flex on my server. /Johan --- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: Hi Johan, That's known bug, hopefully it gets fixed in next version of Flex.

Re: [flexcoders] Color in textArea

2005-04-13 Thread Tom Fitzpatrick
Manish - Thanks - but that doesn't work for my situation. I'm trying to add the color during the process of building a string that will be pulled into a textArea. Something like the following (doesn't work, but shows you what I'm trying to do): ?xml version=1.0? mx:Application

[flexcoders] Update a label

2005-04-13 Thread Fernando Barros
Hi there! I would like to know, a better way to update a label after I changed TextInput property. What I did: mx:TextInput id=txtNome keyDown=fAtualizaVar(event.ascii) maxChars=150 width=200 / And in my AS I have: function fAtualizaVar(sNovoChar):Void { var sBotaoMsg:String;

RE: [flexcoders] Re: Grid Header ContextMenu

2005-04-13 Thread Abdul Qabiz
Yeah, Label uses Flash Textfield, But for ContextMenu, a textfield should be selectable/editable. Following is simple example for context-menu, if you already know how to do it, ignore it. ##ContextMenuExample.mxml## ?xml version=1.0 encoding=utf-8? mx:Application

Re: [flexcoders] Update a label

2005-04-13 Thread Manish Jethani
On 4/13/05, Fernando Barros [EMAIL PROTECTED] wrote: mx:TextInput id=txtNome keyDown=fAtualizaVar(event.ascii) maxChars=150 width=200 / And in my AS I have: function fAtualizaVar(sNovoChar):Void { var sBotaoMsg:String; if (isNaN(PropostaSelecionada.NCLIENTEID) == false)

[flexcoders] PrintJob() with DataGrid Timing Issue

2005-04-13 Thread convergenceii
Has anyone had any problems with a datagrid not being resized before being printed? Basically, within the print function, I find out what size the page is and resize the datagrid to the available space. However, it doesn't get resized before the .addPage() is called, so the printed page uses

Re: [flexcoders] Preloading Images

2005-04-13 Thread Manish Jethani
On 4/13/05, Ketan Bengali [EMAIL PROTECTED] wrote: Might sound like a stupid question but would like to know if there is any way to preload images in Flex like the way we do in HTML. Yes, and you would do it exactly like you do in HTML/JavaScript. i.e. use hidden image objects and toggle

Re: [flexcoders] Color in textArea

2005-04-13 Thread JesterXL
Use HTML text then (my_ta.htmlText = font color='#FF'red/font text); - Original Message - From: Tom Fitzpatrick [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, April 13, 2005 9:00 AM Subject: Re: [flexcoders] Color in textArea Manish - Thanks - but that

RE: [flexcoders] Update a label

2005-04-13 Thread Abdul Qabiz
Hi, You can use the binding. You can bind a variable to Button's label property, so when variable changes button's label would be updated implicitly.. An example, ##BindingExample.mxml## mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; mx:Script var

Re: [flexcoders] Color in textArea

2005-04-13 Thread Manish Jethani
On 4/13/05, Tom Fitzpatrick [EMAIL PROTECTED] wrote: Thanks - but that doesn't work for my situation. I'm trying to add the color during the process of building a string that will be pulled into a textArea. You could make it work by adding more logic, etc. You basically want to embed

RES: [flexcoders] Update a label

2005-04-13 Thread Fernando Barros
Ok Thks! Now I see. Sometimes I forget these things because I am used to codify in CFMX. Living and Learning!! Thks again! --- Fernando Barros Internet Officer 11 5014-7093 www.officer.com.br --- De:

Re: [flexcoders] redraw DataGrid

2005-04-13 Thread Manish Jethani
On 4/13/05, Christoph Guse [EMAIL PROTECTED] wrote: I tried to get this effect with AufgabenlistePanel.redraw(true), but it failed. Normally this new arrangement effect should be broadcasted automatically, but it isn't. You can call the following invalidation functions:

Re: [flexcoders] htmlText and embedded fonts

2005-04-13 Thread Andy Goodfellow
Has this been answered anywhere? I'm having the same issues with embedded fonts not being displayed in the htmlText of an mx:TextArea field. -Andy On 1/19/05, jayar_flexer [EMAIL PROTECTED] wrote: Hi, i have a textarea with htmltext and want to rotate it 180 degree. Therefor i have to

RE: [flexcoders] Debugging Flex Proxy

2005-04-13 Thread Brian Deitte
Title: Debugging Flex Proxy Hi Ronald, that's strange. We've done load testing here and haven't run across such an error before. I'm not sure how to help you debug it, but I can suggest a setting to change: max-connections. This is located in flex-config.xml in two places, and I would

[flexcoders] Re: Flex Cairngorm question

2005-04-13 Thread flexcoding
Hi Gurus, Any response to the following questions about Cairngorm? Posting it again in the forum because the original is burried deep inside. Thanks for the help in advance... Hello Guys, I just started Flex development two months back and we are trying to develop an enterprise level

[flexcoders] xml-combobox

2005-04-13 Thread ibibas
Hi pals, In my application I have a help feature it permits to display help text if user requests for. Is a multilang application. My initial idea to implement this feature is to create a XML file as follows: help_file obj label=screen1 field label=field11

Re: [flexcoders] full screen panel.

2005-04-13 Thread Matthew Shirey
I would be interested in that information as well if you manage to find it. Might you share if you do? Thanks! -- MatthewOn 4/13/05, Duccio Del Ministro [EMAIL PROTECTED] wrote: Thanks Manish.RegardsDuccio--- Manish Jethani [EMAIL PROTECTED] wrote:-On 4/13/05,

[flexcoders] Queestion about panel based applications

2005-04-13 Thread nostra72
What is the advantage of making them as oppoxed to a regular application? 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 subject to the

[flexcoders] getting text out of swf in flex

2005-04-13 Thread carmhuntress
Hi, I am trying to get a better understanding of how swf files work in flex and I have a little swf file that contains a textinput field with some text in it. I want to hit a button and the text contained in that swf textinput field shows up in the textinput field in my flex application.

RE: [flexcoders] htmlText and embedded fonts

2005-04-13 Thread Abdul Qabiz
Hi, Yes, you can embed the font and use html text as well as rotate the textarea. But when you embed the font via [Embed(..)] metatag, only normal style of font is embedded i.e. bold italic font outlines are not embedded. I don't know, how to make sure that bold italic outlines are also

[flexcoders] how to display the HashMap data in flex mx:DataGrid?

2005-04-13 Thread loveewind
my java object below: public class UserVO { private HashMap accessMap = null; private String active= null; private String firstName = null; private String lastName = null; private String loggedOn = null; private String networkId = null;

RE: [flexcoders] getting text out of swf in flex

2005-04-13 Thread Abdul Qabiz
Hi, You mean you have have a separate SWF file which you embedding in Flex app and trying to communicate with Flex components? Please make it more clear by providing more details... -abdul -Original Message- From: carmhuntress [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13,

RE: [flexcoders] Re: Flex Cairngorm question

2005-04-13 Thread Allen Manning
Rohit, 1. I think I read a post that said this type of 'command chaining'is going to be in the .99 release of Cairngorm. I remember reading through a few posts of people working around this limitation, although I haven't done it myself, sorry. 2. In Flex there is automatic translating

[flexcoders] Radio Button Custom Component

2005-04-13 Thread jwaknitz
I'm using a repeater to grab a component that makes a radiobutton each time. When the app is displayed, there are 7 radiobuttons. The problem is, they are not in the same group. They are all individually checkable. I went into the component and gave the radiobutton a groupName=group1.

RE: [flexcoders] Re: Flex Cairngorm question

2005-04-13 Thread Mehdi, Agha
Rohit, Q1: I haven't tried it because I never had to but I think that when the results come back from delegate in the event object, the object also has a property called method or operation. You can loop over the event object to see what properties it has. If there's a property holding the

[flexcoders] Re: getting text out of swf in flex

2005-04-13 Thread carmhuntress
I have a mx:image tag in my flex application that references the swf file. the swf file contains this information. this.createClassObject(mx.controls.TextInput, text1, this.getNextHighestDepth(), {_x:10, _y:10, text:'check this out'}); Inside Flex Builder it actually shows me a box with my

RE: [flexcoders] Queestion about panel based applications

2005-04-13 Thread Tracy Spratt
A Panel is simply a container. So are HBox, VBox, Canvas, Tile, etc. Each container is designed to lay out its children is some specific way, and as in the case of a Panel, to provide additional visual characteristics or behaviors. The container you choose will depend on the visual

RE: [flexcoders] Radio Button Custom Component

2005-04-13 Thread Tracy Spratt
Why not just use straight mxml. The following works for me. mx:VBox id=vboxRG x=3 y=3 mx:Repeater id=repeaterRB dataProvider={leParameter.valuesarray} mx:RadioButton id=RBParameter groupName=RGBParameter data={repeaterRB.currentItem[0]}

[flexcoders] Package names have to be off the root of your web app??

2005-04-13 Thread Jeff Krueger
All, I have a question about package name. I have a directory structure something like. /net/client/etc Customer components /com/iterationtwo/etc Cairngorm /dam/config This is where application stuff is /dam/user Dam.mxml The main page of the app All of these are in

RE: [flexcoders] Re: getting text out of swf in flex

2005-04-13 Thread Abdul Qabiz
Hi, You should try this: function foo() { flextext.text = imageTagID.content.text1.text; } Where imageTagId is reference of Image tag... -abdul -Original Message- From: carmhuntress [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 11:00 PM To:

[flexcoders] Namespace Inheritance??

2005-04-13 Thread Minster, Jack
Can someone point me in the right direction here I have a file, index.mxml, that uses an mxml component DueDiligence.mxml in a subdirectory structure. DueDiligence.mxml uses an mxml component StatePicker.mxml in a different sub directory structure. Ive discovered that I cannot uses

RE: [flexcoders] Package names have to be off the root of your web app??

2005-04-13 Thread Roger Gonzalez
If you shareclasses between two apps (particularly if they are different "heights" (depths?) in the tree) you should move the shared classes off to a separate root under user_classes (which is just a default directory, you can add additional roots to your actionscript classpath by editing

[flexcoders] Re: Radio Button Custom Component

2005-04-13 Thread jwaknitz
I need to use the components so I can test what type of node is in the XML. I'm calling different components based on nodeName. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Why not just use straight mxml. The following works for me. mx:VBox id=vboxRG x=3

[flexcoders] Re: PrintJob() with DataGrid Timing Issue

2005-04-13 Thread convergenceii
I tried that too, but I am unable to seperate the PrintJob() methods across more than one function (.start, .addPage, .send). MM warns against doing much from the time the PrintJob is started to the time it is sent, but apparently there is more to it than just timing. --- In

Re: [flexcoders] Radio Button Custom Component

2005-04-13 Thread Matthew Shirey
I am working with Jack and I am familiar with his problem. There's a few reasons why we're using a component with a radio control inside it. Our problem is that it seems to be ignoring the groupName property. Do radio controls have to all exist inside the same parent container to work as a

[flexcoders] Flex Non Comercial

2005-04-13 Thread Rich Tretola
Anyone here from MM know how long it takes to get a response about getting a non commercial flex licence ? Rich 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] Flex Non Comercial

2005-04-13 Thread Ryan Scott Jones
About a week or two I'd say. -Original Message- From: Rich Tretola [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 2:46 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex Non Comercial Anyone here from MM know how long it takes to get a response about getting a

RE: [flexcoders] Flex Non Comercial

2005-04-13 Thread Ryan Scott Jones
(But I'm not from MM.) -Original Message- From: Rich Tretola [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 2:46 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex Non Comercial Anyone here from MM know how long it takes to get a response about getting a non

RE: [flexcoders] Flex Non Comercial

2005-04-13 Thread Steiner, Jeff
I heard back in ~3 days when I put my request in. Jeff -Original Message- From: Ryan Scott Jones [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 11:56 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex Non Comercial About a week or two I'd say. -Original

[flexcoders] howto call titlewindow vars in class imported by titlewindow?

2005-04-13 Thread stevenkeys2003
All, I recently hit the 32k limit on one of my .as files. This particular .as is being included inline within a TitleWindow. There's one particular function within it which has a very long case/switch, which I know is causing the 32k limit to be exceeded. I'm now trying to break this one

Re: [flexcoders] Flex Non Comercial

2005-04-13 Thread Rich Tretola
Do you have a non comercial licence ? Does anyone have one ? On 4/13/05, Ryan Scott Jones [EMAIL PROTECTED] wrote: (But I'm not from MM.) -Original Message- From: Rich Tretola [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 2:46 PM To: flexcoders@yahoogroups.com

[flexcoders] Object function

2005-04-13 Thread Fernando Barros
Hi there, I would like to know, why cant I access my datagrid (dgProposta) inside my function myClickHandler.click? I said that because in my Alert.show, the SNOME from the datagrid appears. Whats the right way? function fApagaProposta() { var myClickHandler=new Object();

RE: [flexcoders] howto call titlewindow vars in class imported by titlewindow?

2005-04-13 Thread Tracy Spratt
If I have misunderstood you, just ignore me, but here are a few comments: Why are you extending ccardWindow in the applyBillingCycle class? Just create a custom class, pass a reference to the title window into it: class ApplyBillingCycle { public var myParent:ccardWindow public function

[flexcoders] Bringing a child component into focus

2005-04-13 Thread Tom Fitzpatrick
I'm dynamically creating some custom components as children of a vbox container. From the level of the main app, what is the best way to bring an individual component into focus, give a visual indication that it is in focus, and pass its id to a function? - Tom Yahoo! Groups Links *

Re: [flexcoders] Flex Non Comercial

2005-04-13 Thread Matthew Shirey
I have one. It took me about two weeks to get it once it was confirmed that I qualified for it. -- MatthewOn 4/13/05, Rich Tretola [EMAIL PROTECTED] wrote: Do you have a non comercial licence ?Does anyone have one ?On 4/13/05, Ryan Scott Jones [EMAIL PROTECTED] wrote: (But I'm not from MM.)

RE: [flexcoders] howto call titlewindow vars in class imported by titlewindow?

2005-04-13 Thread Tracy Spratt
I neglected to pass the reference into the class: ApplyBillingCycle id=abs myParent={this} ../ Tracy -Original Message- From: Tracy Spratt [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 4:15 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] howto call titlewindow

Re: [flexcoders] Flex Non Comercial

2005-04-13 Thread JesterXL
I have one and blogged my thank you. - Original Message - From: Rich Tretola [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, April 13, 2005 3:29 PM Subject: Re: [flexcoders] Flex Non Comercial Do you have a non comercial licence ? Does anyone have one ? On

[flexcoders] Transition animations problem

2005-04-13 Thread Min Lieu
Is there a limitation to how many transition animations can run at the same time? I have an application where 5 transitions are occurring simultaneously. The behavior is not consistent. Most of the time, the animations run smoothly, but maybe 1 out of 10 times, one of the transitions will

RE: [flexcoders] Transition animations problem

2005-04-13 Thread Deepa Subramaniam
Re-drawing many target views, especially if their complex, during a transition animation can sometimes cause the effect to play choppy. There are a few tips to tweaking your transition effect to play in a smoother fashion. Check them out in the Flex Client Application Performance White Paper:

RE: [flexcoders] Transition animations problem

2005-04-13 Thread Jason Szeto
Min, You might be running into some processing limitations of the Player. Check your CPU usage during these transitions. There are a couple of tricks you can use to optimize this. If the objects you are animating have child components, you can turn off the visibility of these children

RE: [flexcoders] Re: howto call titlewindow vars in class imported by titlewindow?

2005-04-13 Thread Tracy Spratt
Sure. I might also recommend that you go on and move ALL the script that you currently have included with the mx:Script source= into your helper class. The script include method does not help with the 32k problem, but putting the script into a class does. Also, you may find that the source of

RE: [flexcoders] Flex Non Comercial

2005-04-13 Thread Simon Fifield
I applied a couple of weeks ago and haven't heard a thing back since, perhaps I don't blog enough, but then they should at least tell me what's going on? Simon -Original Message-From: Rich Tretola [mailto:[EMAIL PROTECTED]Sent: 13 April 2005 19:46To:

Re: [flexcoders] Flex Non Comercial

2005-04-13 Thread Matthew Shirey
While it took me two weeks to get the license once I was approved, it first took two weeks to get approved. I ended up calling MM twice to try to get information on the status during those first two weeks. I believe their approval process is very manual. I am sure they have quick, and, as we've

[flexcoders] SharedObject across Applications

2005-04-13 Thread Matthew Shirey
I am trying to use a SharedObject to store some data that will be access across two applications. I am finding that the second application cannot seem to access any of the data stored by the first though. What little information I could find on the SharedObject in the Macromedia Developing Flex

Re: [flexcoders] Re: getting text out of swf in flex

2005-04-13 Thread Manish Jethani
On 4/13/05, carmhuntress [EMAIL PROTECTED] wrote: because I continue to get the error that text1 does not exist... Thanks. You're getting the error because the Image component really has no property named 'text1'. What you want is to access the 'text1' property on the Image's content

Re: [flexcoders] xml-combobox

2005-04-13 Thread Manish Jethani
On 4/13/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: mx:ComboBox id=object_list backgroundColor=#FF cornerRadius=0 dataProvider={helpList.obj} width=180 change=selectFields(event) initialize=sort();/ In selectFields function I create dataprovider

Re: [flexcoders] SharedObject across Applications

2005-04-13 Thread JesterXL
It's all about the domains, baby! As long as your apps are both deployed on "cow.com", then just add a "/" to the 2nd parameter of your get, and it'll put the .sol at the top level of the domain. Currently, it's scoped to a folder name same as your app path. The 2nd parameter creates it's

Re: [flexcoders] Object function

2005-04-13 Thread Manish Jethani
On 4/14/05, Fernando Barros [EMAIL PROTECTED] wrote: I would like to know, why can't I access my datagrid (dgProposta) inside my function myClickHandler.click? I said that because in my Alert.show, the SNOME from the datagrid appears. What's the right way? Scoping problem. Use

Re: [flexcoders] Package names have to be off the root of your web app??

2005-04-13 Thread Manish Jethani
On 4/13/05, Jeff Krueger [EMAIL PROTECTED] wrote: Interesting thing happened when I did this. The main page works find and finds all that components references as net.client.etc. But I load pages dynamically from example /flex/dam/user/userAdmin.mxml in a load control. This page does not

RE: [flexcoders] OT:?versionChecked=false crashes JRun/Apache

2005-04-13 Thread Blake Kadatz
That's known bug, hopefully it gets fixed in next version of Flex. Is that a Flex bug or a JRun bug? Sounds a bit too easy if a malicious user can do a denial of service just by changing the querystring. Yahoo! Groups Links * To visit your group on the web, go to:

Re: [flexcoders] SharedObject across Applications

2005-04-13 Thread peter blazejewicz
Hello everyone, I'm not sure if that will work with Flex application but to avoid such collision names in standalone desktop application I've used names following package pattern: eg: var soName:String = "com.company.cookieName"; var so:SharedObject = SharedObject.getLocal(soName, "/");

Re: [flexcoders] how to display the HashMap data in flex mx:DataGrid?

2005-04-13 Thread Manish Jethani
On 4/13/05, loveewind [EMAIL PROTECTED] wrote: I have got the hashmap on flex age from remoteobject certainly You want to display hashmap data into a datagrid. If you set the hashmap as the dataProvider, the DataGrid will _probably_ (not sure) make all the names as columns, and all the

Re: [flexcoders] SharedObject across Applications

2005-04-13 Thread Matthew Shirey
Perfect! Thanks so much, that one has been driving me crazy all day! -- MatthewOn 4/13/05, JesterXL [EMAIL PROTECTED] wrote: It's all about the domains, baby! As long as your apps are both deployed on cow.com, then just add a / to the 2nd parameter of your get, and it'll put the

Re: [flexcoders] Flex Non Comercial

2005-04-13 Thread Francois Le Lay
It's been 3 days since my reg and still haven't heard from them. Would be cool if there was some kind of online status report... Anyway I'll just keep working on my numerous flex projects and hope for the best at the same time, can't wait ;) François -- http://www.mfworx.com Yahoo!

Re: [flexcoders] Flex Non Comercial

2005-04-13 Thread Scott Barnes
Ditto, I'm awaiting one for FlexCoder.com. I'm not in a rush at the moment as i have more work to do on it, but yeah now that yall mention it, its been a long time since i heard anything back :) On 4/14/05, Francois Le Lay [EMAIL PROTECTED] wrote: It's been 3 days since my reg and still

[flexcoders] Find..Find next.. in TreeDataProvider Ideas?

2005-04-13 Thread Tracy Spratt
Title: Find..Find next.. in TreeDataProvider Ideas? I have a large Tree built programmatically of TreeNodes and would like to be able to search the dataProvider for a string match in the label property. Since I do not want to open the nodes as I go, I cant use the methods that depend on

Re: [flexcoders] Find..Find next.. in TreeDataProvider Ideas?

2005-04-13 Thread JesterXL
Title: Find..Find next.. in TreeDataProvider Ideas? Various XPath methods? http://www.xfactorstudio.com/Actionscript/AS2/XPath/ - Original Message - From: Tracy Spratt To: flexcoders@yahoogroups.com Sent: Wednesday, April 13, 2005 10:08 PM Subject: [flexcoders] Find..Find

RE: [flexcoders] Find..Find next.. in TreeDataProvider Ideas?

2005-04-13 Thread Tracy Spratt
Title: Find..Find next.. in TreeDataProvider Ideas? It is nice that I can define my own requirements: I am now searching the whole tree in one pass, and if I find a match, I put a reference to the node in an array. The array is bound to a results combo box. Since the items are references

RE: [flexcoders] Dynamically selecting a Tree node

2005-04-13 Thread Tracy Spratt
I have determined that a recursive function that only manipulates the dataProvider is massively faster than this technique that depends on opening the node and uses getNodeDisplayedAt(). The function below actually builds an array of matches, but could just as easily break and open a

[flexcoders] Re: Grid Header ContextMenu

2005-04-13 Thread viraf_bankwalla
Thanks - I was looking for an example on how to detect the right mouseDown in a header (or appropiate action to bring up the ContextMenu) , and determine which header the mouse was pressed in. Thanks --- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: Yeah, Label uses

Re: [flexcoders] Preloading Images

2005-04-13 Thread Ketan Bengali
OK. Thanks. Will try it. Regards, Ketan Bengali Manish Jethani wrote: On 4/13/05, Ketan Bengali [EMAIL PROTECTED] wrote: Might sound like a stupid question but would like to know if there is any way to preload images in Flex like the way we do in HTML. Yes, and you would do it

[flexcoders] MXMXL Editor

2005-04-13 Thread Ketan Bengali
Has anybody tried any editors apart from from Flex Builder for mxml? Flex Builder degrades the performance of my PC. -- Regards, Ketan Bengali Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this group,

Re: [flexcoders] MXMXL Editor

2005-04-13 Thread Matthew Shirey
I'd be interested in that answer as well.Flex Builder's performance leaves a lot to be desired.Editing multiple CSS files practically takes the editor to a stand still.M.On 4/13/05, Ketan Bengali [EMAIL PROTECTED] wrote: Has anybody tried any editors apart from from Flex Builder for mxml?

[flexcoders] Running FLEX standalone as a service?

2005-04-13 Thread Scott Barnes
Anyone know the cmd line to put FLEX standalone server as a service? I didn't do the instance j2ee approach yet i'm finding it annoying to have the dos prompt window open -- Regards, Scott Barnes http://www.mossyblog.com http://www.flexcoder.com (Coming Soon) Yahoo! Groups Links * To

RE: [flexcoders] MXMXL Editor

2005-04-13 Thread Brooks Andrus
Ive used XMLSPY home edition (free) and quite enjoy it. From: Matthew Shirey [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 10:20 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] MXMXL Editor I'd be interested in that answer as well.Flex Builder's

Re: [flexcoders] MXMXL Editor

2005-04-13 Thread Matthew Shirey
I may give that a try. I suppose I could do that and only use Flex Builder when I need the debugger. Isn't there an Eclipse plugin somewhere too? I swear I read that somewhere. -- MatthewOn 4/13/05, Brooks Andrus [EMAIL PROTECTED] wrote: I've used XMLSPY home edition (free) and

[flexcoders] any ideas about flex client side caching?

2005-04-13 Thread
Hi,all, In Christophe's blog, we can code our own class to cache data. Does flex provider some other solutions for the client_side caching? Best Regards Feng _ Do You Yahoo!? 150MP3 http://music.yisou.com/ http://image.yisou.com 1G1000

Re: [flexcoders] MXMXL Editor

2005-04-13 Thread Jeff Steiner
I love PrimalScript. It has intellisense for mxml and, for flash developers, they are supposed to be a decent platform. For those that remember Cold Fusion Studio - you will feel right at home. http://www.sapien.com/products.aspx Jeff http://www.flexauthority.com - Original Message -

RE: [flexcoders] MXMXL Editor

2005-04-13 Thread Jeff Krueger
http://www.rocketboots.com.au/blog/index.cfm?mode=entryentry=29748A02-E081-51EF-A76F3A9D8308A716 Eclipse mxml editor kind of. Jeff From: Matthew Shirey [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 11:00 PM To: flexcoders@yahoogroups.com Subject: Re:

Re: [flexcoders] MXMXL Editor

2005-04-13 Thread Ketan Bengali
URL for XMLSPY ?? Regards, Ketan Bengali Brooks Andrus wrote: Ive used XMLSPY home edition (free) and quite enjoy it. *From:* Matthew Shirey [mailto:[EMAIL PROTECTED] *Sent:* Wednesday, April 13, 2005 10:20 PM

Re: [flexcoders] MXMXL Editor

2005-04-13 Thread Ketan Bengali
Is it altova.com ? Regards, Ketan Bengali Brooks Andrus wrote: Ive used XMLSPY home edition (free) and quite enjoy it. *From:* Matthew Shirey [mailto:[EMAIL PROTECTED] *Sent:* Wednesday, April 13, 2005 10:20 PM

Re: [flexcoders] MXMXL Editor

2005-04-13 Thread Matthew Shirey
Yes, that's who makes XML SPYOn 4/13/05, Ketan Bengali [EMAIL PROTECTED] wrote: Is it altova.com ?Regards,Ketan BengaliBrooks Andrus wrote: I've used XMLSPY home edition (free) and quite enjoy it. *From:* Matthew Shirey

RE: [flexcoders] MXMXL Editor

2005-04-13 Thread Brooks Andrus
http://www.altova.com/download_spy_home.html There's a stand alone version as well as an eclipse plugin for the Home version. -Original Message- From: Ketan Bengali [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 11:07 PM To: flexcoders@yahoogroups.com Subject: Re:

  1   2   >