Recent content by TECHYbrian

  1. T

    Actionscript: Can you change this to 12-hour format not military?

    function h() { d = new Date(); t1.gotoAndStop(int(d.getHours() / 10) + 1); t2.gotoAndStop(d.getHours() % 10 + 1); t3.gotoAndStop(int(d.getMinutes() / 10) + 1); t4.gotoAndStop(d.getMinutes() % 10 + 1); } // End of the function function a_m() { this._alpha = this._alpha -...
Back
Top