Re: [flexcoders] Question about mouseMove

2005-09-22 Thread Prasad Dhananjaya
Hi, Thanks for your reply. Now it's working. But still have a problem. I can't use clear(), because it deletes all previously drawn arrows. Any other way to do this with out deleting other arrows which are on the canvas? Thanks, ?xml

[flexcoders] Regarding jsp and mxml page

2005-09-22 Thread Bikram Sahu
hi, recently i have face a problem that previously i was running a mxml page inside a jsp page but since last 3 days i am getting the error that Requested page cannot be displayed An unexpected error occurred that prevented /flex/AWSLogistics/AWSLogistics.jsp from being displayed.

RE: [flexcoders] titile window header

2005-09-22 Thread Philippe Maegerman
I don't know if there is a headerRenderer for Panels but you can remove the header (headerHeight="0")and place a controlBar. You'll have to add yourown close button in this case. example: ?xml version="1.0" encoding="utf-8"?mx:Application

[flexcoders] Re: focusOut() on RowRenderer

2005-09-22 Thread bhaq1972
Hi I dont think you can 'focusOut' of a DataGridRow (read the livedocs to see its purpose in life). i did a quick test, and found only the load events (eg load, initialize) and mouse events were triggered in an extended DataGridRow. workaround - have a private var (currentIndex) which you

[flexcoders] Re: titile window header

2005-09-22 Thread bhaq1972
Also check out Christophe Coenraets Pod example. He has buttons on his header (its very cool) Also, i dont know what kind of buttons you want, but if its just a close button, use a TitleWindow. --- In flexcoders@yahoogroups.com, Philippe Maegerman [EMAIL PROTECTED] wrote: I don't know if

[flexcoders] container - child : height=100% - layout problem

2005-09-22 Thread Christoph Diefenthal
Hi @all, I have got a problem with my layout... I want my Application to fit into the browser window. A VBox (vBxContent) should fit into this Application and be as high as possible, wherefore I set its height to 100%. But if a child (canContent) within vBxContent is higher then the screen it

[flexcoders] Re: container - child : height=100% - layout problem

2005-09-22 Thread bhaq1972
just some ideas 1) look at scaleY property for your child canvas. 2) a general approach might be ovveride vBxContent layoutChildren() method something like this (untested) function layoutChildren() { super.layoutChildren(); //loop all children and and chge width if neccessary for(var

[flexcoders] Saving form inputs in sub-components from the root component

2005-09-22 Thread Ghislain Simard
Hi, I have _root panel that is displaying display different components sub-components that I would like to save the form inputs. How to trigger the function saveValues() inside a component or a sub- component from the save button in the main panel? main.mxml: mx:Panel mx:ViewStack

RE: [flexcoders] titile window header

2005-09-22 Thread Nithya R
thanks o lot... that was real cool yaar! nithya Philippe Maegerman [EMAIL PROTECTED] wrote: I don't know if there is a headerRenderer for Panels but you can remove the header (headerHeight="0")and place a controlBar. You'll have to add yourown close button in this case. example: ?xml

Re: [flexcoders] Question about mouseMove

2005-09-22 Thread JesterXL
hehe, nope! You can either: - make a new canvas for each of your arrows OR - make a final draft canvas that your mouseUp draws on, and a drawing canvas that your mouseMove draws on. That way, when their mouse is released, the final arrow is drawn in the right place, while your drawing canvas

Re: [flexcoders] Regarding jsp and mxml page

2005-09-22 Thread Pushkar Phatak
Bikram, there is a filenotfound exceptopn... from your mail Exception java.io.FileNotFoundException D:\Tomcat 5.0\webapps\flex\AWSLogistics\biki.mxml (View stack trace) can you check if the mxml file still exists in the correct location?! hopefull y that will get youstarted pushkar On

[flexcoders] how to integrate Mondosearch with Flex?

2005-09-22 Thread Nithya R
hai i would like to know how to integrate mondosearch with flex nithya Send instant messages to your online friends http://uk.messenger.yahoo.com -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

AW: [flexcoders] Re: container - child : height=100% - layout pr oblem

2005-09-22 Thread Christoph Diefenthal
Thanks these are good idea, but actually I want something different. I should have been more specific. I want the child to be scrollable within vBxContent, without setting vBXxContent.height to a fixed size as you can see in my following little ASCII screenshot :) |

RE: [flexcoders] Re: container - child : height=100% - layout problem

2005-09-22 Thread Philippe Maegerman
have you tried 'maxHeight' and 'maxWidth' ? Philippe Maegerman From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Christoph DiefenthalSent: jeudi 22 septembre 2005 15:52To: 'flexcoders@yahoogroups.com'Subject: AW: [flexcoders] Re: container - child :

RE: [flexcoders] Re: Access to parent control in parent component

2005-09-22 Thread Kelly
function changeSelection(event) { mychildComponent.someObjectVar = event.target.selectedItem; } From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ghislain Simard Sent: Wednesday, September 21, 2005 10:34 PM To:

Re: [flexcoders] Re: Flex Upload

2005-09-22 Thread Felipe Tadeus
Can you say how? On 9/21/05, Jose Quiles [EMAIL PROTECTED] wrote: Hi,I think you must register your servlet in the web.xml file, in WEB-INFdirectory. Regards,Jose2005/9/21, Felipe Tadeus [EMAIL PROTECTED]: owls_yang, I read this archive in a previus time, but in my home tests the TomCat isn't

[flexcoders] height=100% layout problem

2005-09-22 Thread Christoph Diefenthal
Hi @all, I have got a problem with my layout... I want my Application to fit into the browser window. A VBox (vBxContent) should fit into this Application and be as high as possible, wherefore I set its height to 100%. But if a child (canContent) within vBxContent is higher then the screen it

RE: [flexcoders] Dynamically loading SWFs as children of Canvas

2005-09-22 Thread Kelly
Why wont that work dynamically? I have made scripts that generate all sorts of components on canvass using createChild. It works fine. Why are you making it of type Movie clip? Why not cast it as a Button? What are you trying to do? From:

RE: [flexcoders] height=100% layout problem

2005-09-22 Thread Mercer, Dustin
Try setting minHeight=0 and minWidth=0 on vBxContent. I had the same problem with some of my layouts and that fixed J From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Christoph Diefenthal Sent: Thursday, September 22, 2005 3:01 AM To:

Re: [flexcoders] Transferring events and variable values between 2 Panels (separate MXMLs) in the same application.

2005-09-22 Thread Pushkar Phatak
Tracy thanks . works beautifully. regards Pushkar On 9/21/05, Tracy Spratt [EMAIL PROTECTED] wrote: Yes, see this example: http://www.cflex.net/showfiledetails.cfm?ObjectID=159 The short of it is that you access sub-component scoped things through the subcomponent id, and you reference

AW: [flexcoders] Re: container - child : height=100% - layout pr oblem

2005-09-22 Thread Christoph Diefenthal
Yep tried that to. mx:VBox id=vBxContent width=100% height=100% maxHeight={this.height} backgroundColor=#66 verticalAlign=middle horizontalAlign=center has no effect.

AW: [flexcoders] height=100% layout problem

2005-09-22 Thread Christoph Diefenthal
Unbelievable! That works!!! Thanks very much! How did you get that fancy idea? Does not look right this way, does it? -Ursprüngliche Nachricht- Von: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Im Auftrag von Mercer, Dustin Gesendet: Donnerstag, 22. September 2005 16:35

[flexcoders] OT: just testing. can you see this mail?

2005-09-22 Thread Aldo Bucchi
I have posted several new threads and replies to the list this week. But I have had only few answers ( say 10% ) If you see this mail please respond blank, just testing Thanks, Aldo -- : Aldo Bucchi : mobile (56) 8 429 8300 Yahoo! Groups Sponsor

RE: [flexcoders] height=100% layout problem

2005-09-22 Thread Mercer, Dustin
Well, during the layout phase, flex sets the minWidth and minHeight to the value of its combined childrens dimensions, if the minHeight and minWidth are undefined.  So we just skip that by defining them J    It used to be different in flex 1.0 and I relied upon the parent always

Re: [flexcoders] OT: just testing. can you see this mail?

2005-09-22 Thread Aly Sidi
i see it.On 9/22/05, Aldo Bucchi [EMAIL PROTECTED] wrote: I have posted several new threads and replies to the list this week.But I have had only few answers ( say 10% )If you see this mail please respond blank, just testingThanks,Aldo--: Aldo Bucchi : mobile (56) 8 429

RE: [flexcoders] Re: User Infor in Flex Architecture

2005-09-22 Thread shahnavaz Alware
Now when you login is an Authentication on J2EE server. When a users get authenticated I load my UserInfo Object. Shahn From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Douglas Knudsen Sent: Wednesday, September 21, 2005 6:51 PM To:

Re: [flexcoders] OT: just testing. can you see this mail?

2005-09-22 Thread Aldo Bucchi
Thanks Aly ;) On 9/22/05, Aly Sidi [EMAIL PROTECTED] wrote: i see it. On 9/22/05, Aldo Bucchi [EMAIL PROTECTED] wrote: I have posted several new threads and replies to the list this week. But I have had only few answers ( say 10% ) If you see this mail please respond blank, just

RE: [flexcoders] Re: Access to parent control in parent component

2005-09-22 Thread Tracy Spratt
What Kelly shows is the easiest way if you are doing only a few calls. If you need to access the combo box selectedItem often, or access its properties, then you can pass a reference to the combo box itself into the child component. In the parent: MyComponent1 id=myC1

RE: [flexcoders] Saving form inputs in sub-components from the root component

2005-09-22 Thread Tracy Spratt
See your other thread. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ghislain Simard Sent: Thursday, September 22, 2005 7:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Saving form inputs in sub-components from the root

RE: [flexcoders] Regarding jsp and mxml page

2005-09-22 Thread Tracy Spratt
And remember that the url/path/filename is case-sensitive. Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Pushkar Phatak Sent: Thursday, September 22, 2005 9:25 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Regarding jsp

[flexcoders] Re: Dynamically loading SWFs as children of Canvas

2005-09-22 Thread jasonstaczek
--- In flexcoders@yahoogroups.com, Kelly [EMAIL PROTECTED] wrote: Why won't that work dynamically? I don't know!! Why are you making it of type Movie clip? I assumed that createChild returned a MovieClip. That's what it passes back to childLoaded, for example. Why not cast it as a Button?

Re: [flexcoders] Re: User Infor in Flex Architecture

2005-09-22 Thread Douglas Knudsen
right, but what are you using to do this? Obviously not BASIC auth in J2EE as there is no way to 'load my UserInfo Object' this way. So, you are using some sort of remoteobject call from Flex to your J2EE server. I'm curious of what that is. This gets mentioned around here from time to time,

[flexcoders] alert throwing error

2005-09-22 Thread Husain Kitabi
Hi I use a simple alert in my mxml script. function abc(){ alert(moduleSelectedItem); } It throws me this error1 Error found. Error /WEB-INF/flex/user_classes/com/lonline/client/view/course/classgroup/classgroupRegister.mxml:29 There is no method with the name 'alert'. Any ideas? Regards

RE: [flexcoders] OT: just testing. can you see this mail?

2005-09-22 Thread Matt Chotin
As Ive said in a few other posts MM folks are super-busy right now so we (or at least I) may be much less responsive these days. Of course Abdul and Manish seem to still post a lot but theyre rock stars, what can I say J Matt From: flexcoders@yahoogroups.com

RE: [flexcoders] Flex Beginner

2005-09-22 Thread jerry stephen
Many thanks Steven, Your inputs was very valuable for me to proceed forward. I m workin with your framework right now for my prototype. But Still, I have trouble stuff gettin inside my head.. the concept of thick web client and gettin rid of the request/response paradigm... * Should I try to

Re: [flexcoders] alert throwing error

2005-09-22 Thread JesterXL
alert is a static method of Application; so, if your code is in eclosed in a script tag in Application.mxml as the root, your good to go. Otherwise, do: mx.core.Application.application.alert() - Original Message - From: Husain Kitabi To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] alert throwing error

2005-09-22 Thread JesterXL
...or mx.core.Application.alert... I forget which one... geez, it's not even the evening yet, I've got no excuse... - Original Message - From: JesterXL To: flexcoders@yahoogroups.com Sent: Thursday, September 22, 2005 1:39 PM Subject: Re: [flexcoders] alert throwing error alert

Re: [flexcoders] OT: just testing. can you see this mail?

2005-09-22 Thread Aldo Bucchi
Thanks Matt, Hope you guys get whatever you're up to ready and shining for MAX. Best, Aldo On 9/22/05, Matt Chotin [EMAIL PROTECTED] wrote: As I've said in a few other posts MM folks are super-busy right now so we (or at least I) may be much less responsive these days. Of course

[flexcoders] Graph node placement routing

2005-09-22 Thread Mink, Joseph
Hi, Our application requires the dynamic gerenation of graphs...with nodes connectors. These graphs do not necessarily exist ahead of time, so their layout can not be staticly defined (though that's how we've been getting by until now). Before I went too far in implementing a node

[flexcoders] Apache Proxy to Tomcat IP issues

2005-09-22 Thread charlespaz1
For those who are having issues with sending Apache requests to Tomcat via Proxy and want the requesting IP not be the proxy server's IP, I just found mod_ip_forwarding which claims to solve this. http://dev.w3.org/cvsweb/apache-modules/mod_ip_forwarding/mod_ip_forwarding.html?rev=1.3 If you try

[flexcoders] applications forgetting array values

2005-09-22 Thread nostra72
How common is it for an application to forget the value of an array like if you set an array value to a number and then it goes to null soon afterwards? What is the cause of this? Does it happen mostly with big applications? -- Flexcoders Mailing List FAQ:

[flexcoders] How to enable disable tabNavigator

2005-09-22 Thread sandip_patil01
Hi All, Can anybody please tell me how to disable enable tabNavigator. Let say When I click on one row from datagrid it is dispaying in one tab Navigator. The same time another tab Navigator will remain disable. How to do this ? Yahoo! Groups Sponsor

[flexcoders] Really basic ActionScript question.

2005-09-22 Thread delaquae
I've implemented a class (via ActionScript) for a Flex app that uses the class as a dataprovider. The class needs to increment a Date object by a number of days. i.e. var d:Date=new Date(); journalDate = d // plus some number of days If I add i to d all I get is the time being incremented.

[flexcoders] Re: Webservice - Unable to connect to endpoint ...

2005-09-22 Thread joe92121
Here's more info I am using mx:WebService. The actual .Net web service is in a url/directory set for anonymous access. I am able to get http services to work through useProxy=false on same and remote machines. I actually want to compile to swf and deploy to server without flex server

[flexcoders] Tree selectedNode

2005-09-22 Thread Jeremy Crane
I am having some trouble setting the selected Node in a Tree. Ive see the previous posts on this and am still not able to get this to work. What I am doing is as follows: I have a Tree that the nodes are draggable to a datagrid. Now I want to take the node from the datagrid ,

RE: [flexcoders] applications forgetting array values

2005-09-22 Thread Abdul Qabiz
I doubt, somewhere in your code array is being reset or reference to array is lost... Can you post the code? -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: Friday, September 23, 2005 12:30 AMTo: flexcoders@yahoogroups.comSubject:

RE: [flexcoders] How to enable disable tabNavigator

2005-09-22 Thread Abdul Qabiz
tabNavigator.enabled = false Did you try this? -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sandip_patil01 Sent: Friday, September 23, 2005 12:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to enable disable

RE: [flexcoders] Really basic ActionScript question.

2005-09-22 Thread Abdul Qabiz
var d:Date = new Date(); d.setDate(today_date.getDate()+10); Did you try this? Date class has loads of methods to do this. -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of delaquae Sent: Friday, September 23, 2005 12:44 AM To:

RE: [flexcoders] alert throwing error

2005-09-22 Thread Abdul Qabiz
Hi, You can use this: mx.controls.Alert.show(..) from anywhere to show alert(..). FYI! alert(..) function is just shortcut of aboveand isstatic method of Applicationclass. Which means it can be used in application without fully-qualified reference. But if you want to use it in custom

RE: [flexcoders] Really basic ActionScript question.

2005-09-22 Thread jeff tapper
Take a look at my blog (jeff.mxdj.com) I have a dateadd for actionscript there. Sent with Wireless Sync from Verizon Wireless Original Message From: delaquae [EMAIL PROTECTED] Date: 9/22/05 3:14 pm To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Subj: [flexcoders] Really

Fwd: RE: [flexcoders] newlin

2005-09-22 Thread kreddington1
I already tried that. It works when I use it in an .mxml file, but it won't seem to work in my BasketCard class. It ignores the \n and everthing after it in the string. Are there any other ideas? --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: + \n works in script.

RE: [flexcoders] Tree selectedNode

2005-09-22 Thread Tracy Spratt
You want event.target.selectedNode; assuming the tree is raising the event. If you are dragging from a datagrid, you wont have a selectedNode, only trees have that. DataGrid has selectedItem. Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On

RE: RE: [flexcoders] newlin

2005-09-22 Thread Tracy Spratt
Post a small example application. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kreddington1 Sent: Thursday, September 22, 2005 7:06 PM To: flexcoders@yahoogroups.com Subject: Fwd: RE: [flexcoders] newlin I already tried that. It works

[flexcoders] my private vars are NOT private....

2005-09-22 Thread David Harris
Hey Guys, I have a class with something like this in it private var _myVar:String = bob; My Class is an MXML file that has a mx:Box as its base. When I create one, and try to reference myInstacne._myVar, I get bob I thought making a variable private meant it was ONLY avalible inside

[flexcoders] Re: Really basic ActionScript question.

2005-09-22 Thread delaquae
The Date class does not seem to have any methods to convert to and from Julian Dates. getDate and setDate set the days to a value but don't seem to adjust the Month and year. If d equals something like where assuming d = Thu, Sep 22, 2005, then d + 10 days returns Sun, Oct 2, 2005. --- In

Re: [flexcoders] my private vars are NOT private....

2005-09-22 Thread JesterXL
private is syntactic sugar via AS2; it's compiled down to AS1 prototype bytecode, however, which does not support public/private. So, if you can figure out how to bypass the compiler... - Original Message - From: David Harris [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] my private vars are NOT private....

2005-09-22 Thread Aldo Bucchi
David, I *believe* that the only visibility checking is done at compile time. Classes are finally parsed into hierarchy of prototyped objects, so you can actually read/add/modify/delete any members of any class at runtime. Best, Aldo On 9/22/05, David Harris [EMAIL PROTECTED] wrote: Hey Guys,

[flexcoders] is thre a way to integrate flex with mondosearch

2005-09-22 Thread Nithya R
hai all is there any way of integrating flex wioth mondosearch? plz any help is welcome any link or thread thanks nithya Send instant messages to your online friends http://uk.messenger.yahoo.com -- Flexcoders Mailing List FAQ: