How can I find out the unique identifiers of Behaviours and globally available actions?

You'll be getting an overview over the information you are looking for when executing the following script in the AppleScript Editor: tell application "Remote Buddy" behaviourlist set listOfBehaviourIdentifiers to result set retList to "" repeat with behaviourIdentifier in listOfBehaviourIdentifiers behaviourcore accessor "plainName" identifier behaviourIdentifier set plainName to result try behaviourlist allGlobalActionsForIdentifier behaviourIdentifier set listOfActionIdentifiers to result set retList to retList & plainName & " (" & behaviourIdentifier & ")" & " " repeat with actionIdentifier in listOfActionIdentifiers set retList to retList & actionIdentifier & " " end repeat set retList to retList & " " end try end repeat (retList) end tell more.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions