In Dashcode you can set up a handler for a behavior in the inspector.
Here's a sample handler for a button click on a button I've named "mybutton1" in the Inspector:
function myGetButtonName(event)
{
var e = event.target;
alert(e.id);
}
The problem is, when the button is clicked and the alert comes up it says the ID of the button is "DC_img1" rather than "myButton1" (which is what shows in the inspector in the id field).
I guess I'm not accessing the correct id.
Does anyone know how to get the id that shows in the attributes tab of the inspector?
Thanks!