Flasher Archive
[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]
Subject: | RE: FLASH: Arcade Flash4 Game |
From: | Miguel Castarde Neto |
Date: | Wed, 4 Aug 1999 00:53:24 +0100 |
* Not perfect, but one first step in games.
http://sites.uol.com.br/mcn78/arcade0.htm
Has bugs too. The Flash4 script + animation fail some times.
I was use scripts how that:
On (Key: <Right>)
Set Variable: "navex" = GetProperty ( "../nave", _x )
If (navex < 450)
Set Property ("../nave", X Position) = navex + 10
End If
End On
On (Key: <Left>)
Set Variable: "navex" = GetProperty ( "../nave", _x )
If (navex >45)
Set Property ("../nave", X Position) = navex - 10
End If
End On
On (Key: <Space>)
If (GetProperty ( "/tiro1", _y ) < 5)
Duplicate Movie Clip ("../tiro", "tiro1", 1)
Set Property ("../tiro1", X Position) = GetProperty ( "../nave",
_x )
Set Property ("../tiro1", Y Position) = GetProperty ( "../nave",
_y ) - 10
Begin Tell Target ("../soundtiro")
Go to and Play ("tiro1")
End Tell Target
Begin Tell Target ("/nave")
Go to and Stop (2)
End Tell Target
Else
Begin Tell Target ("../notiro")
Go to and Play ("notiro")
End Tell Target
End If
End On
On (Key: <Enter>)
Set Property ("", Alpha) = 0
Set Property ("../nave", Visibility) = true
Begin Tell Target ("../timer")
Play
End Tell Target
Begin Tell Target ("../")
Go to and Stop ("wave1")
End Tell Target
End On
------------------------------------------------------------------------
To UNSUBSCRIBE send: unsubscribe flasher in the body of an
email to list-managershocker [dot] com. Problems to: ownershocker [dot] com
N.B. Email address must be the same as the one you used to subscribe.
For info on digest mode send: info flasher to list-managershocker [dot] com
Replies
Re: FLASH: Arcade Flash4 Game, John Croteau
[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]