On 10/6/06, letterror <[EMAIL PROTECTED]> wrote:
>
>
> Bob Ippolito wrote:
> > I'm not sure exactly what the problem could be, but I would definitely
> > look into using swfobject to create Flash tags instead. There's some
> > quirks that you might run into if you don't, and swfobject also has
> > nice features like being able to use the version upgrade stuff.
> >
> > http://blog.deconcept.com/swfobject/
>
> Ha, I did have a brief look at swfobject, but couldn't figure out how
> to make work with MK. From their examples:
>
> > var so = new SWFObject("movie.swf", "mymovie", "200", "100", "7", 
> > "#336699");
> > so.write("flashcontent");
>
> Is there be a way to get the SWFObject to deliver its html to, say a
> Mochikit DIV() call?

something like this:

var SWFDIV = function (...) {
    var so = new SWFObject(....);
    var d = DIV();
    d.innerHTML = so.getSWFHTML();
    return d;
};

-bob

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"MochiKit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/mochikit
-~----------~----~----~----~------~----~------~--~---

Reply via email to