|
-
Aug 6th, 2003, 03:01 PM
#1
Thread Starter
Lively Member
*RESOLVED*flash movie how do i make it run?
this is all i Have so far, I am wondering how would I make it run when any color is clicked. I am just experimenting and trying to figure out how to code it to run when a color is clicked? Any help is appreciated.
Private Sub mnuOpen_click()
Me.MyDialog.ShowOpen
End Sub
Private Sub mnuSaveAs_Click()
Me.MyDialog.ShowSave
End Sub
Private Sub mnucolors_click(index As Integer)
Select Case index
Case 1
Me.BackColor = RGB(67, 183, 239)
Case 2
Me.BackColor = RGB(255, 170, 255)
Case 3
Me.BackColor = RGB(255, 255, 128)
Case 4
Me.BackColor = RGB(255, 255, 255)
End Select
End Sub
Private Sub Movie1_GotFocus()
End If
End Sub
Last edited by tarakwar; Aug 6th, 2003 at 11:38 PM.
Tarakwar
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|