Jump to content

Ady

Members
  • Posts

    18
  • Joined

  • Last visited

About Ady

  • Birthday 05/06/1991

Profile Information

  • Location
    Romania
  • WWW
    http://www.gamoholic.net
  • Interests
    Auto It, Advanced HTML, PHP a little, CSS, SQL, a little C++ Programmer
    Adobe Photoshop, Adobe Flash CS3 a little, Maxon Cinema 4D
    I`m still learning!:D:P

Recent Profile Visitors

162 profile views

Ady's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Excelent work! Well i suppose youre next project will bee :-? hmm modern warfare 3? Or maybeeee Need for Speed Most Wanted 2? Anyway, without words!
  2. Aaaaam Yashied? Could you fix the program for 1024 x 768? Or i`ll try to figure out how to do it... The program is awesome! Keep up the good work And about posting, i don`t know how many of you like math, no offence but i sure do!
  3. The AutoIt help file is really good muttley ! Try it!
  4. Thank you very much!!!!
  5. Hello all, I have a question. I made some sort of media player. It is very simple, but in all media players the play button changes into the pause button and pauses the muzic or media. I know how to change the text, but i dont know what script to write to pause the music. I tried a lot of if, do, while, select, assigments but nothing. The code form my media player is: CODE#include <Sound.au3> #include <GUIConstants.au3> GUICreate("Media Player",800,600,"","",$WS_MAXIMIZEBOX+$WS_MINIMIZEBOX) GUISetBkColor(0x00ffff) GUISetState() $stop = GUICtrlCreateButton("Stop",10,10,40,20) $play = GUICtrlCreateButton("Play",10,40,40,20) $open = GUICtrlCreateButton("Open",10,70,40,20) While 1 $message = GUIGetMsg() If $message = $GUI_EVENT_CLOSE Then ExitLoop Select Case $message = $open $music = FileOpenDialog("Open file",@DesktopDir,"Mp3 Files (*.mp3)") _SoundPlay($music) $pause = GUICtrlSetData($play,"Pause") Case $message = $stop _SoundStop($music) GUICtrlSetData($play,"Play") EndSelect WEnd Can you help me, please . What statement to write that the play button to play and pause the music file??
×
×
  • Create New...