Download the new Autochrome 2.0 Photography Wordpress Theme.

Monthly Archives: June 2002

Flash Tools

— By

A tool for Flash, that is what Flash-tools is, where you can find flashmail, flashforum, flashmp3player, flashmysql and yes a flashblog too. It have a good feature of letting you know at what stage its development of a particular project is using a visual indication of its stage from research, development, alpha, beta and to [...]

Pierre Yaacoub

— By

Pierre Yaacoub is a clean and cool looking site, which sports all the sections in a clear and crisp style. He is planning for an open source goodies too which will be downloadable as he promises. You can also check out his forum made entirely in Flash.

Movable Type

— By

I was visiting movable type yesterday and just today I saw their new version of the both the application MT 2.2 and the website. Interested parties and those using MT can check the new happening on movabletype.org. Oh Boy, I am not changing to MT at this moment, have little time to get used to [...]

IE 5.0 + full Screen from itself

— By

There was some discussion on the Macromedia Flash Forum about Full screen from the page itself. I just thought I will share that too here. You may alternatively have the click to be onLoad of the Body so that the browser goes fullscreen on load itself. Have the folllowing Javascript function fullscreen(){ var hdiff; window.moveTo(-4,-4); [...]

Eric Dolecki

— By

I went to Eric‘s site today and notice my site being linked from his site. Well, thanks a lot to Eric. A regular visit to his site will help you to be on par with new developments in Macromedia Flash.

Federica Fontana

— By

Josh Dura

— By

I was roaming around along all the other available blogs besides my regular visits, and stumbled upon Josh Dura‘s blog and saw my site linked from his site. Thanks a lot to Josh Dura for the recognition.

DMX & inc files

— By

I was surprised when I cannot have a design view of my include files [ .inc ] in Dreamweaver MX, so I went to ask on our Jordan’s Dreamweaver list at Blueworld and I got a part of my answer to exclude .inc from the Edit > Preference > File Type/ Editors and Open in [...]

Local Connection

— By

You must have heard of the localConnection thingy, I have nothing to this Sunday and tried my hand on it, I started off simple, you may view it here or just download the whole source file. Update Somebody on an online forum asked me if this is possible on a frameset

Move an MC around

— By

// How to move your MC around MovieClip.prototype.moveAround = function(){ Key.addListener(this); this.onKeyDown = function (){ this._x += Key.isDown (Key.RIGHT)*1 - Key.isDown (Key.LEFT)*1; this._y += Key.isDown (Key.DOWN)*1 - Key.isDown (Key.UP)*1; } }; // How to apply myMC.moveAround();