rav ware mui make是一个很接近现代程序设计习惯的可视化xtra,它可以轻松的为drector设计出对话框,在对话框里包含了push button(命令按钮),radio button(选项按钮),toggle box(复选框),lable(标签框),edit text(可编辑文本),popup list(下拉列表),slider(滑动条)。可以在设计阶段随意的重设这些部件的大小和它们在对话框中的位置。在对话框中选中其中的一个部件,你就可以利用这个xtra产生相应的lingo代码,你可以把这些代码拷贝到你的director的电影脚本中去为你所用。
mui maker是运行在pc上的一个软件,但是它产生的lingo代码可以在mac和pc上同时使用,在director运行的时候平台都可以本地化处理lingo。由于在这个软件上对话框的设计和代码的生成是分离的步骤,你的设计的界面可以先存贮,然后在需要的时候再融入到director电影的程序里,这给可以带来更大的方便,怎么样啊?有大体的认识了吧,有吸引力吗?有的话就让我们开始吧!
rav ware mui maker应用
首先让我们认识它的面貌,用过visual系列开发程序的朋友对这个布局已经非常熟悉了。就不需要了解了!
1、 工具条:工具条里所包含的功能基本上是mui maker的功能,
2、 最左边的按钮是产生lingo的按钮,
3、 其余的为设计排版用的按钮。许多编辑软件里都有类似的按钮。在这里就不叙述了。
4、 设计区域:在这里可以展限你的设计才华,
5、 这里的设计就是你将来对话框的样子。
6、 部件箱:里面有对话框常用的八种部件。
7、 属性区域:里面有三个标
8、 签选项,可以设置对话框和部件的属性, 在lingo标签里可以看到生成的代码。
下面重点讲述一下rav ware mui maker在director电影中的应用。因为在rav ware mui maker中产生的代码只可以在director电影中产生相应的实例,我们与对话框实例的交互还要编写一些必须的lingo代码。同时这部分也是比较不好理解的。
首先要介绍的就是setup hander:
rav ware mui maker里创建一个你设计好的对话框实例后,你要创建一个全局变量gyourdialogname来存储这里实例,setup hander的调用必须在其他的句柄之前调用。注意:这个句柄并不能显示你所创建的dialog实例。如果你一开始要使你设计的dialog是有效的,那么你就要在startmovie里象下面那样调用setup句柄
on startmovie
setup yourdialogname
end
如果你的setup句柄已经运行,要显示你设计的对话框的时候,你可以在director的舞台上设置一个按钮来引发对话框的显示,在按钮上加入以下的lingo:
on mouseup
run yourdialogname
end
如果要关闭这个对话框,直接按对话框上的关闭就可以了,千万不要在另一个按钮上写上stop句柄。
接下来就是怎么和你所设计的对话框中的部件交互的问题了,也是关键部分!!
回调句柄能够从rav ware mui make创建的对话框里收集各个部件的信息,如果用户用鼠标划过你所设计的部件的话,回调句柄将收到一个输入焦点列表,如果用户输入在一个文本域里输入文本的话,回调句柄将返回一个改变信息列表。倘若你要你要捕获用户的输入和对对话框有效的点击行为的话,你必须把下面的回调句柄加入到一个启动按钮,就象下面一样:
on yourdialognamecallback event, eventdata, itemproplist
-- put event & " : " & eventdata & " : " & itemproplist
当用户和对话框交互的时候,在mesagge里运行注释的第一行,我们会看见返回各种各样的rav ware mui make的信息,就象下面一样:
-- "windowopening : : "
-- "itemclicked : 2 : [#value: 0, #type: #pushbutton, #attributes: [], #title: "close", #tip: "tip",
#loch: 15, #locv: 24, #width: 157, #height: 52, #enabled: 1]"
-- "itemchanged : 3 : [#value: 1, #type: #radiobutton, #attributes: [], #title: "yes", #tip: "tip",
#loch: 219, #locv: 31, #width: 215, #height: 35, #enabled: 1]"
event参数包含的是关于用户引发#itemclicked和#itemchanged的各种类型动作的符号,eventdate包含的是产生时间的项目数,itemproplist是一个lingo属性列表,包含时间产生时刻所对应项目的属性,可以启动回调lingo的代码骨干并捕获所有的事件,但是事件的结果并不能做任何的事:
on testdialogcallback event, eventdata, itemproplist
-- put event & " : " & eventdata & " : " & itemproplist
if symbolp(event) then
case event of
#itemchanged:
#itemclicked:
#windowopening:
#windowclosed:
#windowzoomed:
#windowresized:
#itementeringfocus:
#itemlosingfocus:
otherwise:
end case
end if
end testdialogcallback
你加lingo代码到启动回调句柄去引发用户基于对话框所做的行为,你可以用从eventdate里的部件代号或itemprolist里的部件属性#title来确定哪个部件产生的这个事件。部件的代号很容易的应用,但它们非常象director里的角色代码,容易在应用的时候产生混乱。如果你改变对话框的设计风格,并重新产生它,这个不部件的代码就会根据新的界面的部件的位置而改变它的代码,就像你把角色从一个通道搬到另一个通道一样发生的变化那样。如果你有不少同标题的部件的话,部件的#title属性和#type属性的组合使用,可以使你在代码里有更多的可靠的标识符来区别不同的部件。下面的代码是检测用户点击关闭键并运行句柄关闭对话框。
on testdialogcallback event, eventdata, itemproplist
put event & " : " & eventdata & " : " & itemproplist
if symbolp(event) then
case event of
#itemchanged:
#itemclicked:
if the title of itemproplist = "close" then
stoptestdialog
end if
#windowopening:
#windowclosed:
#windowzoomed:
#windowresized:
#itementeringfocus:
#itemlosingfocus:
otherwise:
end case
end if
end testdialogcallback
多项目的情况:
更多的情况下你希望检测一个事件的多个项目,你可以用嵌套case语句的方法检测哪个项目产生了这个事件。先面的代码就是检测用户是否点击了"close"、"save"、"print"按钮,并且在点击不同的键的基础上采用不同的行为。
on testdialogcallback event, eventdata, itemproplist
-- put event & " : " & eventdata & " : " & itemproplist
if symbolp(event) then
case event of
#itemchanged:
#itemclicked:
case (the title of itemproplist) of
"close": stoptestdialog
"save": savefilehandler
"print": printfilehandler
end case
#windowopening:
#windowclosed:
#windowzoomed:
#windowresized:
#itementeringfocus:
#itemlosingfocus:
otherwise:
end case
end if
end testdialogcallback
存贮一个值:
如果用户通过在对话框中点击选项按钮或者从下拉菜单中选择选项来作出选择行为的时候,你可能希望将这一选择存储下来,那么你必须存储一些性的数据为全局变量,以使在对话框关闭后,这些数据还能够使用,你可以通过检测这些部件的#value属性,来判断用户做出了怎样的选择。举个例子来说,当用户通过下拉菜单做出了选择,他就会产生一个#itemchanged事件,并且下拉菜单的#value属性值被存贮到菜单选项对应的文本里,下面的代码就是存贮用户下拉菜单选项到全局变量。
on testdialogcallback event, eventdata, itemproplist
-- put event & " : " & eventdata & " : " & itemproplist
global popupchoice
if symbolp(event) then
case event of
#itemchanged:
if the type of itemproplist = #popuplist then
set popupchoice = the value of itemproplist
end if
#itemclicked:
#windowopening:
#windowclosed:
#windowzoomed:
#windowresized:
#itementeringfocus:
#itemlosingfocus:
otherwise:
end case
end if
end testdialogcallback
可控的改变项目的属性
通过应用rav ware mui maker xtra's的temupdate方法,你可以可控的改变菜单项目的属性,作为用户行为的结果,temupdate的 语法如下:
itemupdate ( instanceglobal, itemnumber, newpropertylist )
你的对话框的全局变量名可以被叫做yourdialogname,下面的代码改写了第二项的文本,就是一个文本标签去读"no bad dogs"。
itemupdate ( gtestdialog, 2, [#value: "no bad dogs", #type: #label,
#attributes: [#justification: #left, #textstyle: [#plain]],
#title: "title", #tip: "tip", #loch: 300, #locv: 77, #width: 127,
#height: 10, #enabled: 1] )
下面的句柄是在"go"和"stop"文本之间切换当他们每一次被点击的时候。
新闻热点
疑难解答