Results 1 to 2 of 2

Thread: *RESOLVED*flash movie how do i make it run?

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Aug 2003
    Location
    everett washington
    Posts
    64

    *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

  2. #2
    Hyperactive Member VB4fun's Avatar
    Join Date
    May 2003
    Location
    too far from Fiji
    Posts
    342
    are you trying to run just one movie..? or a different movie for each color ?

    you will need to add the shockwave flash control to the page and then set the .Movie property to your movie..

    have you done a search on this forum...? there are a ton of ways to do this and lots of code examples....

    Hint:
    you may want to add your .swf's to a resource file, to make them easier to manage....if you are dealing with multiples...
    Talk does not cook rice.
    -Chinese Proverb

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width