主题:  在director中怎样做不规则界面?

bjork_5d

职务:普通成员
等级:2
金币:1.0
发贴:238
注册:2003/10/24 16:18:10
#12004/3/1 10:51:31
在director中怎样做不规则界面?



D计划-混沌

职务:管理员
等级:6
金币:15.2
发贴:3528
注册:2007/4/9 9:48:37
#22004/3/1 13:27:21
在首页的多媒体的director可以找到



bjork_5d

职务:普通成员
等级:2
金币:1.0
发贴:238
注册:2003/10/24 16:18:10
#32004/3/1 13:33:02
在d中怎样实现放完flash自动进入下一帧?



大烧卖

职务:普通成员
等级:1
金币:0.0
发贴:73
注册:2000/12/27 9:23:29
#42004/3/4 12:26:38
试着在你的 flash 精灵上附加如下脚本:

property p_Sprite
property p_TotalFrame

on beginSprite me
p_Sprite = sprite(me.spriteNum)
p_TotalFrame = p_Sprite.member.frameCount
end

on exitFrame me
if p_Sprite.frame < p_TotalFrame then
go the frame
end if
end

on mouseUp me
go "Main"
end



oyp

职务:普通成员
等级:1
金币:0.0
发贴:79
注册:2001/8/14 18:57:49
#52004/3/7 12:44:15
哪要这麻烦
on enterframe me
if not sprite(1).playing then
go to the frame+1
end if
end