Assuming msgbox is required, the following 13 results were found.
put this javascript in your URL Address bar and hit enter: Code: javascript: alert(document.forms[0].elements[0].value) MsgBox % pwb.document.forms[0].elements[0].value MsgBox % COM_Invoke(pwb, "document.forms[0].elements[0].value") Object's Name / ID...
) { CursorHandle := DllCall( "LoadCursor", Uint,0, Int,CursorID ) Break } } If CursorHandle = ; invalid cursor name given { Msgbox,, SetCursor, Error: Invalid cursor name CursorHandle = Error } } Else If FileExist( Cursor ) { SplitPath, Cursor,,, Ext ;...
for some up and down arrows which is all I wanted, then you don't have to use Unicode and you can use the Chr() function: msgbox % Chr(24) ; upwards arrow msgbox % Chr(25) ; downwards arrow, unstable Generate list of those that work for you: loop 255...
A_LoopFileName SC_TotalFiles := A_Index } } -- put this function at the end of the script. -- usage: SC_Load("C:\*.*", 1) MsgBox, TotalFiles %SC_TotalFiles% -- yields number of files in a directory recursively. Method #4: FileSystemObject ComObjCreate...
%v_CsvLine%, %v_RunFolder%\Errors.csv } } SB_SetText("Copied " v_FilesCopied " of " v_FilesTotal " file(s). Ready.", 1) MsgBox, 0,Done, Copied %v_FilesCopied% of %v_FilesTotal% file(s) Return MyListView: if (A_GuiEvent = "DoubleClick") {...
x600 y70 w90 h90 +Default +gSearch +Hide, Search The function to receive the data can be: Search: Gui, Submit, NoHide MsgBox, Searching for "%SearchTextInput%" Return
%ThisProgramName% WinSet, AlwaysOnTop, On, %ThisProgramName% OnMessage(0x200, "WM_MOUSEMOVE") Return OpenDocumentation: MsgBox, Oh no you clicked on me! Return ; ****************************************************************************** ; MOUSE...
Examples of DllCall'ing: // get number of network card interfaces DllCall("iphlpapi\GetNumberOfInterfaces", "UintP", nIf) MsgBox % nIf... // get current process ID ProcessID := DllCall("GetCurrentProcessId")
user to select a folder to scan ButtonBrowse: FileSelectFolder, vSelectedFolder, 3, , Select a folder if vSelectedFolder = MsgBox, You didn't select a folder. else { vSelectedFolder := RegExReplace(vSelectedFolder, "\\$") ; Removes the trailing...
:= v_y2 } } ; output test v_Leftest := a_MyArray[0,0] v_Central := a_MyArray[1,0] v_Rightest := a_MyArray[2,0] MsgBox 1: %v_Leftest% 2: %v_Central% 3: %v_Rightest% Now there is an issue in that Monitor 1,2, and 3 might not be in the order placed on the...
1) LV_GetText( v_NewFileName, A_Index, 2) v_Source := v_FolderPath v_OldFileName v_Target := v_FolderPath v_NewFileName ; MsgBox %v_Source%`rto`r%v_Target% FileMove, %v_Source%, %v_Target% v_RowCount++ SB_SetText("Renaming & Moving Entry #" v_RowCount...
, "System.Video.HorizontalAspectRatio" , "System.Video.Orientation" , "System.Video.VerticalAspectRatio" ) MsgBox % a_MediaObject["System.Media.Duration"] // note this returns in 100ns units (= 100 nanoseconds) as per Microsoft Docs. 100ns Units So the...
a notepad file called read_product_id.vbs Copy the following code to the file: Set wshShell = CreateObject("Wscript.Shell") MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId")) Function...