| Author |
Message |
clubdafterhours
Joined: 05 Jun 2007 Posts: 3
|
Posted: Tue Jun 05, 2007 4:35 pm Post subject: Drawing api problem! |
|
|
How can I get it not to draw over my cursor, I'm hiding the mouse and replaced it with a pencil but it draws over it.?
|
|
| Back to top |
|
 |
guitarman fourth grade
Joined: 04 Nov 2005 Posts: 726
|
Posted: Tue Jun 05, 2007 5:14 pm Post subject: |
|
|
could you give me a sample of your .swf? i don't guite understand when you said not to draw over your cursor.
|
|
| Back to top |
|
 |
clubdafterhours
Joined: 05 Jun 2007 Posts: 3
|
|
| Back to top |
|
 |
guitarman fourth grade
Joined: 04 Nov 2005 Posts: 726
|
Posted: Tue Jun 05, 2007 11:23 pm Post subject: |
|
|
Hi,
try changing the depth level. i saw in the experiment, the depth was 1. So try to change it to (-999999999), if it doesn't work.
try to check the depth of the cursor and compare it with the depth of the Line movie clip.
| Code: |
_root.createEmptyMovieClip("line",1);
cursor_mc.startDrag("true");
trace(line.getDepth());
cursor_mc.getNextHighestDepth();
trace(cursor_mc.getDepth()); |
Last edited by guitarman on Wed Jun 06, 2007 9:52 am; edited 1 time in total |
|
| Back to top |
|
 |
clubdafterhours
Joined: 05 Jun 2007 Posts: 3
|
Posted: Wed Jun 06, 2007 4:26 am Post subject: |
|
|
Thank you so much!
|
|
| Back to top |
|
 |
|