分享
 
 
 

Microsoft Agent Tutorial Chapter 1

王朝vb·作者佚名  2006-01-08
窄屏简体版  字體: |||超大  

Part 1 - Loading the Microsoft Agent Control

The easiest way to load the agent control is to select it from the controls menu in VB and just drop it on your form.

Alternatively you can add a reference to the Microsoft Agent Control 2.0 from the References menu item in Visual Basic and create an object for the control at runtime like this:

Private WithEvents MSAgent As Agent

Set MSAgent = New Agent

For the purposes of this text we will assume the name of the Agent Control is called "MSAgent".

Part 2 - Loading a Character

A Character file defines what your agent will look like, and all the character animations are stored there. Before you can begin programming for MS Agent you need to specify what character file to open.

‘Create a Character Object

Private Merlin As IAgentCtlCharacterEx

‘Load the Default Character by not supplying

‘an ACS file

MSAgent.Characters.Load "Merlin", _

“c:\windows\msagent\chars\merlin.acs”

‘Set the Merlin object to our new character.

Set Merlin = MSAgent.Characters("Merlin")

Microsoft Agent 2.0 has the ability to allow the user to enter in a default character to use with programs. If you want to load the default character the code looks just about the same.

Instead of doing this:

MSAgent.Characters.Load "Merlin", “c:\windows\msagent\chars\merlin.acs”

We just need to leave out the path and the default will be used, like this:

MSAgent.Characters.Load "DefaultCharacter"

To show your character on the screen do the following:

Merlin.Show

You can also hide your character by doing this:

Merlin.Hide

Part 3 - Speech and Animations

Now that you have the character appearing on the screen you just need to get it to do something. Enter the following command after the Merlin.Show command:

Merlin.Speak "Hello World!"

As you can see it's easy to get the agent to say something, all you need to do is give it a string with the text to speak and it will talk. Now try this one:

Merlin.Speak "HELLO WORLD!"

You will notice that the Agent will not speak the words, but will sound out each letter. Remember this when you send text to the agents as you may want to convert it to lowercase before you call the Speak command.

The problem with the Speak command is that the agent does not use things like inflections or dramatic pauses; things we use in everyday speech, so typically when getting the agent to speak long sentences it will sound rather monotone. Lucky this is where speech output tags come in handy.

Part 4 - Speech Output Tags

Speech output tags can be used to modify the way in which words are spoken. All tags start and end with a backslash, and modify the word following the output tag. Whitespace is important so be sure not to leave empty space after your output tag or else your tag will not work properly.

One good example of this is the Emphasis ("Emp") tag. This tag will force the agent to emphasize a word. First lets hear a phrase without the emphasis placed on any word:

Merlin.Speak "I will emphasize this word."

Now try it with the emphasis tag on the word "this".

Merlin.Speak "I will emphasize \emp\this word."

Some tags like the Character ("Chr") tag have a parameter you can pass. This parameter must be surrounded by quotes, but since this is a string and the whole text is already in quotes you have to use double-quotes so VB knows that the quotes are part of the string. So to use the "Whisper" parameter for the "Chr" tag we would do this:

Merlin.Speak "\Chr=""Whisper""\This is an example of whispering."

Another example of a tag that has parameters is the Context ("Ctx") tag. This tag can be used for Email addresses and phone numbers. To see why you may want to use the tag try this:

Merlin.Speak "me@someplace.com"

Notice Merlin said "me at someplace com" instead of "me at someplace dot com". That is because the period is never normally spoken by the agent. To get the agent to speak the period for an Email address you need to use the "Ctx" tag. Try this:

Merlin.Speak "\Ctx=""Address"\webmaster@abstractvb.com."

Part 5 - Bookmarks

A bookmark is really just another speech output tag, ("Mrk") except for one difference, and that is that there is a special event tied to this tag. The bookmark tag is used to mark specific points in the text supplied to the agents Speak command. Once one of these tags is hit it will fire the BookMark event of the Agent control and pass it the ID you entered in the "Mrk" tag.

To demonstrate how to use bookmarks here is a small application.

You will need to Create a form and place this code in it. You will also need to put a label on the form and call it "Label1".

Option Explicit

Private WithEvents MSAgent As Agent

Private Peedy As IAgentCtlCharacterEx

Private Merlin As IAgentCtlCharacterEx

Private Sub Form_Load()

'Create an Instance of the Agent Control

Set MSAgent = New Agent

'Load the Merlin Character

MSAgent.Characters.Load "Merlin",

"c:\windows\msagent\chars\Merlin.acs"

Set Merlin = MSAgent.Characters("Merlin")

'Move the Character to the left

Merlin.Left = 500

'Show Merlin without playing the animation

Merlin.Show True

'Use bookmarks in the text to identify where merlin is

Merlin.Speak "\Mrk=1\I am now reading line number one. " & _

"\Mrk=2\Now I am reading line two. " & _

"\Mrk=3\And finally, I am reading line three. \Mrk=4\ "

End Sub

Private Sub MSAgent_Bookmark(ByVal BookmarkID As Long)

'When Merlin hits the point in the text above where

'there is a bookmark tag this event is fired and the

'ID in the Mrk tag is passed into here as the

'BookMark ID

Select Case BookmarkID

Case 1

Form1.Label1.Caption = "Merlin is currently Reading Line 1"

Case 2

Form1.Label1.Caption = "Merlin is currently Reading Line 2"

Case 3

Form1.Label1.Caption = "Merlin is currently Reading Line 3"

Case 4

Form1.Label1.Caption = "Merlin has finished Reading all lines"

End Select

End Sub

Part 6 - Animations

(Microsoft provides the complete animation list for all its characters on their website.)

Making the agent perform a specific animation is just one line of code. Try running this:

Merlin.Play "Read"

Notice the agent will read and then stop and go back to the default animation behavior. This is not true for all animations there are some that are called Looping Animations. These animations behave like their name suggests, they loop repeatedly. Try this:

Merlin.Play "Reading"

You will have to stop the above program because the Agent will continuing looping forever. One way to stop this is by using the "Stop" command.

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有