-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
47 additions
and
47 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
flexbrasil_explorer/.settings/org.eclipse.core.resources.prefs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#Sat Aug 01 00:33:24 BRT 2009 | ||
eclipse.preferences.version=1 | ||
encoding/<project>=utf-8 | ||
#Sat Aug 01 00:33:24 BRT 2009 | ||
eclipse.preferences.version=1 | ||
encoding/<project>=utf-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
package | ||
{ | ||
import flash.display.* | ||
import flash.events.* | ||
import flexbrasil.* | ||
import flash.utils.* | ||
|
||
public class Pintar extends MovieClip | ||
{ | ||
public function Pintar() | ||
{ | ||
$(this).autoEvents(); | ||
} | ||
|
||
public function on_mouseDown(e) | ||
{ | ||
addEventListener(MouseEvent.MOUSE_MOVE, pintar) | ||
graphics.moveTo(mouseX, mouseY) | ||
} | ||
|
||
public function on_MouseUp(e) | ||
{ | ||
removeEventListener(MouseEvent.MOUSE_MOVE, pintar) | ||
} | ||
|
||
private function pintar(e) | ||
{ | ||
graphics.beginFill(0xFF0000) | ||
graphics.lineStyle(25, 0xFF0000) | ||
graphics.lineTo(mouseX, mouseY) | ||
graphics.moveTo(mouseX, mouseY) | ||
graphics.endFill() | ||
} | ||
} | ||
package | ||
{ | ||
import flash.display.* | ||
import flash.events.* | ||
import flexbrasil.* | ||
import flash.utils.* | ||
|
||
public class Pintar extends MovieClip | ||
{ | ||
public function Pintar() | ||
{ | ||
$(this).autoEvents(); | ||
} | ||
|
||
public function on_mouseDown(e) | ||
{ | ||
addEventListener(MouseEvent.MOUSE_MOVE, pintar) | ||
graphics.moveTo(mouseX, mouseY) | ||
} | ||
|
||
public function on_MouseUp(e) | ||
{ | ||
removeEventListener(MouseEvent.MOUSE_MOVE, pintar) | ||
} | ||
|
||
private function pintar(e) | ||
{ | ||
graphics.beginFill(0xFF0000) | ||
graphics.lineStyle(25, 0xFF0000) | ||
graphics.lineTo(mouseX, mouseY) | ||
graphics.moveTo(mouseX, mouseY) | ||
graphics.endFill() | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package as3 | ||
{ | ||
import flash.display.* | ||
import flash.text.* | ||
|
||
public class Bug extends MovieClip | ||
{ | ||
|
||
} | ||
package as3 | ||
{ | ||
import flash.display.* | ||
import flash.text.* | ||
|
||
public class Bug extends MovieClip | ||
{ | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters