Computer Science Canada

My Flash Paint Program.

Author:  TheXploder [ Thu Jan 22, 2004 11:49 am ]
Post subject:  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

Author:  Homer_simpson [ Thu Jan 22, 2004 12:08 pm ]
Post subject: 

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...

Author:  apomb [ Thu Jan 22, 2004 5:24 pm ]
Post subject:  kool program

Nicely layed out ... but when you paint over the buttons, you cant see what color you are picking.

Author:  shorthair [ Thu Jan 22, 2004 5:28 pm ]
Post subject: 

ummmmm its " Special" ,

Author:  Delta [ Wed Feb 04, 2004 5:44 pm ]
Post subject: 

I like the fact that its a drawing program... except that you can draw on everything .... fix that...

code:

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

Author:  TheXploder [ Wed Feb 04, 2004 10:39 pm ]
Post subject: 

thanx, I'm gonna try that Delta


: