Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/25/2012 in all areas

  1. Jon

    Where to find autoitx3.lib?

    There's not much to touch aside from function level bug fixes. Most of the new code that goes into AutoIt is language improvements which don't apply. Personally, I've always thought AutoItX was the most interesting part of AutoIt. Especially for corporates which sometimes mandate that any scripts should be supportable and written in VBScript/PowerShell. I actually wanted to redo it from scratch as well so that it works as a Powershell applet or something.
    1 point
  2. water

    random number generator

    Random and serial numbers are mutually contradictory What do you need exactly? Do you already have some code you can post?
    1 point
  3. Nice example.leomoon.
    1 point
  4. I want write a script that does the following: 1. Perform a program command 2. Save the file as "a1.jpg" 3. Perform another program command (slightly different) 4. Save the file as "a2.jpg" 5. etc I need it to loop 360 times then stop. So i end up with 360 files, all slightly different, named a1.jpg, a2.jpg, a3.jpg... a360.jpg How do I make the digit at the end of the filename increase (+1) in every loop? How do i make it stop after 360 times? Thanks!
    1 point
  5. sandin

    Create in Specific Tab

    try this: #include <GUIConstants.au3> $Form1 = GUICreate("AForm1", 625, 445, 193, 115) $Tab1 = GUICtrlCreateTab(80, 80, 393, 209) $tabitem1 = GUICtrlCreateTabItem("Tab1") $tabitem2 = GUICtrlCreateTabItem("Tab2") $tabitem3 = GUICtrlCreateTabItem("Tab3") GUICtrlCreateTabItem("") $Button1 = GUICtrlCreateButton("Create Button to:", 112, 336, 137, 33, 0) $combo1 = GUICtrlCreateCombo("", 250, 340, 137, 33, $CBS_DROPDOWNLIST) GUICtrlSetData(-1, "Tab1|Tab2|Tab3", "Tab1") GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit case $Button1 $var = guictrlread($combo1) if $var = "Tab1" Then GUISwitch($Form1,$tabitem1) ElseIf $var = "Tab2" Then GUISwitch($Form1,$tabitem2) Else GUISwitch($Form1,$tabitem3) EndIf GUICtrlCreateButton("OK!", 300, 200) GUICtrlCreateTabItem("") EndSwitch WEnd
    1 point
×
×
  • Create New...