Tag Archives: Flash

Blue lego block of ambiguity

Blue lego block of ambiguity

At the risk of getting sucked into the Apple vs Adobe shitstorm, my own response to Apple chosing to block Flash content from their mobile devices is to at least tell users why – because Apple left it at the … Continue reading

Posted in Flash, Politics | Tagged , , , | Leave a comment

FlashSize – simple browser resizing

How to allow SWFs to display at 100% width/height in your browser - but enforce a minimum width and height, in case of a smaller browser window size than you've designed for. Until recently, I'd used other Flash/browser resize managers … Continue reading

Posted in AS3, Flash | Tagged , , , | Leave a comment

Mind control

Here's one of my old games being controlled with brainwaves in a homebrew EEG device cobbled together by Italian Hacker Mastro Gippo:

Posted in Flash, Games, Videos, apps | Tagged , , | Leave a comment

Local playback security in FlashDevelop and Flash CS3 / CS4

I've seen a few people get into a pickle over this one. When you're developing and testing locally, you need to set the 'Local Playback Security' setting (sometimes referred to as the 'use network services' option) depending on whether you … Continue reading

Posted in Flash | Tagged , , | Leave a comment

How to use ExternalInterface to integrate AS3 with JavaScript

Here's a quick snippet of code for integrating your SWFs with JavaScript, using ExternalInterface: PLAIN TEXT Actionscript: import flash.external.ExternalInterface;   // Calling a JavaScript function from AS3 (with optional parameters) if (ExternalInterface.available) ExternalInterface.call("javascriptFunction", param1, param2);   // Implementing a JavaScript … Continue reading

Posted in AS3, Flash | Tagged , , , , , | Leave a comment