| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.imt.intimamedia.helpers
- {
- import flash.display.Graphics;
- import flash.display.Shape;
- public class ScaleCursor extends Shape
- {
- public function ScaleCursor()
- {
- Draw();
- }
-
- public function Draw():void
- {
- var graph:Graphics = graphics;
- graph.clear();
-
- // 2 lignes verticales
- graph.lineStyle(1, 0xf98d00);
- graph.moveTo(-4, -5);
- graph.lineTo(-4, 6);
- graph.moveTo(4, -5);
- graph.lineTo(4, 6);
- // 3 lignes horizontales
- graph.lineStyle(1, 0xf98d00, 1);
- graph.moveTo(-4, -4);
- graph.lineTo(4, -4);
-
- graph.moveTo(-4, 0);
- graph.lineTo(4, 0);
- graph.moveTo(-4, 4);
- graph.lineTo(4, 4);
- graph.moveTo(0, -4);
- graph.lineTo(0, 21);
- }
- }
- }
|