主题:  新手求教!?

guanjun

职务:普通成员
等级:1
金币:0.0
发贴:57
#12001/2/18 14:04:39
1、DIRECTOR7中分别在不同的两个通道中制作了两段动画A和B(相同帧数)。我想在A动画播放完成
后最后一帧仍呈静态停留在场景上,然后再播放B动画,待B动画播放完成后,再一起消失,该如何实现?
谢谢!

2、请问打开URL与EMAIL的LINGO语言是什么?
谢谢!

3、打包生成工程文件时,如何设定外部文件的路径?比如调用C盘中mydocuments下的123.avi
但刻录成光盘后,却要调用D盘上media目录下的123.avi,该如何设定?
谢谢!

4、请问如何在800*600分辨率机器上运行640*480大小文件时,使多余的部份被屏蔽掉?
(作用类似于AUTHORWARE中的COVER外部函数)
谢谢!



我就是我

职务:版主
等级:6
金币:14.0
发贴:5466
#22001/2/18 17:32:55
2.可以用goToNetPage来实现
3.这是绝对路径的,首先你要写一段lingo来判断盘符用
on startMovie
global myCD
put CheckDrive("weirdfil.txt") into myCD
end

on CheckDrive weirdfile
repeat with i = 67 to 90
set drive = numTochar( i )
set thisPath = string(drive & ":\"& weirdfile)
set myFile = new(xtra "FileIo") -- Create an instance of FileIO Xtra
openFile(myFile, thisPath, 1) -- attempt to open the file
if status(myfile) = 0 then -- status returns 0 for success
set myFile = 0 -- Dispose of the instance
return drive&":"
exit
end if
end repeat
set myFile = 0 -- Dispose of the instance
alert "Please check that the file named '" & weirdfile & "' is on your CD drive."
end
然后在你所要找得盘符下放入“weirdfile.txt"文件就可以 判断盘符最后在你调用的时候加入
global myCD
put CheckDrive("weirdfil.txt")
就可以了




dexn

职务:普通成员
等级:1
金币:1.0
发贴:157
#32001/2/19 15:17:38
1。知道你用的是什么格式的动画,一般来说,可以放在相同的帧里,开始时可以用PAUSE属性,不让他们播放,然后用LINGO控制播放,检测先放的放完,然后放第二个。
4。需要改分辨率,改分辨率的方法,以前的帖子有过,是借助XTRAS的。



dexn

职务:普通成员
等级:1
金币:1.0
发贴:157
#42001/2/21 9:32:55
可以看看这篇文章
www.director-online.com/accessArticle.cfm?id=951


注: 现在可以了。

Flyingbird

编辑历史:[这消息被flyingbird编辑过(编辑时间2001-02-22 09:19:07)]


dexn

职务:普通成员
等级:1
金币:1.0
发贴:157
#52001/2/22 9:08:02
上边的连接好象连不到那篇文章,用以下程序可实现4问:
on prepareMovie
(the stage).rect = (the desktopRectList)[1]
(the stage).drawRect = (the desktopRectList)[1]
end