主题:  紧急抢救啊~~特快加急啊~~~

htkfifa

职务:普通成员
等级:1
金币:0.0
发贴:127
#12004/4/15 17:12:57
我做了一套多媒体~ 要求是在也面上随便点就到下一页还要有返回功能~~
我设置了左键点击到下一个marker 右键点击返回上一个marker
我做了多个movie 现在不知道怎么返回上一个movie 我是在每个movie上加了个遮罩层 在层上写的
请帮忙啊~
我写的如下请兄弟们帮忙写好~
on mouseUp me
go to next
end
on rightmouseup me
go to marker(-1)
end



5D荣誉斑竹

职务:普通成员
等级:4
金币:13.0
发贴:1504
#22004/4/15 19:20:24
on exitFrame
if the mouseDown then go the frame+1
end


閑闪互动多媒体

我是小马

职务:普通成员
等级:3
金币:17.0
发贴:794
#32004/4/15 21:07:26
设置一个list,存储movie名称
on mouseup me
if 当前帧(or marker)是本影片的最后一帧(or marker) then
go to movielist[i+1]
else if
go to next
end if
end mouseup

on rightmouseup me

if 当前帧(or marker)是本影片的第一帧(or marker) then
go to movielist[i+1]
else if
go to marker(-1)
end if

end


思路大概是这样,您自己完善一下代码



htkfifa

职务:普通成员
等级:1
金币:0.0
发贴:127
#42004/4/16 13:12:37
谢谢2位~但是~第一个说法根本不能解决我的问题~~
下面哪个我试了~ok 不过第二部分应该是 [i-1]