Jump to content

Search the Community

Showing results for tags 'oo fun we can have'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. i am working on Jeopary tool full of all the answers i am stuck tho as i cant figure out where to go from hear. please any ideas as its been a few years since i was in autoit 101 main script #cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.8.1 Author: XxFxX Version: 1.00 Script Function: Jeopardy tool to help with the questions. #ce ---------------------------------------------------------------------------- #include <GUIConstantsEx.au3> #include <GUIListBox.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #include <Questions.au3> #include <Answers.au3> Opt("GUIOnEventMode", 1) SplashImageOn("", "C:\AUTOIT\Jeopardy_tool\jeopardy192.jpg", "-1", "-1", "-1", "-1", 3) SoundPlay("j.mp3", 0) Sleep(5000) SplashOff() Global $Jeopardy = GUICreate("Jeopardy", 521, 465) GUISetBkColor(0x000080) Global $AnswersLabel = GUICtrlCreateLabel("Answer List", 16, 8, 170, 38, $WS_BORDER) GUICtrlSetFont($AnswersLabel, 22, 800, 0, "Gyparody Hv") GUICtrlSetColor($AnswersLabel, 0xFFFF00) GUICtrlCreatePic("C:\AUTOIT\Jeopardy_tool\jeopardy192.jpg", 200, 0, 300, 276) Global $QuestionsLabel = GUICtrlCreateLabel("Question", 224, 280, 100, 33) GUICtrlSetFont($QuestionsLabel, 18, 400, 0, "Gyparody Rg") GUICtrlSetColor($QuestionsLabel, 0xFFFF00) Global $AnswersList = GUICtrlCreateList($Answers, 8, 48, 177, 253) Global $QuestionsList = GUICtrlCreateList($Questions, 8, 328, 489, 97) GUISetState(@SW_SHOW) While 1 Sleep(100) WEnd Questions.au3 #cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.8.1 Author: XxFxX Version: 1.00 Script Function: Jeopardy tool to help with the questions. #ce ---------------------------------------------------------------------------- $Q1 = What is the capital of Yukon Territory? ;---answer is on Answers.au3 $A1 $Q2 = Which is the heaviest? ;---answer is on Answers.au3 $A2 #cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.8.1 Author: XxFxX Version: 1.00 Script Function: Jeopardy tool to help with the questions. #ce ---------------------------------------------------------------------------- $Q1 = YellowKnife ;---Question is on Questions.au3 $Q1 $Q2 = Gold ;---Question is on Questions.au3 $Q2jeopardy_tool.au3 Answers.au3 Questions.au3
×
×
  • Create New...