1、在flash按钮上直接用 geturl(“lingo
pen "*.pdf"”)
2、在flash中传递参数给Director,然后在Director处理
flash中:geturl(“aaa”)
在Director的moviescript中
on geturl me,kk
case kk of
"aaa":
baOpenFile( the moviepath & "brochures\aaa.pdf", "maximised" )
“bbb”:
baOpenFile( the moviepath & "brochures\bbb.pdf", "maximised" )
end case
end geturl