Re: [jQuery] Access to flash object

2006-11-01 Thread Wil Stuckey
On 10/31/06, Sam Sherlock [EMAIL PROTECTED] wrote: UFO Version 3.30 is coming soon sneek peak at http://www.refunk.com/ufo/ufo.jsI'm actually working on a jQuery port of UFO 3.xI've got a working port of UFO 2.0 sans a few features that we did not need here. I would be willing to post it if

Re: [jQuery] Access to flash object

2006-11-01 Thread Guntur N. Sarwohadi
Ooh.. me want jquery port of UFO 3.x.. thank you :)[g]On 11/2/06, Wil Stuckey [EMAIL PROTECTED] wrote:On 10/31/06, Sam Sherlock [EMAIL PROTECTED] wrote: UFO Version 3.30 is coming soon sneek peak at http://www.refunk.com/ufo/ufo.js I'm actually working on a jQuery port of UFO 3.xI've got a

Re: [jQuery] Access to flash object

2006-11-01 Thread Joel Birch
Yes... VERY interested! Cheers Joel. On 02/11/2006, at 6:40 AM, Wil Stuckey wrote: On 10/31/06, Sam Sherlock [EMAIL PROTECTED] wrote: UFO Version 3.30 is coming soon sneek peak at http://www.refunk.com/ ufo/ufo.js I'm actually working on a jQuery port of UFO 3.x I've got a working port

Re: [jQuery] Access to flash object

2006-10-31 Thread Luke Lutman
You make a good point about mobile devices, etc. Klaus -- point taken. I'm still not convinced about using object / though -- for me it's got a number of cons: * It's messy -- you need different code for different browsers. All the browsers support object /, but IE wants a different object /

[jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
Does anyone know how to access a flash object with jquery? I have a flash movie with a function I need to call from js. It already has a function registered as externalInterface and Im able to call it using regular js. I would like to know how in jquery. I tried doing the regular $(_expression_

Re: [jQuery] Access to flash object

2006-10-30 Thread Jörn Zaefferer
Does anyone know how to access a flash object with jquery? I have a flash movie with a function I need to call from js. It already has a function registered as externalInterface and Im able to call it using regular js. I would like to know how in jquery. I tried doing the regular $(expression

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
tried with jQuery was to cut the capturing function and straight to implementation: var oFlash = $(someflashmovie);but calling oFlash.somemethod(); now, doesnt work :(any ideas?Guntur N. SarwohadiOn 10/30/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Does anyone know how to access a flash object

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
y was to cut the capturing function and straight to implementation: var oFlash = $(someflashmovie);but calling oFlash.somemethod(); now, doesnt work :(any ideas?Guntur N. Sarwohadi On 10/30/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Does anyone know how to access a flash object with jq

Re: [jQuery] Access to flash object

2006-10-30 Thread Sam Sherlock
adi On 10/30/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Does anyone know how to access a flash object with jquery? I have a flashmovie with a function I need to call from js. It already has a functionregistered as externalInterface and Im able to call it using regular js. Iwould

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
but I'd would like not to use object embed tags as they are just messy. Hmm.. yeah... the nested object embed was generated by flash. It was an attempt to make the flash object work on most browsers.. hmm.. if this is a bad way to do things.. i'll have to find a better way.. or does anyone know

Re: [jQuery] Access to flash object

2006-10-30 Thread Ⓙⓐⓚⓔ
You want both... it's just you have to figure which one to control! I did a lot of object... embed .. /object stuff, and most browsers seem to like the embed. hmm! (I don't use IE) On 10/30/06, Guntur N. Sarwohadi [EMAIL PROTECTED] wrote: but I'd would like not to use object embed tags as

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
found this article... maybe this might light things up:http://www.ambience.sk/flash-valid.htmand http://www.alistapart.com/articles/flashsatay/so i guess to make things valid.. no longer use embed :)On 10/31/06, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote:You want both... it's just you have to figure which one

Re: [jQuery] Access to flash object

2006-10-30 Thread Klaus Hartl
Guntur N. Sarwohadi schrieb: but I'd would like not to use object embed tags as they are just messy. Hmm.. yeah... the nested object embed was generated by flash. It was an attempt to make the flash object work on most browsers.. hmm.. if this is a bad way to do things.. i'll

Re: [jQuery] Access to flash object

2006-10-30 Thread Daimajin
gistered method: oFlash.somemethod(); What i tried with jQuery was to cut the capturing function and straight to implementation: var oFlash = $("someflashmovie"); but calling oFlash.somemethod(); now, doesnt work :( any ideas? Guntur N. Sarwohadi On 10/

Re: [jQuery] Access to flash object

2006-10-30 Thread Erik Beeson
The nested object/embed tag is because some browsers recognize the object tag, and others the embed tag. But the browsers will ignore the tag they don't support. Your $(object#flashobjectembed) code is only selecting the embed tag, not the object tag. Which means will only work in the browsers

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
Why do you want to use jQuery for this? Why not? :) ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Access to flash object

2006-10-30 Thread Matt Stith
Because it would be easier/faster not to.On 10/30/06, Guntur N. Sarwohadi [EMAIL PROTECTED] wrote: Why do you want to use jQuery for this? Why not? :) ___jQuery mailing listdiscuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
does it really? hmmm.. can you list any other advantages? thanks!On 10/31/06, Matt Stith [EMAIL PROTECTED] wrote:Because it would be easier/faster not to. On 10/30/06, Guntur N. Sarwohadi [EMAIL PROTECTED] wrote: Why do you want to use jQuery for this? Why not? :)

Re: [jQuery] Access to flash object

2006-10-30 Thread Matt Stith
Well for one, you wouldnt have to keep emailing us. :)I wouldnt recommend using the approch you were using (window[n] = depricated i belive), Im not sure what else you could try, but im sure a little research could help. jQuery takes a relatively long time to find elements compared to using native

Re: [jQuery] Access to flash object

2006-10-30 Thread Guntur N. Sarwohadi
heheh ok then.. thanks again!On 10/31/06, Matt Stith [EMAIL PROTECTED] wrote: Well for one, you wouldnt have to keep emailing us. :)I wouldnt recommend using the approch you were using (window[n] = depricated i belive), Im not sure what else you could try, but im sure a little research could help.

Re: [jQuery] Access to flash object

2006-10-30 Thread Ⓙⓐⓚⓔ
I have given up on embeds and objects directly in the html. a href=xxx.swf flash /a always works. if they don't have the software, the browser will assist these folks or allow them to download the file. jquery can catch these requests and convert them into a pleasant embed/object and permit