[flexcoders] Re: Flex Marketing

2006-10-10 Thread Ray
pretty passionate and vocal community of ColdFusion developers. Get us to be as equally vocal and passionate about Flex. I think that would help in marketing Flex a great deal. Ray --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > Hey guys, I&#x

[flexcoders] Re: Repositioning pop up window

2006-07-27 Thread Robi Ray
Thanks Tim. I, somehow, got the soln to this: var l:IFlexDisplayObject = PopUpManager.createPopUp(this, , true); l.x = some value; l.y = some value; Regards, Robi. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-

[flexcoders] Re:HTML wrapper fails to display swf

2007-02-05 Thread Robi Ray
Check out whether "history.js" & the history iframe is included in your wrapper file. I've experienced cases where the absence of these prevent rendering of the swf. All the best, Robi.

[flexcoders] Re:properties in components..

2007-02-08 Thread Robi Ray
Place the line ' x.label="jim" ' in a function & call that on the creationComplete event of the component. The fault is in directly writing the statement. Regards, Robi.

[flexcoders] Re:HTML in Flex

2007-02-08 Thread Robi Ray
You can use the iframe trick, but rather than iframe try using the 'div' & 'layer' html tags along with JavaScript. This will remove cross browser issues. Cheers !

[flexcoders] Re:Panel skinning

2007-02-15 Thread Robi Ray
Try using the opaquebackground property by setting it to the background color value.

[flexcoders] Re:width=100% as maximum, not minimum?

2007-02-21 Thread Robi Ray
Reid, As far as my knowledge goes, you can achieve truncation only if you specify fixed width values in pixels when using labels. Percentage values always get overridden when the text is too long. Another suggestion after looking at your code : - Avoid using the 'GridRow' & 'GridItem' tags from p

[flexcoders] Re:navigateToUrl Problem

2007-02-21 Thread Robi Ray
Try using "_top" or "_parent". Regards, Robi.

[flexcoders] Re:How do I prevent the user from selecting text in a text area

2007-02-27 Thread Robi Ray
Make the enabled property as false & add a suitable color value to the 'disabledColor' attribute.

[flexcoders] Re:ui design question, ideas for showing the user to wait while a recor

2007-02-28 Thread Robi Ray
You can do the following: Within the remote call method, you can add the following as the first line : CursorManager.setBusyCursor(); Next, within the method's result handler, add the following line once you get resultstatus as true (I mean once data retreival is successful):

[flexcoders] Re:Funny appearance of TabNavigator icons

2007-03-08 Thread Robi Ray
Can you post snippets of your code or deploy your app on some server & send the link? Also, don't forget to allow the "view source code" option :))

Re: [flexcoders] Suggestion .. WebOrbPHP Zend MySql + Flex 2

2007-03-29 Thread Ray Horn
I have been using Flex Builder 2.0.1 and WebOrb/PHP 1.3.2 with SQL Server 2005 with very good results. I have also spec'd out some improvements to WebOrb to make it more useful as well as more like FDS than WebOrb. - Original Message From: Sajid Hussain <[EMAIL PROTECTED]> To: flexcod

Re: [flexcoders] Suggestion .. WebOrbPHP Zend MySql + Flex 2

2007-03-30 Thread Ray Horn
07 12:37:50 AM Subject: Re: [flexcoders] Suggestion .. WebOrbPHP Zend MySql + Flex 2 Hi , Ray Thanks for reply .. What about using zend platform with WebOrbPHP I am not that much good in php so very confused to start with this does webOrb will help me for data paging records and things ?

Re: [flexcoders]PHP and Flex questions

2007-04-04 Thread Ray Horn
Rather than worry about the server session why not simply maintain the session state in the client since it is assume your client is running a SWF ala Flex. The fact that the client has accomplished a login could be handled by sending a specific token to the server as long as the token is some

Re: [flexcoders] Save to database

2007-04-04 Thread Ray Horn
Modify data elements as they are changed. Use LiveCycle Data Services 2.5 to achieve collaboration model that allows many users to collaborate as they view/edit data - all clients would have to by sync'd with changes to data. For those who love PHP but don't like Java this same sort of thing (w

Re: [flexcoders] How do put HTML in an Alert

2007-04-04 Thread Ray Horn
I chose to make my own Flex component based on a Canvas or some other suitable object into which I placed TextArea object that would allow me to display HTML using a suitable message. I did have to write some code to mimic the behaviors of Alert.Show() to make my pop-up modal and on top of othe

Re: [flexcoders] Re: Connect and Retrieve from MS SQL Server 2005

2007-04-05 Thread Ray Horn
Yes, but doing what you suggest means you must expose your database server to the outside world and for some this is simply unacceptable. - Original Message From: Paul Wright <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, April 5, 2007 9:02:44 AM Subject: RE: [flexco

Re: [flexcoders] Re: User authentication

2007-04-05 Thread Ray Horn
For those who simply need a one-off Authentication scheme for Flex rather than an Enterprise Level Authentication Scheme the following could easily be done: 1). Find an encryption library coded using AS3 - easy to find this via google. 2). Code the Login dialogs using Flex. 3). Before sendin

Re: [flexcoders] Re: User authentication

2007-04-05 Thread Ray Horn
Yes, but there is an advantage to working with HTTPService destinations that are Session-Less as well as Connection-less. Reliance upon a server-side Session only works to weaken the usefulness of web based service providers. - Original Message From: Samuel R. Neff <[EMAIL PROTECTED]>

Re: [flexcoders] Re: User authentication

2007-04-05 Thread Ray Horn
unprotected HTTPService. What are the chances of my data to be intercepted? On 05 Apr 2007 13:10:28 -0700, Ray Horn <[EMAIL PROTECTED] net> wrote: Yes, but there is an advantage to working with HTTPService destinations that are Session-Less as well as Connection-less. Reliance upon a ser

Re: [flexcoders] Re: User authentication

2007-04-05 Thread Ray Horn
es Pena <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, April 5, 2007 2:37:10 PM Subject: Re: [flexcoders] Re: User authentication Thanks again for your help Ray and Peter.. I am actually a little lost. All I want is to guarantee that the user name and password that will go

Re: [flexcoders] Re: User authentication

2007-04-05 Thread Ray Horn
e includes the key used to hash / encrypt, then the swf file could be decompiled or otherwise inspected to find the key? Thanks again guys for perservering with this thread. Tony Posted by: "André Rodrigues Pena" [EMAIL PROTECTED] com techbreak2 Thu Apr 5, 2007 2:37 pm (PST) Thanks a

Re: [flexcoders] Re: Bizarre compilation issue.

2007-04-07 Thread Ray Horn
XML compliance parsers aren't smart enough to handle a errant blank line ?!? Me thinks it may be necessary to code a pre-compliance parser to watch for issues the typical XML compliance parser isn't smart enough to take care of. - Original Message From: jjkruse1 <[EMAIL PROTECTED]> To:

Re: [flexcoders] Sending multiple HTTPService requests - how to really cancel all but the last

2007-04-07 Thread Ray Horn
I too ran into this sort of problem however I chose to build a REST Serialization mechanism that guarantees I can queue-up requests as deep as I need and then execute them serially since that is the way my REST backend needs the requests in order to maintain database state. - Original Mess

Re: [flexcoders] Sending multiple HTTPService requests - how to really cancel all but the last

2007-04-08 Thread Ray Horn
in an application i'm working on i make three different service request calls. i'll see if i can find out how to cancel them. On 07 Apr 2007 23:48:50 -0700, Ray Horn <[EMAIL PROTECTED] net> wrote: I too ran into this sort of problem however I chose to build a REST Serialization mechanism

[flexcoders] NetConnection.Call.BadVersion

2006-12-15 Thread Cameron Ray
I'm getting some troubs from Flex using AMFPHP remoting. I'll try to make this as brief as possible. I'm receiving the dreaded "NetConnection.Call.BadVersion". It's a simple login service to check a username & password against the mySQL DB. It works fine if I don't try to encrypt the pas

[flexcoders] Datagrid scrolling woes!

2006-12-20 Thread Cameron Ray
Hello all, I'm trying to accomplish something that is seemingly easybut is driving me bananas due to the fact that it's not working. I want to setup a function that can be called and that function will scroll my datagrid to a specific row within that datagrid. Here's what I've got (tha

[flexcoders] Re:Performance Enhancement of Flex Application

2007-01-10 Thread Robi Ray
Hey Hara, There are lot of factors for your flex app performance: 1) Server response, 2) Backend response, 3) What kind of communication are you using in the middle tier? FDS or open AMF or some other 4) Container nesting & architecture 5) What is the app loadin

[flexcoders] Re:External Interface Help

2007-01-15 Thread Robi Ray
Hey Russell, An alternative to this is make a duplicate of the html file you created in the 'bin' folder itself & everytime after compiling the application, run the duplicate html file from the browser. Hope this helps ! Regards

[flexcoders] Re:An internal build error has occurred. Please check the Error Log.

2007-01-18 Thread Robi Ray
Well, this seems to be kind of a bug in the tool. I faced a similar situation some time back, but could not trace out the issue. Often, it is because of a corrupted file. The only I could solve it was delete all project references & start afresh.

[flexcoders] Flex TextInput componet 's problem

2008-06-24 Thread Ray Zhang
I don't know TextInput 's text andtextField.text property 's difference anybody know ,tell me plz Ray

[flexcoders] get the week through date

2008-06-28 Thread Ray Zhang
If I know a Date ,how can I get the week of the Date 's first Day and  last Day? Can anyone offer any advice? Thank you very much.

Re: [flexcoders] Re: get the week through date

2008-06-28 Thread Ray Zhang
and do a little math to get the previous Sunday and next Saturday. -Michael --- In [EMAIL PROTECTED] ups.com, Ray Zhang <[EMAIL PROTECTED]> wrote: > > If I know a Date ,how can I get the week of the Date 's first Day and  last Day? > Can anyone offer any advice? > Thank you very much. >

Re: [flexcoders] (TabNavigator component )Error #1009Cannot access a property or method of a null object reference

2008-07-10 Thread Ray Zhang
ed "this.day" to something(like new Date() or whatever it is here) before using it in the above line. Try to initialize it and then execute your application. -Manu. Ray Zhang wrote: > > After the page is shown ,i have to do some logic handle (add ,edit) in the > Panel

[flexcoders] Can I change the DateField Component 's header content

2008-07-10 Thread Ray Zhang
DateField 's header content normally is the following format "June 2008" can i change it to "2008 06"?? does anyone know  ,thank u

[flexcoders] how can I get the Java Session 's data from Flex cilent side

2008-07-10 Thread Ray Zhang
Our system uses java/jsp to do the login  function, but I want to get the login user 's information at the  Flex side ,how can I realize it? Can anyone give me some advice? thank u !

[flexcoders] Error :Security error accessing url

2008-07-15 Thread Ray Zhang
when I deployed the progarmme on the server ,and user the HTTPService to remote access, Error "Security error accessing url  " will be shown I have put the crossdomain.xml file on http://IP:8080/crossdomain.xml anybody knows the reason?

[flexcoders] Re: showcase

2008-05-07 Thread Marcel Ray
rtainly was for me and my first large Flex app. -Marcel Ray --- In flexcoders@yahoogroups.com, "mcmoisei" <[EMAIL PROTECTED]> wrote: > > I'm looking to see how such an application is approached as a whole. > > I can easily identify various components within it. As

[flexcoders] Re: showcase

2008-05-07 Thread Marcel Ray
rtainly was for me and my first large Flex app. -Marcel Ray --- In flexcoders@yahoogroups.com, "mcmoisei" <[EMAIL PROTECTED]> wrote: > > I'm looking to see how such an application is approached as a whole. > > I can easily identify various components within it. As