Tag Archives: html
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 actionscript, as2, css, download, flash, open source, tutorial 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 actionscript, as2, download, flash, open source, tutorial 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 [...]
StomperNet Going Natural 3 Web Design
Site built for Going Natural 3, free series of videos to promote the re-opening of StomperNet. Includes flash video and html template design in drupal all styled with custom made themes and css. Users were prompted to subscribe with email address and then allowed to view the premium video content and comment. Site discontinued, but [...]
Posted in portfolio Also tagged css, dreamweaver, drupal, flash, illustrator, interactive, photoshop, portfolio, stompernet, web design, website, work Leave a comment
Going Natural 3.0 at StomperNet
Here’s a new site and series from StomperNet called Going Natural 3!
It’s a bit of free videos made and released to showcase the talents and business of what StomperNet is about and what they do for their clients. They’re ‘moving the freeline’ so to speak…
The first video series begins with Dan Thies talking about his [...]
Posted in portfolio Also tagged actionscript, as2, css, drupal, flash, javascript, php, stompernet, video, web design, website, work 1 Comment
Stomper Scrutinizer Browser AIR App
Software for viewing websites through a simulated fovea vision. Since not everyone could set-up, let alone afford a real eye-tracker. This software uses the mouse pointer as the user’s focal point, or foveal view. It blurs everything except where your focal point (the mouse) is. It is helpful because it forces you to re-think web [...]
Posted in portfolio Also tagged actionscript, AIR, as3, design, flex, interactive, mxml, portfolio, stompernet, usability Leave a comment
Get Current URL and Query String Parameters to Flash | Tutorial
Overview
This tutorial / how to / example will show how to get the current url from the browser to flash, and even how to get the query string parameters from the url into actionscript using ExternalInterface.
It has been a dilemma for many people to get this information into flash across browsers and without having to [...]






















Style htmlText with CSS in your Actionscript | Flash/CSS Tutorial