Archive for August, 2004

How to cover an IE windowed control (Select Box, ActiveX Object, etc.) with a DHTML layer.

http://dotnetjunkies.com/WebLog/jking/archive/2003/07/21/488.aspx

It’s awesome tip for DHTML menu over form elements(select)

random number in specific range

I always forget to write a function in ActionScript/JavaScript to output a random number in specific range.

Math.random() * (max – min) + min

If you need a whole number, add Math.floor function to the result.