does anyone know the game about saddam being shot in miniclip in flash? I have been working on a game but I dont know How to make saddam apper on the screen...example...on a desk he will rise up then will go down...then he will rise again beside a computer then will go down again until he disappers...I have randomized the image but it's on the left 2 right basis only not left, right, up and down basis...can anyone suggest how I will solve my problem plz????

Show us a code snippet you have of the code that makes him move around and we can go from there.

This Is the code for the image.....this is only the left to right basis in random

Private Sub YanigSaBanig_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseMove
        Me.Button1.Location = e.Location
        On Error GoTo fix

        If Start = True Then
            If e.X <= (YanigSaBanig.ActiveForm.Width / 2) Then
                PictureBox2.Visible = False
                PictureBox1.Visible = True
                PictureBox3.BackColor = Color.White
            Else
                PictureBox1.Visible = False
                PictureBox2.Visible = True
            End If
        End If

fix:    Exit Sub
    End Sub
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.