[flexcoders]dragable Popup issue!!!!!!!?????????

2005-12-20 Thread Nithya R
hi, i have a title window with header height=0 and instead of the headerI have a control bar in the top of the title window even when i setmodal window property to false, i am not able to move the pop up around.. why is this so? is the problem bcoz of the header height set to 0?

[flexcoders] [Flex2] creationComplete throw several times...

2005-12-20 Thread Flapflap
Hi there, I create a simple mxml component based on canvas. I got a little script that will set the y and height depends on some data injected and of the height of the parent of my component. So I create a function in as and call my function on the creationComplete event. But the event is fire

[flexcoders] Re: How to handle manipulation of Date object and Timezones elegantly in Flex?

2005-12-20 Thread Kam-Wing Pang
Dear Matt, Thanks for the link. I've added a new wish to the list. We have played with the getTimezoneOffset and have been using it. It is just not the most elegant solution, especially when the application has many date objects for both display and as part of the parameters used for requesting

REPOST: [flexcoders] PrintJob cutting text on datagrid

2005-12-20 Thread Mika Kiljunen
Repost, since no answer Anyone? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mika Kiljunen Sent: 1. joulukuuta 2005 14:40 To: flexcoders@yahoogroups.com Subject: [flexcoders] PrintJob cutting text on datagrid Hi, Can someone explain why

[flexcoders] Re: How do we judge CFC's method arguments of RemoteObject from ResultEvent??

2005-12-20 Thread sn197412
Thank you very much for your help!! It works very well. --Shigeru for archives ACT pattern is Asynchronous Completion Token design pattern. --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Check out the ACT pattern in the docs. You want to look at the return value

[flexcoders] PopupWindow's MenuBar can't handle event if ...

2005-12-20 Thread sn197412
Hi. 1. There two or more PopupWindow with a MenuBar. 2. I want to change PopupWindow's z-index on mouseDown event. 3. ActionScript3.0 for Changing PopupWindow's z-index is below. this.parent.setChildIndex(this,this.parent.numChildren); Then MenuItem doesn't work. It looks like crashing

Re: [flexcoders] Re: Webservices and .NET

2005-12-20 Thread Weyert de Boer
Hi Dave, The issue is that Flex has serious problems with web services that use Document/Literal encoding (as yours does) and pass a ComplexType (as yours does) as a parameter or return type. Aha, I didn't know that... If you can rewrite the service to use RPC/Encoded style instead it

[flexcoders] Re: How can I unload or delete a remoteObject reference manually

2005-12-20 Thread Dave Wolf
Stateful objects shiver... cringe... You can destroy a J2EE session using session.invalidate(); In say your own servlet or JSP page. This will destroy the session and unbind any objects bound to it. It will also however destroy your J2EE authentication session effectively logging you out.

[flexcoders] Bar Chart with Dates

2005-12-20 Thread Sreejith Unnikrishnan
Hi, Can someone help me with a way to display a bar chart with floating bars depicting say the start date and end date (similar to a project planner) such that the length of the bar is the duration! The startDate and endDate are available as Date objects. The question is related to using

Re: [flexcoders]dragable Popup issue!!!!!!!?????????

2005-12-20 Thread Manish Jethani
On 12/20/05, Nithya R [EMAIL PROTECTED] wrote: i have a title window with header height=0 and instead of the header I have a control bar in the top of the title window even when i set modal window property to false, i am not able to move the pop up around.. A TitleWindow can only be

Re: [flexcoders] [Flex2] creationComplete throw several times...

2005-12-20 Thread Manish Jethani
On 12/20/05, Flapflap [EMAIL PROTECTED] wrote: I create a simple mxml component based on canvas. I got a little script that will set the y and height depends on some data injected and of the height of the parent of my component. So I create a function in as and call my function on the

[flexcoders] datagrid header borders

2005-12-20 Thread Douglas Knudsen
I have a datagrid, I set all the borders to a colour of say pink for example. But the borders between the headers stay a default colour of white. How to change this? Do I need a headerRenderer to do something as simple as this? -- Douglas Knudsen http://www.cubicleman.com this is my signature,

[flexcoders] Re: PopupWindow's MenuBar can't handle event if ...

2005-12-20 Thread sn197412
Thank you for replay. I could switch window z-index. My problem is that MenuBar event doesn't work. So ... Thanks, Manish. --Shigeru --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 12/20/05, sn197412 [EMAIL PROTECTED] wrote: 1. There two or more PopupWindow

RE: [flexcoders] How do I know if a password is secure or not

2005-12-20 Thread Nick Weekes
hmm...like the previous poster stated, its secure if your client to server communications are done over https. unless you mean the storage of the data, which depends upon your storage format. An Oracle DB is likely to be slightly more secure than a text file sitting in the root dir of

[flexcoders] FireFox.exe has been shuted down abnormarlly when ...

2005-12-20 Thread sn197412
Hi. FireFox.exe has been shuted down abnormarlly when flash call window.close via flash.external.ExternalInterface.call. Any advice?? Yahoo! Groups Sponsor ~-- Most low income homes are not online. Make a difference this holiday season!

RE: [flexcoders] How do I know if a password is secure or not

2005-12-20 Thread Nick Weekes
Storage format i.e. how you are storing this information server side (cookies, database etc). A SharedObject is a cookie, so not an ideal location for storing sensitive data. Credit card/address data should go in to a database. Is it user friendliness that is driving the requirement to

Re: [flexcoders] How do I know if a password is secure or not

2005-12-20 Thread nostra72
I suppose user friendliness yes. I just figured that lets say I stored a password with a shared object, ok how could someone steal your password if they can not cut and paste it? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

Re: [flexcoders] How do I know if a password is secure or not

2005-12-20 Thread Scott Langeberg
You can open the shared object as a text file and simply read it. i.e.: not secure!For example, in WinXP, my user name is 'slangeberg'. I can view shared objects here:C:\Documents and Settings\slangeberg\Application Data\Macromedia\Flash Player Open the files with the .sol extension using any

[flexcoders] Adobe: impressing again

2005-12-20 Thread Tariq Ahmed
Nice! The acquisition of Macromedia looks to have been a winner. In October, Macromedia's last quarterly results announcement as an independent company showed it was still growing strongly after the announcement of its acquisition: sales came in at $127.9 million, up 18%, and net income came

Re: [flexcoders] How do I know if a password is secure or not

2005-12-20 Thread nostra72
I guess I would figure it would be secure because how can you read a password if its writen as a password with the little *'s. WHat your saying though is I need to store the passwords on to a secure database right? -- Flexcoders Mailing List FAQ:

[flexcoders] Re: html link in text

2005-12-20 Thread rgwilson26
I have a similar issue. I have a Tab navigator with HTML links as shown below. I want the user to be able to click on the text link, and navigate through each tab in the tab navigator depending on what link is clicked. I am calling a funtion in the main application from my component, it

[flexcoders] Re: How do I know if a password is secure or not

2005-12-20 Thread Dave Wolf
If you use standard J2EE security you won't have any of these problems. 1) the password isnt persisted anywhere 2) All that is persisted is an opaque value used by the server to tie you to its authentic session 3) No need to have a *single* line of security code in your flex app 4) Flex

[flexcoders] Re: How can I unload or delete a remoteObject reference manually

2005-12-20 Thread ping2peng
It is a little confusing about how i described the problem. the scenario is a java-bean named Foo.java is a simple bean that consume a Facade EJB-SLSB, this Foo.java is registered on the flex-config as a named=FooSrv, remote-object with stateful-class. We all basically know that when there are

Re: [flexcoders] Re: PopupWindow's MenuBar can't handle event if ...

2005-12-20 Thread Manish Jethani
On 12/20/05, sn197412 [EMAIL PROTECTED] wrote: I could switch window z-index. My problem is that MenuBar event doesn't work. If you could provide a standalone test case (something I can compile and run on my machine), that'll help us track and eliminate the problem. Manish

Re: [flexcoders] datagrid header borders

2005-12-20 Thread Manish Jethani
On 12/20/05, Douglas Knudsen [EMAIL PROTECTED] wrote: I have a datagrid, I set all the borders to a colour of say pink for example. But the borders between the headers stay a default colour of white. How to change this? Do I need a headerRenderer to do something as simple as this? Wild

Re: REPOST: [flexcoders] PrintJob cutting text on datagrid

2005-12-20 Thread Manish Jethani
On 12/20/05, Mika Kiljunen [EMAIL PROTECTED] wrote: Can someone explain why PrintJob is cutting the bottom of letters like g, y,q etc?? See pic to explain. In the pic (a printed datagrid) the numbers should have text mg after them, but it has mg and the g has no bottom on it! I asked Nihit

[flexcoders] Re: How can I unload or delete a remoteObject reference manually

2005-12-20 Thread Dave Wolf
My suggestion is this. Write a very simple JSP page called say cleanupsession.jsp. Inside that do something like this: % @page language=java % String[]keys = session.getValueNames(); for(int i=0; ikeys.length; i++) { session.removeAttribute(keys[i]); } session.invalidate(); Now, when you

[flexcoders] Re: How do I know if a password is secure or not

2005-12-20 Thread ping2peng
if you are a hacker you definitely know if it is secure or not,,, i was just kiddin' 1.) JAAS, Crypto and SSL, with secure storage are basics of Security, Tear up and read more on these stuff, 2.) Browse on insecure.org it would be a good pit-stop over there, 3.) learn basic hacking like

[flexcoders] Array declaration problem

2005-12-20 Thread rhoska
Newbie question of the week here but... I'm working with iteration two's ComboBoxCellRender from http://www.richinternetapps.com/archives/72.html. I want to replace the array declaration of the ComboBoxCellRenderer.dataProvider = [foo, more foo] with a string I am pulling from a cfc by

RE: [flexcoders] Array declaration problem

2005-12-20 Thread Tracy Spratt
What does the string look like? You can use split() to create an array from a delimited string. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rhoska Sent: Tuesday, December 20, 2005 2:04 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: Why is editable=true necessary to allow cellPress events (2.0)

2005-12-20 Thread yaagcur
Really? I just checked my application editable=false clicking gets no action editable=true clicking performs as required --- In flexcoders@yahoogroups.com, Joan Tan [EMAIL PROTECTED] wrote: Its not required for editable=true to get cellPress events. - Joan

[flexcoders] Array of objects and CFC

2005-12-20 Thread Hamad Amaral
Hi, I would like to pass a model to a CFC but an error occurs. If I pass only name and age I can catch the values as a struct, if I pass only ar I have success too. But I don't have success with all together. Please, can anyone help me? Thanks in advance. MXML mx:WebService id=ws

Re: [flexcoders] Re: Why is editable=true necessary to allow cellPress events (2.0)

2005-12-20 Thread Sreejith Unnikrishnan
Open the livedocs .. http://livedocs.macromedia.com/flex/15/asdocs_en/ Click on DataGrid Scroll Down to the end of the page Look at the second sample ... I bet you didnt bother to check the docs first! yaagcur wrote: Really? I just checked my application editable=false clicking gets no

[flexcoders] Re: How can I unload or delete a remoteObject reference manually

2005-12-20 Thread ping2peng
OMG, thank you for this, if you didn't suggest this jsp i haven't noticed that I'm the most stupid person on the planet, the root cause of the problem was just not restarting the other appserv on the cluster. i was actually accessing the old copies. Thank You very much... it was my mistake.

Re: [flexcoders] datagrid header borders

2005-12-20 Thread Douglas Knudsen
a wild nope ;) looks like I have to create a headerRenderer for this. Somethings in Flex are kind of not so simple, eh? DK On 12/20/05, Manish Jethani [EMAIL PROTECTED] wrote: On 12/20/05, Douglas Knudsen [EMAIL PROTECTED] wrote: I have a datagrid, I set all the borders to a colour of say

[flexcoders] Re: How can I unload or delete a remoteObject reference manually

2005-12-20 Thread Dave Wolf
Glad to help! Clusters turn something complex to understand like multi-threaded programming into something so mind boggling as to make your head spin. The J2EE/server/deployment side of Flex is something that will be very new to a lot of folks from the Flash world too. -- Dave Wolf Cynergy

[flexcoders] Using compc to make SWC from AS

2005-12-20 Thread JesterXL
I'm having trouble getting compc to work. I'm not very good at Command line, so maybe that's the problem. How do you escape spaces on Windows XP? Like: C:\Documents and settings It keeps bitching there isnt' a C:\Documents , and I think I have to escape the space. How do you do that? Is

Re: [flexcoders] Using compc to make SWC from AS

2005-12-20 Thread JesterXL
Ok, this works (C:\Program Files\Macromedia\Flex\bincompc -o Signature.swc c:\Documents and Se ttings\Syle\My Documents\_Work Projects\Signature\flex\com\mfgquote\utils\Signature.as), but now getting a the class doesn't match the imported class. I used to get those types of errors in Flash

Re: [flexcoders] Using compc to make SWC from AS

2005-12-20 Thread JesterXL
...dude, I'm stumped... - Original Message - From: JesterXL [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, December 20, 2005 5:57 PM Subject: Re: [flexcoders] Using compc to make SWC from AS Ok, this works (C:\Program Files\Macromedia\Flex\bincompc -o Signature.swc

Re: [flexcoders] Using compc to make SWC from AS

2005-12-20 Thread JesterXL
Got it, I just had to point -root to the com folder. - Original Message - From: JesterXL [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, December 20, 2005 5:57 PM Subject: Re: [flexcoders] Using compc to make SWC from AS Ok, this works (C:\Program

[flexcoders] Re: Why is editable=true necessary to allow cellPress events (2.0)

2005-12-20 Thread yaagcur
Well not those docs certainly as I'm talking flex 2 (see title) This appears more relevant http://livedocs.macromedia.com/labs/1/flex/wwhelp/wwhimpl/js/html/wwhelp.htm?href=1531.html --- In flexcoders@yahoogroups.com, Sreejith Unnikrishnan [EMAIL PROTECTED] wrote: Open the livedocs ..

RE: [flexcoders] How do I know if a password is secure or not

2005-12-20 Thread Brian Deitte
This articlehas an example of using passwords in an application, assuming you also have data you want to protect: http://www.macromedia.com/devnet/flex/articles/security_framework.html I'd suggest using the standard Flex security model shown above along withHTTPS. -Brian From:

RE: [flexcoders] FireFox.exe has been shuted down abnormarlly when ...

2005-12-20 Thread Brian Deitte
Not sure. I'd suggest trying different versions of Firefox to see if this always occurs. My guess is that it doesn't. You could also check out Firefox's bugzilla: https://bugzilla.mozilla.org/buglist.cgi?query_format=specificorder=rel

RE: [flexcoders] How do I know if a password is secure or not

2005-12-20 Thread Brian Deitte
This articlehas an example of using passwords in an application, assuming you also have data you want to protect: http://www.macromedia.com/devnet/flex/articles/security_framework.html I'd suggest using the standard Flex security model shown above along withHTTPS. -Brian From:

RE: [flexcoders] Using compc to make SWC from AS

2005-12-20 Thread Brian Deitte
I tried to answer this, but my message slowly bounced. Apparently I needed to tell Yahoo about the shiny new email address. My stale advice: Try specifying a root that points to the directory that you would normally specify as the actionscript classpath. As a side note, this parameter

RE: [flexcoders] Re: Why is editable=true necessary to allow cellPress events (2.0)

2005-12-20 Thread Joan Tan
I tried the following simple dataGrid that is not editable and the cellPress event is triggered. Are you seeing something different? If so, please send the code along. ?xml version=1.0 encoding=iso-8859-1? mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml; creationComplete=initDG()

[flexcoders] Question about webservice tags

2005-12-20 Thread nostra72
What exactly are they used for and what is there purpose? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com YAHOO! GROUPS LINKS Visit your group

[flexcoders] Cellspan-type headers possible in datagrid? [v1.5]

2005-12-20 Thread victor chan
Is it possible to create something along the lines of the following in a DataGrid: population growth | some other label | % | 000,000s | mortality | birth | Sorry for the

RE: [flexcoders] Using compc to make SWC from AS

2005-12-20 Thread Brian Deitte
So using root didn't work for you? If your class is com.mfgquote.utils.Signature, then you will want to point it to the flex directory: compc -o Signature.swc -root c:\Documents and Settings\Syle\My Documents\_Work Projects\Signature\flex c:\Documents and Settings\Syle\My Documents\_Work

Re: [flexcoders]dragable Popup issue!!!!!!!?????????

2005-12-20 Thread Nithya R
but how do i make the titlewindow draggable when header height is 0? i want to drag the titleWindow with the help of the controlbar instead which i have placed on top...Manish Jethani [EMAIL PROTECTED] wrote: On 12/20/05, Nithya R [EMAIL PROTECTED] wrote: i have a title window with header

Re: [flexcoders] Re: Why is editable=true necessary to allow cellPress events (2.0)

2005-12-20 Thread Sreejith Unnikrishnan
Yaagcur, sorry I missed the '2.0'. Joan, I dont think the code works for us. I tried the code that u sent. Even after correcting some fatal errors that the builder throws up, the cellPress event does not work. And it does work with 'editable' enabled. It is possible that you are testing

Re: [flexcoders]dragable Popup issue!!!!!!!?????????

2005-12-20 Thread Manish Jethani
On 12/21/05, Nithya R [EMAIL PROTECTED] wrote: but how do i make the titlewindow draggable when header height is 0? i want to drag the titleWindow with the help of the controlbar instead which i have placed on top... You'll have to add your own code to implement dragging. Listen for the

Re: [flexcoders] Cellspan-type headers possible in datagrid? [v1.5]

2005-12-20 Thread Manish Jethani
On 12/21/05, victor chan [EMAIL PROTECTED] wrote: Is it possible to create something along the lines of the following in a DataGrid: population growth | some other label | %| 000,000s | mortality | birth|

Re: [flexcoders] datagrid header borders

2005-12-20 Thread Manish Jethani
On 12/21/05, Douglas Knudsen [EMAIL PROTECTED] wrote: a wild nope ;) looks like I have to create a headerRenderer for this. Somethings in Flex are kind of not so simple, eh? Hopefully things are better in Flex 2. Manish Yahoo! Groups Sponsor

Re: [flexcoders]dragable Popup issue!!!!!!!?????????

2005-12-20 Thread sn197412
Hi. Accidentally I could drag TitleWindow with HeaderHeight=0 but I don't know why. Here is a sample source of a component (name is DraggableCanvas). ?xml version=1.0 encoding=utf-8? mx:TitleWindow xmlns:mx=http://www.macromedia.com/2005/mxml; xmlns=* headerHeight=0 marginBottom=0