#12001/10/7 13:21:50
在Authorware中使用SetIconTitle()函数,通过逻辑变量的改变来决定交互图标中的第一个子图标的标题分别为Star、Continue、Pause,在交互图标附加计算图标中的相关内容如下:
if (t=FALSE&capbar=TRUE) then SetIconTitle(IconFirstChild(IconID@"control"),"Star")
if (t=FALSE&capbar=FALSE) then SetIconTitle(IconFirstChild(IconID@"control"),"Continue")
if (t=TRUE&capbar=FALSE) then SetIconTitle(IconFirstChild(IconID@"control"),"Pause")
不打包程序能正常运行,但是打包后,第一个图标的标题只能Pause或Star,运行过程中不能改变。