Jump to content

Search the Community

Showing results for tags 'alternative'.

  • 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 2 results

  1. Hi all, I have made a simple script to use instead of MsgBox function. This function takes only one parameter as message text. It will display your script name as message title. Here is the code. You can include this in your script. #cs Function name = Alert($msg) Creater = kcvinu Example = Alert("Hello World!") This function is an alternative for MsgBox. It only takes one parameter as message text And it will display the script name as title #ce Func Alert($msg) Local $title = StringSplit(@ScriptName,".") ; Splitting the script name into two piece. MsgBox(0,$title[1],$msg) ; Using the first piece as title. 2nd piece is the extension. EndFunc Here is the file Alert.au3
  2. Hi, I am looking for a new programming language to learn, I found AutoIt the most suitable programming language for me (AutoIt FTW), any (very) similar languages to AutoIt?
×
×
  • Create New...