Jump to content

Search the Community

Showing results for tags 'autoit to ams Command Line'.

  • 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. hi Associating with AutoIt with Ams or autoit to ams Associating ams and autoit heres the AutoIT source ; Example by RizlaUK ; ; $Cmdline[1]=TITLE ; $Cmdline[2]=MESSAGE ; $Cmdline[3]=ICON ; $Cmdline[4]=TIME if $Cmdline[0] then ; starts a tray tip. TrayTip($Cmdline[1], $Cmdline[2], 5, $Cmdline[3]) Sleep($Cmdline[4]); Else ; starts a tray tip. TrayTip("Tray Tip Tool", "This is a tray tip tool by d-net software", 5, 1) Sleep(3000); EndIf ; end of script. ----------------------------------------------------------------------------- and heres the APMS source, ams source -- TrayTip Title strTitle ="Title"; -- TrayTip Body Text strText = "Body Text..."; ---- TrayTip Icon -- 0 = None -- 1 = Information -- 2 = Exclaimation -- 3 = Error -- 4 = Default -- 7 = Question -- 13 = EXE Window strIcon = "4"; -- TrayTip Delay (milliseconds) strDelay = "3000"; strArgument = '"'..strTitle..'" "'..strText..'" '..strIcon..' '..strDelay; result = File.Run("AutoPlayDocsTrayTip.exe", strArgument, "", SW_SHOWNORMAL, false); okey but how is autoit to ams ? ams info Command Line Arguments - AutoPlay Media Studio (pages 1-4) help http://www.mindquake.com.br/en/code/110-cmdline?start=1 asm code; for index, parametre in pairs(_CommandLineArgs) do Dialog.Message("Parametreler", "Command line argumentn"..index.." = "..parametre); end or for index, parametre in pairs(_CommandLineArgs) do if parametre == "/kucult" then window.Minimize(Application.GetWndHandle()); end end but how is autoit code? I want to achieve from AutoIt to asm with Command Line Arguments thank you now autoit code? help me
×
×
  • Create New...