Re: Can I put focus on a Flash Form Field?

2007-02-09 Thread Alton Chinn
Try this event handler: cfformitem type=script function goto_login():void { username.setfocus(); } !--- other AS code goes here --- /cfformitem I have built a few Flash Forms, and I would like to use the below code to have the cursor flash in the first form field. Is this possible...or

Re: Can I put focus on a Flash Form Field?

2007-02-09 Thread Alton Chinn
I'm sorry, but Actionscript is case sensitive: username.setFocus(); Try this event handler: cfformitem type=script function goto_login():void { username.setfocus(); } !--- other AS code goes here --- /cfformitem ~|

Cfqueryparam and Oracle

2007-01-09 Thread Alton Chinn
When I use CFQUERYPARAM with an Oracle database, I receive the error query not properly ended. ALWAYS use CFQUERYPARAM...it's not just for stopping SQL injection attacksit also increases query speed by using BIND variables (at least with Oracle and MS SQL Server.not Accessnot