A Bit of Random Code
42.7 percent of all statistics are made up on the spot.
We use lots and lots of naming conventions (or at least try to) at work.
I found this little piece of code that might help me(and maybe you) sometime in the future. To have it handy when it’s needed i’ll put it here for my personal reference:
…
<script>  ÂÂ
<!–DATA[
 private function linkHandler(event:MouseEvent):void
{  ÂÂ
var url:URLRequest = new URLRequest("http://finance.yahoo.com/q/cq?d=v1&s=" + event.target.label);  ÂÂ
navigateToURL(url);
}  ÂÂ
]]>;
</script>
….
<linkbutton label=”ADBE”></linkbutton>
<linkbutton label=”GE”></linkbutton>
<linkbutton label=”HD”></linkbutton>
<linkbutton label=”IBM”></linkbutton>
<linkbutton label=”INTC”></linkbutton>
…