Wanted:
Software Developers


If you are looking for your next project or full time job, fill out my contact form and click on "I am a software developer seeking a referral interview".

>> Talk to me




Web 2.0 is More Dynamic

(Scroll down to view ActionScript source code.)

When I think of Web 2.0, I think Content, XML, Digital Interoperability.  And this:



ActionScript Spiderweb Source Code

_quality="MEDIUM"

var j=0
mcWeb.lineStyle(2,0,100)
mcWeb.onEnterFrame=function()
{
var i=j+19

var ringsize=3
var r0=Math.floor(i/6)*6*ringsize-ringsize*6
var r1=Math.floor(i/6)*6*ringsize

if(i<180)
  {
  if(i%6==0)
  {
  for(k=1; k<6; k++)
    {
    a=k/5*6.283
    x=Math.sin(a)
    y=Math.cos(a)
   
    this.moveTo(x*r0,y*r0)
    this.lineTo(x*r1,y*r1)
    }

  }
  else
  {
  var a=(i-1)%6/5*6.283
  var x=Math.sin(a)
  var y=Math.cos(a)
  this.moveTo(x*r1, y*r1)

  var a=i%6/5*6.283
  var x=Math.sin(a)
  var y=Math.cos(a)
  this.lineTo(x*r1,y*r1)
  }
  }
j++

this._yscale=Math.cos(j % 30 / 30 * 6.28)*20 + 75
this._xscale=Math.sin(j % 30 / 30 * 6.28)*20 + 75

this._rotation++
}