ID:865878
 
Code:
winset(usr, "default.button2", "image-file=")


Problem description:
I'm making a button on the skin that you drag stuff on to, and then it changes the Command of the button as well as the background (so you can tell which one it is). I'm just not really sure how to do so...

What goes after "image-file=______"
The Skin Reference(Dream Maker -> Help -> Skin Reference) is quite useful.

winset(usr, "default.button2","image='Filename.png'")
winset(usr, "default.button2","command=new-command")
//You want to do it in a single winset() use ";"
winset(usr, "default.button2","image='Filename.png';command=new-command;")


I am not very sure about the '(single quotes) but I think you should use it if your Filname.png has a space in between.

This is something you might want to look at aswell.