monoceres Posted April 6, 2008 Share Posted April 6, 2008 (edited) Nothing fancy really, just answer as a question and hope for the best!Screenshot:Download link: Jeopardy_.zipOh and btw, if anyone makes categories please post them here and I will include them Edit: Quick bugfix Edited April 6, 2008 by monoceres Broken link? PM me and I'll send you the file! Link to comment Share on other sites More sharing options...
JustinReno Posted April 6, 2008 Share Posted April 6, 2008 It would have been cool if it was about AutoIt. Cool game. Link to comment Share on other sites More sharing options...
monoceres Posted April 6, 2008 Author Share Posted April 6, 2008 t would have been cool if it was about AutoIt. Well one category is Broken link? PM me and I'll send you the file! Link to comment Share on other sites More sharing options...
JustinReno Posted April 6, 2008 Share Posted April 6, 2008 Link to comment Share on other sites More sharing options...
JustinReno Posted April 6, 2008 Share Posted April 6, 2008 Here is a list of Jeopardy sounds:http://www.raritanval.edu/departments/busa...y%20Sounds.html Link to comment Share on other sites More sharing options...
McGod Posted April 6, 2008 Share Posted April 6, 2008 You could take this to the next level and add multiplayer support! [indent][center][u]Formerly Chip[/u][/center]~UDFs~[/indent][u]IRC.au3 - Allows you to connect to IRC ServersINetCon.au3 - Connects/Disconnects/Check Status of InternetHardware Key - Creates a unique hardware hashScriptComm - Allows you to communicate between scripts using WM_COPYDATA[/u][indent]~Programs~[/indent][indent]SimonAu3ForumsIRC Bot~Web Site~Web Autoit Example[/indent][indent][b][/b][/indent][u][/u] Link to comment Share on other sites More sharing options...
monoceres Posted April 6, 2008 Author Share Posted April 6, 2008 Here is a list of Jeopardy sounds:http://www.raritanval.edu/departments/busa...y%20Sounds.htmlGreat! I will include some of them next tmie I update! You could take this to the next level and add multiplayer support!Yeah that would be cool!I add it to my "things to do when super bored list" Broken link? PM me and I'll send you the file! Link to comment Share on other sites More sharing options...
gseller Posted April 7, 2008 Share Posted April 7, 2008 Here is what I added for this to work in 3.2.11.5 beta... Global Const $SS_CENTER = 0x01 Global Const $WS_MINIMIZEBOX = 0x00020000 Global Const $WS_CAPTION = 0x00C00000 Global Const $WS_POPUP = 0x80000000 Global Const $WS_GROUP = 0x00020000 Global Const $WS_BORDER = 0x00800000 Global Const $WS_CLIPSIBLINGS = 0x04000000 Global Const $WS_EX_TOOLWINDOW = 0x00000080 Global Const $ES_CENTER= 0x0001 Global Const $ES_AUTOHSCROLL= 0x0080 Link to comment Share on other sites More sharing options...
BrettF Posted April 7, 2008 Share Posted April 7, 2008 Here is what I added for this to work in 3.2.11.5 beta... Global Const $SS_CENTER = 0x01 Global Const $WS_MINIMIZEBOX = 0x00020000 Global Const $WS_CAPTION = 0x00C00000 Global Const $WS_POPUP = 0x80000000 Global Const $WS_GROUP = 0x00020000 Global Const $WS_BORDER = 0x00800000 Global Const $WS_CLIPSIBLINGS = 0x04000000 Global Const $WS_EX_TOOLWINDOW = 0x00000080 Global Const $ES_CENTER= 0x0001 Global Const $ES_AUTOHSCROLL= 0x0080Don't you just need to include WindowStyles.au3 and StaticStyles.au3 (off the top of my head) Can't remember what else... Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version! Link to comment Share on other sites More sharing options...
dzony91 Posted April 7, 2008 Share Posted April 7, 2008 Hello, great script, but you may replace this with 56 line: $Form1 = GUICreate($button[$pos][4], 619, 225, -1, -1, BitOR($WS_MINIMIZEBOX, $WS_CAPTION, $WS_POPUP, $WS_GROUP, $WS_BORDER, $WS_CLIPSIBLINGS),$WS_EX_TOOLWINDOW, $parent) To be question window like child Link to comment Share on other sites More sharing options...
gseller Posted April 7, 2008 Share Posted April 7, 2008 Don't you just need to include WindowStyles.au3 and StaticStyles.au3 (off the top of my head) Can't remember what else... I guess that would be ok if you have these files? I don't find these files in my 3.2.10.0 or beta 3.2.11.5 includes, also why would you want to bulk up the file with so many includes? Link to comment Share on other sites More sharing options...
monoceres Posted April 7, 2008 Author Share Posted April 7, 2008 (edited) Here is what I added for this to work in 3.2.11.5 beta... Global Const $SS_CENTER = 0x01 Global Const $WS_MINIMIZEBOX = 0x00020000 Global Const $WS_CAPTION = 0x00C00000 Global Const $WS_POPUP = 0x80000000 Global Const $WS_GROUP = 0x00020000 Global Const $WS_BORDER = 0x00800000 Global Const $WS_CLIPSIBLINGS = 0x04000000 Global Const $WS_EX_TOOLWINDOW = 0x00000080 Global Const $ES_CENTER= 0x0001 Global Const $ES_AUTOHSCROLL= 0x0080I hate the way the costants are organized in 3.2.11.5 beta, can I make it work in both beta and older version? Why is it like this? Hello, great script, but you may replace this with 56 line: $Form1 = GUICreate($button[$pos][4], 619, 225, -1, -1, BitOR($WS_MINIMIZEBOX, $WS_CAPTION, $WS_POPUP, $WS_GROUP, $WS_BORDER, $WS_CLIPSIBLINGS),$WS_EX_TOOLWINDOW, $parent) To be question window like child Of course I didn't check the code since I made it in Koda Edited April 7, 2008 by monoceres Broken link? PM me and I'll send you the file! Link to comment Share on other sites More sharing options...
gseller Posted April 7, 2008 Share Posted April 7, 2008 I feel the same way. As far as I know it cannot be ran in both. Link to comment Share on other sites More sharing options...
BrettF Posted April 7, 2008 Share Posted April 7, 2008 Hack dang it. Memory is hazy as... It should have been WindowsConstants.au3 StaticConstants.au3 EditConstants.au3 But as you said, it is better to have them in there... Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version! Link to comment Share on other sites More sharing options...
gseller Posted April 8, 2008 Share Posted April 8, 2008 Hack dang it. Memory is hazy as...It should have been WindowsConstants.au3StaticConstants.au3EditConstants.au3But as you said, it is better to have them in there... Hehe.. These will be cool to know also just in case.. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now