登录器代码怎么写( 三 )


制作一个按钮
按钮代码:
on (release) {
if(shuru==i){
play();
}
到这里就可以实现密码登陆了 , 为防止用右键菜单中的播放跳过第一帧直接播放 , 可以在第二帧上写:
if(shuru==i){
play();
}else{
gotoAndstop(1);
}
7.VB登录窗口制作代码和流程'主窗口为form2, form1为登陆窗口 , 上面有2个text、1个command控件
Private Sub Command1_Click()
Static n
If Text1 = "119" Then
If Text2 = "911" Then
Form2.Show
Unload Me
Else
MsgBox "密码错误!"
Text2 = ""
Text2.SetFocus
End If
Else
MsgBox "用户名错误!"
Text1 = ""
Text1.SetFocus
End If
n = n + 1
If n = 3 Then Unload Me '错误次数3次
End Sub
【登录器代码怎么写】

登录器代码怎么写

文章插图