
-----------------------------------
TheXploder
Thu Jan 22, 2004 11:49 am

My Flash Paint Program.
-----------------------------------
Check out my flash paint program.
 8) 

http://www22.brinkster.com/thexploder/terrain_editor.html

Any comments or suggestions are always welcome.
 :wink:

-----------------------------------
Homer_simpson
Thu Jan 22, 2004 12:08 pm


-----------------------------------
well... it's a nice program... but it would be better if put the layer that u draw on under all the other layers so ppl would be able to draw on the scrollbar...

-----------------------------------
apomb
Thu Jan 22, 2004 5:24 pm

kool program
-----------------------------------
Nicely layed out ... but when you paint over the buttons, you cant see what color you are picking.

-----------------------------------
shorthair
Thu Jan 22, 2004 5:28 pm


-----------------------------------
ummmmm its " Special" ,

-----------------------------------
Delta
Wed Feb 04, 2004 5:44 pm


-----------------------------------
I like the fact that its a drawing program... except that you can draw on everything .... fix that...


on(press){
if(mouseX > leftX & mouseX < rightX & mouseY > bottomY & mouseY < topY){
//draw stuff now

}
}

well I'm not sure if '&' works or if it has to be 'and'
but ya

mouseX = the mouse x position
mouseY = the mouse y position
leftX = is the left side of the canvas..... like the starting x coordinate
rightX = is the ending one
bottomY= is the starting y position (the bottom)
topY = is the ending Y position

pretty basic... just checking to see if the mouse was clicked while it was in the canvas... otherwise don't draw

you should also have more colours

-----------------------------------
TheXploder
Wed Feb 04, 2004 10:39 pm


-----------------------------------
thanx, I'm gonna try that Delta
