testing vb script in lj. Apparently it, too doesn’t work, either. in the same league as java and flash. poop.
Option Explicit
Dim NewAngle
Sub IeTimer1_Timer()
' Increment our angle counter NewAngle = NewAngle + 5
' Check to see if we have done half a ' revolution, if so then change the angle ' value to negative to continue the rotation If NewAngle = 180 then NewAngle = -1 * NewAngle
' Set the angle property for the first label leLabel1.angle = NewAngle
end sub