Tag Archives: download

StomperTools: Ranker & Scrutinize This

StomperTools Plugin StomperLabs is proud to announce another cool, FREE software tool. The StomperTools Firefox plug in! We’re going to pack many tools into this plugin in the future, but to start it off we’ve bundled two functions into this plug in. StomperNet Ranker The first is called StomperNet Ranker, and it allows your prospects to quickly survey [...]
Posted in portfolio, work | Also tagged , , , | Leave a comment

Brownian Movement in Actionscript | Random Motion Tutorial

Overview Having things drift around or move randomly has always interested me. Having an animation that is never going to be the exact same thing is very exciting. The focus turns from key-ing exact animations to programming a feel and letting the animations take car of themselves! One type of seemingly random motion is Brownian motion. [...]
Posted in tutorial | Also tagged , , , , , , , | 2 Comments

Firefox 3 + StomperTools Release and Atlanta Party

Serious internet businesses require serious internet tools. Firefox 3 is a dramatic step forward! Help Mozilla.org set a Guiness Book record by downloading the new release on Tuesday the 17th of June 2008 (11 AM PST). To celebrate, StomperNet and Appcelerator are hosting a release party in Atlanta at Park Tavern as a part of a world-wide [...]
Posted in personal, work | Also tagged , | Leave a comment

StomperNet’s Scrutinizer Update v1.0

StomperNet’s Scrutinizer has recieved some updates! New help documentation Keyboard Shortcut Functionality saving a screenshot bookmarking a page toggling the visualization toggle auto-zoom Aesthetic improvements Performance optimizations Improved auto-update. If you’re wondering what the heck StomperNet’s Scrutinizer is: What is it? The Scrutinizer is a web browser, based upon the Adobe AIR toolkit and the WebKit browser, that offers a simulation of the human visual system. [...]
Posted in portfolio, work | Also tagged , , , , , , | Leave a comment

Calling actionscript functions through HTML text | asfunction Tutorial

Add this to the list of things I should have already known! Story I’ve got an html enabled text box and was trying to devise a way that I could have a hyperlink anchor tag not link to a webpage but actually do something flash. It didn’t seem possible, and I looked through all the different html [...]
Posted in tutorial | Also tagged , , , , , , | 10 Comments

Intro to Flashvars | Passing variables to actionscript from the html embed | Tutorial

I’ve had a couple special requests to explain flashvars and how to use it and show it in action. Overview The property “FlashVars” can be used to import root level variables to the flash movie or swf. The flashvars propery is used in codes for embedding flash in the html page. The string of variables passed in [...]
Posted in tutorial | Also tagged , , , , , | 15 Comments

Using CSS Attribute Selectors to Stylize HTML | Style outbound links | Tutorial

Intro to CSS We use css to apply styles to certain elements on the page, we can target any div like this: HTML 1<div>Text</div> CSS 123div { css-property: value; } Any class selector <div class=”divClass”> like this: HTML 1<div class="divClass">Text</div> with this: CSS 1234567div.divClass { css-property: value; } <!-- or simply --> .divClass { css-property: value; } or any id selector, <div id=”divID”> like this: HTML 1<div id="divID">Text</div> with this: CSS 1234567div#divID { css-property: value; } <!-- or simply --> #divID { css-property: value; } These are [...]
Posted in tutorial | Also tagged , , , , | Leave a comment

Shared Object – utilizing the Flash cookie

Overview The Shared Object is like a cookie for flash. It lets flash store some data on the local machine, so between sessions it can remember things. Learn more from wikipedia. Shared Objects are used to store data on the client machine in much the same way that data is stored in a cookie created through a [...]
Posted in tutorial | Also tagged , , , , , , | 1 Comment