| 123456789101112131415161718192021222324 |
- package com.imt.intimamedia.helpers
- {
- import flash.display.Graphics;
- import flash.display.Shape;
-
- public class CustomCursor extends Shape
- {
- public function CustomCursor()
- {
- draw();
- }
-
- private function draw():void {
- var g:Graphics = graphics;
- g.clear();
-
- g.lineStyle(1,0xffffff,1);
- g.moveTo(-7,0);
- g.lineTo(8,0);
- g.moveTo(0,-7);
- g.lineTo(0,8);
- }
- }
- }
|