Page 1 of 2 12 LastLast
Results 1 to 15 of 29
  1. #1
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic

    Lightbulb MW3 Media Player [Simple]

    Well, I just made a media player for you guys.
    If any wonder why I did this, it's because I feel it would be nice to have a media player that register my Keys Pressed.
    So I don't have to go out of the game to change song, or start a new song.

    This Idea is from the Advanced Modern Warfare 3 Editor V4.1
    Credits go therefore to - @Anonymouss

    I have also included the Source Code in the Spoiler Under. (Language = C#)
     

    Code:
    private void button1_Click(object sender, EventArgs e)
            {
                try
                {
                    listBox1.Items.Clear();
                    OpenFileDialog a = new OpenFileDialog();
                    a.Multiselect = true;
                    a.ShowDialog(this);
                    foreach (string b in a.FileNames)
                    {
                         listBox1.Items.Add(b);
                    }
                    listBox1.SelectedIndex = 0;
                    Play();
                }
                catch { }
            }
    
    
            void Play()
            {
                axWindowsMediaPlayer1.URL = listBox1.SelectedItem.ToString();
                axWindowsMediaPlayer1.Ctlcontrols.play();
            }
    
            private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
            {
                Play();
            }
    
    
            bool visu = true;
            [DllImport("user32.dll")]
            public static extern Int16 GetAsyncKeyState(Keys vKey);
            private void timer1_Tick(object sender, EventArgs e)
            {
                try
                {
                    if (Convert.ToBoolean(GetAsyncKeyState(Keys.F1))) { Play(); }
                    if (Convert.ToBoolean(GetAsyncKeyState(Keys.F2))) {  axWindowsMediaPlayer1.Ctlcontrols.stop(); }
                    if (Convert.ToBoolean(GetAsyncKeyState(Keys.F3))) { listBox1.SelectedIndex++; Play(); }
                    if (Convert.ToBoolean(GetAsyncKeyState(Keys.F4))) { listBox1.SelectedIndex--; Play(); }
                    if (Convert.ToBoolean(GetAsyncKeyState(Keys.Insert))){if (visu) { visu = false; this.Hide(); } else { visu = true; this.Show(); }}
                    if (Convert.ToBoolean(GetAsyncKeyState(Keys.End))) { Application.Exit(); }
                }
                catch { }
            }
    
            private void timer2_Tick(object sender, EventArgs e)
            {
                if (axWindowsMediaPlayer1.playState == WMPPlayState.wmppsStopped) { listBox1.SelectedIndex++; Play(); }
            }


    Note: the DLLs that are included are needed. Those DLLs are the Windows Media Player DLLs. (Required to run the Program)
    And yes... The Stop is bugged :S

    Our lovely image


    And the beloved Virus scans that most don't bother to look on
    Our First Scan 0/43
    Our Second Scan 0/20
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Jorndel; 03-08-2012 at 06:36 PM.

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  2. The Following 28 Users Say Thank You to Jorndel For This Useful Post:

    Alphadud (08-02-2012),anime4049 (08-17-2012),ARKADIA (09-16-2012),Baum123 (11-09-2012),cameron112233 (10-30-2012),CreeperNL (08-29-2015),CYBER-SNIPA (04-29-2012),dikedike220 (01-05-2019),Gavinator (07-30-2012),ghostkarthi (07-31-2012),gnubbelmupf (08-26-2012),H3artless (10-23-2012),iamoptimus900 (10-26-2012),Ignacio1234 (12-11-2012),ipsot (07-30-2012),Johnny1s2 (10-14-2012),KlaKsyVax (08-17-2012),LASTLOSTLIFE (08-12-2012),LeonardoKinG (04-20-2018),Letterbomb (10-26-2012),LOLxFUN (08-16-2012),nzrX (08-13-2012),palkiax3 (07-30-2012),potatoes21 (10-26-2012),rasmus@ (10-25-2012),SANJ (10-26-2012),Sebllar (07-28-2012),shnazzle (10-23-2012)

  3. #2
    t1r4n0s's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    Is this reason for ban?

  4. #3
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by t1r4n0s View Post
    Is this reason for ban?
    ...
    /dumb

    Really, this is a media player.
    How can they ban you for using a media player?

    And why would a media player need to use MW3 to play your music.


    So NO!

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  5. The Following User Says Thank You to Jorndel For This Useful Post:

    Silent (06-27-2015)

  6. #4
    t1r4n0s's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    Why did u make a double post to answer me?

  7. #5
    EpicCockMuncherNo1's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    Alone in the Dark
    Posts
    1,546
    Reputation
    152
    Thanks
    21,771
    1. GJ
    2. Where is the Replay ? (i mean i love to listen all songs again & agian)
    3. This is Universal Tool Am I right?

  8. #6
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by -TeamDarkness- View Post
    1. GJ
    2. Where is the Replay ? (i mean i love to listen all songs again & agian)
    3. This is Universal Tool Am I right?
    1: Thanks
    2: Press F1 (Play will also Mean Replay :S)
    3: Indeed it is


    Quote Originally Posted by t1r4n0s View Post
    Why did u make a double post to answer me?
    Didn't mean to do that :S
    Was just that MPGH is a bit unstable now, so it took some time. (So I pressed post 2 times...)

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  9. #7
    EpicCockMuncherNo1's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    Alone in the Dark
    Posts
    1,546
    Reputation
    152
    Thanks
    21,771
    Tested & working fine Bro. But for me nothing to use as mw3 is simple tab out like the Most Games ! Would make more sense for MW2.

    Anyway THX. GJ as Always
    Last edited by EpicCockMuncherNo1; 03-08-2012 at 06:47 PM.

  10. #8
    Nostradamus's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    44
    Reputation
    10
    Thanks
    3
    My Mood
    Busy
    This is a cute thank you

  11. #9
    Goonman1's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    152
    Reputation
    9
    Thanks
    280
    My Mood
    Amused
    So does it show on the mw3 screen?

  12. #10
    N1pp@'s Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    148
    Reputation
    34
    Thanks
    1,013
    Good job Jorndel, looks nice

    Will give it a try when I get back home.

    - NiPP@

  13. #11
    LokiStormBringer's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Los Angeles
    Posts
    336
    Reputation
    30
    Thanks
    43
    I do look at virus scans

  14. #12
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by gruber View Post
    I do look at virus scans
    Well, you one of not so many.
    (Because if they get approved, means they are mostly like clean and safe as they can be.)

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  15. #13
    willrulz188's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Ohio?
    Posts
    1,786
    Reputation
    35
    Thanks
    231
    My Mood
    Amazed
    I just don't see how this is relevant to mw3
    Question ALL statements! ?
    You're in denial that you're in denial. ?
    [img]https://i360.photobucke*****m/albums/oo45/blood188/Untitled-3.jpg?t=1284590977[/img]

  16. #14
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by willrulz188 View Post
    I just don't see how this is relevant to mw3
    Who do...
    I was just bored, and since the one that was made before didn't work.
    I just made a working one for they who wanted this.


    But hey, who cares.
    There is no need for anything I make anymore :S

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  17. #15
    willrulz188's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Ohio?
    Posts
    1,786
    Reputation
    35
    Thanks
    231
    My Mood
    Amazed
    Quote Originally Posted by Jorndel View Post
    Who do...
    I was just bored, and since the one that was made before didn't work.
    I just made a working one for they who wanted this.


    But hey, who cares.
    There is no need for anything I make anymore :S
    I'm going to release one soon too :s so don't think your the only one whos going to release one

    just have to get the hotkeys going then done
    Question ALL statements! ?
    You're in denial that you're in denial. ?
    [img]https://i360.photobucke*****m/albums/oo45/blood188/Untitled-3.jpg?t=1284590977[/img]

Page 1 of 2 12 LastLast

Similar Threads

  1. iTunes or Windows Media Player?
    By Haites in forum General
    Replies: 32
    Last Post: 09-30-2007, 03:17 PM
  2. Windows Media Player 11
    By mostwanted in forum Hardware & Software Support
    Replies: 7
    Last Post: 07-31-2006, 03:42 PM
  3. Windows Media Player 10
    By 1h1a1i in forum Hardware & Software Support
    Replies: 32
    Last Post: 07-14-2006, 04:50 PM
  4. Windows Media Player 11
    By stingray001 in forum General
    Replies: 9
    Last Post: 05-30-2006, 01:30 PM