344
Chương 8: Đồ họa, đa phương tiện, và in ấn
{
ChangeCharacter(command.Voice);
return;
}
// Gửi agent đến chuột.
if (command.Name == "MoveToMouse")
{
mSpeaker.MoveTo(Convert.ToInt16(Cursor.Position.X - 60),
Convert.ToInt16(Cursor.Position.Y - 60), null);
return;
}
// Thực hiện hành động mới.
mSpeaker.Stop(null);
mSpeaker.Play(command.Name);
}
}