RE: [Flashcoders] sending HTML image map data to Flash

2006-05-29 Thread Marc Hoffman
nard Visscher > Verzonden: maandag 29 mei 2006 17:29 > Aan: 'Flashcoders mailing list' > Onderwerp: RE: [Flashcoders] sending HTML image map data to Flash > > I don't know how with imageready. > One thing you could do is replace all " "" with ""

RE: [Flashcoders] sending HTML image map data to Flash

2006-05-29 Thread Bernard Visscher
l entries, because > flash add's them(not at the correct place) if you don't use > closed area-tags. > > Bernard > > > -Oorspronkelijk bericht- > > Van: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] Namens > Marc Hoffman > > Verzonden

RE: [Flashcoders] sending HTML image map data to Flash

2006-05-29 Thread Bernard Visscher
-- > Van: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Namens Marc Hoffman > Verzonden: maandag 29 mei 2006 17:01 > Aan: Flashcoders mailing list > Onderwerp: RE: [Flashcoders] sending HTML image map data to Flash > > Very cool solution, Bernard -- thanks! Any way to force &g

Re: [Flashcoders] sending HTML image map data to Flash

2006-05-29 Thread Geoff Stearns
you *could* pass the data using innerHTML, but in some browsers the data will be changed (IE in particular is terrible with some things) check this blog post out for tips (read some of the comments) on the subject: http://blog.deconcept.com/2006/02/27/using-alternate-content-flash/ it may

RE: [Flashcoders] sending HTML image map data to Flash

2006-05-29 Thread Marc Hoffman
> [mailto:[EMAIL PROTECTED] Namens > Bernard Visscher > Verzonden: maandag 29 mei 2006 15:27 > Aan: 'Flashcoders mailing list' > Onderwerp: RE: [Flashcoders] sending HTML image map data to Flash > > You can also load the html file with the XML loader. > > Something li

RE: [Flashcoders] sending HTML image map data to Flash

2006-05-29 Thread Bernard Visscher
else trace("Error loading file"); > } > __xml.load("imagemap.html"); > > Now it will trace the full html-file. > > > Bernard > > > -Oorspronkelijk bericht- > > Van: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] Namens Greg

RE: [Flashcoders] sending HTML image map data to Flash

2006-05-29 Thread Bernard Visscher
html-file. Bernard > -Oorspronkelijk bericht- > Van: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Namens GregoryN > Verzonden: zondag 28 mei 2006 20:20 > Aan: Flashcoders mailing list > Onderwerp: Re: [Flashcoders] sending HTML image map data to Flash > > Hello Mar

Re: [Flashcoders] sending HTML image map data to Flash

2006-05-28 Thread GregoryN
Hello Marc, Well, the decision WHERE to parse is yours entirely. I think it can also depend on your security goals: if you parse in JS, all your funtions, vars at swf's _root etc are available in cache. If you just pass all "innerHTML" to flash - something will be hidden. -- Best regards, Gre

Re: [Flashcoders] sending HTML image map data to Flash

2006-05-27 Thread Marc Hoffman
Thanks, Gregory! I'm passing this along to the person who's been working on parsing the image map from within flash. You approach would seem to eliminate the need for parsing by Flash. [Peter: what do you think?] Marc At 10:35 AM 5/27/2006, you wrote: Hello Marc, I can suggest the following

Re: [Flashcoders] sending HTML image map data to Flash

2006-05-27 Thread GregoryN
Hello Marc, I can suggest the following: 1) place your image map description inside tag and set ID to this div. Say, 2) Create a function in Javascript that reads the document.getElementById("myMap").innerHTML; and sets some of hosted swf's var(s) according to content of this "innerHTML". 3)

Re: [Flashcoders] sending HTML image map data to Flash

2006-05-26 Thread mike cann
I do not know of a way to do this, but would be interested if you do find out a way :) Mike On 25/05/06, Marc Hoffman <[EMAIL PROTECTED]> wrote: [My apologies if you receive this twice -- didn't seem to go through the first time.] Anyone have tips on making Flash read the image map on the h