ID:268834
 
MouseDown(src,"28 to 32","28 to 32")
//Insert stuff here


It'll find it as a bad argument defintion, how would I go about making it so if they press anywhere from 28-32(both pixel_x and pixel_y) it executes something?

Thank you for reading.
MouseDown(location,icon_x,icon_y) 
if(icon_x >= 28 && icon_y >= 28)
// do something nifty
In response to Shadowdarke
Thanks. :o