Archive for the 'Flash Tips' Category

Advanced Communication between Flash and HTML

Saturday, May 21st, 2005

Do you know that Flash could communicate with the base HTML? You just add a javascript function to operate in HTML, then call in Flash using getURL(”javascript:someFunction(’arg1′,’arg2′)”); That’s all~

But, an important thing is that;”getURL function” works correctly only if its argument’s text length is less than 255.

So I use a trick as below:

In HTML Part,

//This […]

Display Windowless Flash on Firefox

Thursday, May 19th, 2005

Most people said that firefox doesn’t support windowless flash using “< param name=wmode value=transparent>”, but Firefox can do it of cause

First of all, you have to modify < object > tags. Firefox does not read param tags, but embed tag. So, you have to add new attribute to embed tag like this,

If you […]

Controlling Multi-channel Sound

Wednesday, May 18th, 2005

Do you know that Macromedia Flash only suppport maximum 8 channel sounds? For instance, if your current sound channel reachs maximum limit, Flash cannot play new sound unless one of the play sound ends. So, I made SoundController class, which manages sound channel. When current channel get to maximum sound limit, SoundController class stop the […]