This is a google question, admittedly. But it seems that all the documents are deleted, and I can not find them anywhere. So I hope someone can show me some kind of VBScript code to list the objects or have a stronger google-fu.
Agent merlin is an abandoned Windows component similar to Alice , which aims to teach programming, letting children tell stories. It was introduced to me at https://stackoverflow.com/a/26250/ ... Bob Mc (and, frankly, deserves more attention). In any case, here is an example, assuming you are on windows and it is installed on the C drive (I found that merlin is on almost all computers):
agentName = "Merlin" agentPath = "c:\windows\msagent\chars\" & agentName & ".acs" Set agent = CreateObject("Agent.Control.2") agent.Connected = TRUE agent.Characters.Load agentName, agentPath Set character = agent.Characters.Character(agentName) character.Show character.MoveTo 200, 400 character.Play "Surprised" Wscript.Sleep 10000
Now what I'm looking for is other top-level actions that Merlin can take. I know:
- Show
- MoveTo
- Hide
- Speak
- Gestureat
- Play
Playback takes the name of the animation. I'm looking for everyone too. I know:
- 'character.Play "Read"
- 'character.Play "Write"
- '. Play "WriteContinued"
- 'character. Dress "Congratulate"
- 'character.Play "Greet"
- '. Play "Deviation"
- '. Play "Explain"
- 'character.Play "GestureLeft"
- 'character.Play "GestureRight"
- 'character. Player "Satisfied"
- 'character.Play "Surprised"
- 'character.Play "GetAttention"
Can you help me find something?
source share