Devolution Custom Script Buttons
Posted: Wed Sep 14, 2016 11:03 pm
I'm curious what you might be using for your custom script buttons for in Devolution. I'll share what I'm doing with 3 of the 4 buttons in my setup.
I use these buttons to copy object references to the clipboard. This is great especially getting references for front and back scripts (among other things). Here's what I have.
Custom 1 Name: ObjID->Clpbd
Script:
Custom 2 Name: ShtRef->Clpbd
Script:
Custom 3 Name: LngRef->Clpbd
Script:
I'll share my 4th script button and another modification I've made to the Tool pending responses to this post.
Kudos to Richard Gaskin for such a great utility that's totally changed the way I work in the IDE.
Bob Hall
I use these buttons to copy object references to the clipboard. This is great especially getting references for front and back scripts (among other things). Here's what I have.
Custom 1 Name: ObjID->Clpbd
Script:
Code: Select all
on mouseUp
if the selectedObject is "" then
answer error "Nothing Selected..."
else
set the clipboardData to the id of the selectedObject
end if
end mouseUp
Script:
Code: Select all
on mouseUp
if the selectedObject is "" then
answer error "Nothing Selected..."
else
set the clipboardData to the name of the selectedObject
end if
end mouseUp
Script:
Code: Select all
on mouseUp
if the selectedObject is "" then
answer error "Nothing Selected..."
else
set the clipboardData to the long name of the selectedObject
end if
end mouseUp
Kudos to Richard Gaskin for such a great utility that's totally changed the way I work in the IDE.
Bob Hall