Jump to content

Leaderboard

Popular Content

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

  1. AutoIt is freeware, but it is not open sourced. Open sourced means the source code is available to the public. That was true back in the early 2000s, but they changed it to being closed sourced. Only developers have the current source code. If you want to support this language, I suggest you look at unfilled needs, most likely UDFs that no one has produced before. Or updating outdated ones that are no longer supported (I know the Firefox UDF needs some updating). Also, you may want to post some of your work in the example scripts section. This will demonstrate your abilities and other people will point out more efficient ways of doing things.
    1 point
  2. Belini

    Hold down a key

    See if this is what you want: Send("{LSHIFT DOWN}"); Press Down Sleep(500); holding down Send("{LSHIFT UP}"); releases the key
    1 point
  3. Hi everseeker, Yes, you can set the zoom level using execWB() #include <IE.au3> $OLECMDID_OPTICAL_ZOOM = 63 $OLECMDEXECOPT_DONTPROMPTUSER = 2 $oIE = _IECreate('www.google.com') $oIE.execWB($OLECMDID_OPTICAL_ZOOM, $OLECMDEXECOPT_DONTPROMPTUSER, 150)
    1 point
×
×
  • Create New...