Well, Were I got the Idea for this one was a funny place, I was using paint, thinking about how crappy it is. and how its the only thing people that dont like to spend allot of money on this kind of thing you can use! I thought about who even really needs to get if you could use it online! And then I got to work!
This is a tool that I made to go with flash calender. Its new so dont expect it to be all that great, however, you will find that EVEN THOUGH it dosent have text tool yet it is good for making semi-good pictures! I know kids that are so poor that there OS cant even run paint! but it can run SOME of flash! so that could be useful to people like this!
NOTES:
I will let you in on the scripts used for this if you PM me!
This only took 2 weeks because jox helped ( :
THERE WILL BE MORE!!! TRUST ME!!!
we used the alien music once again!
This will eventually be EXACTLY like paint.
Icon made by jox. (im not good at making them)
VERY LOW FILE SIZE!
for those of you who just want the painting script, I compiled a fairly decent smaller one. Its good because I made it so you can add more on to it:
// Begin script
var thickness = 1;
var color = 0x000000;
var mouse_down = false;
var draw_mode = true;
graphics.lineStyle (thickness, color);
function PencilCursor ()
{
if (draw_mode){
Mouse.hide()
element ("Cursor").visible = true;
element ("Cursor").startDrag (true);}
}
function RestoreCursor ()
{
element ("Cursor").stopDrag ();
element ("Cursor").visible = false;
Mouse.show()
}
if (mouse_down)
{
graphics.lineTo (mouseX, mouseY);
}
function OnClick ()
{
graphics.moveTo (mouseX, mouseY);
mouse_down = true;
}
function OnMouseUp ()
{
mouse_down = false;
}
function Erase ()
{
graphics.erase();
graphics.lineStyle (thickness, color);
}
function ChangeColor (c)
{
var color = c;
graphics.lineStyle (thickness, color);
element ("Palette").hide();
draw_mode = true;
}
function SetWidth (w)
{
var thickness = w;
graphics.lineStyle (thickness, color);
}
// End Script