Re: [Flashcoders] setFocus with javascript

2006-03-19 Thread iashido
:) maybe i'm totally wrong but this always works on pc/mac - ie, firefox, safari... ... http://iashido.com/showcase/addb/ flash have the focus without clicking inside... On Mar 20, 2006, at 12:40 AM, David Rorex wrote: On 3/19/06, Tolga H. Tatari <[EMAIL PROTECTED]> wrote: I had been

Re: [Flashcoders] setFocus with javascript

2006-03-19 Thread David Rorex
On 3/19/06, Tolga H. Tatari <[EMAIL PROTECTED]> wrote: > > I had been searching a solution to flash UI components mouse wheel problem > on swf's longer than the page and that don't fit the browser. > > I found a solution like this : > > var mouseListener:Object = new Object(); > mouseListener.onMou

[Flashcoders] setFocus with javascript

2006-03-19 Thread Tolga H. Tatari
I had been searching a solution to flash UI components mouse wheel problem on swf's longer than the page and that don't fit the browser. I found a solution like this : var mouseListener:Object = new Object(); mouseListener.onMouseWheel = function() { getURL("javascript:focus(document);"); } Mou