Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/21/2015 in all areas

  1. DesireDenied

    Windows context menu

    Thanks all for your support, I've already completely solved my problem
    1 point
  2. Deye

    Windows context menu

    Here is an example for windows: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*\shell\msdncascade] "MUIVerb"="ExtendedSubCommandsKey cascade" "ExtendedSubCommandsKey"="*\\shell\\msdncascade\\menus\\flyout1" [HKEY_CLASSES_ROOT\*\shell\msdncascade\menus] [HKEY_CLASSES_ROOT\*\shell\msdncascade\menus\flyout1] [HKEY_CLASSES_ROOT\*\shell\msdncascade\menus\flyout1\shell] [HKEY_CLASSES_ROOT\*\shell\msdncascade\menus\flyout1\shell\cmd1] "MUIVerb"="flyout2" "ExtendedSubCommandsKey"="*\\shell\\msdncascade\\menus\\flyout2" [HKEY_CLASSES_ROOT\*\shell\msdncascade\menus\flyout1\shell\cmd2] "MUIVerb"="Notepad" [HKEY_CLASSES_ROOT\*\shell\msdncascade\menus\flyout1\shell\cmd2\command] @="notepad.exe %1" [HKEY_CLASSES_ROOT\*\shell\msdncascade\menus\flyout1\shell\cmd3] "MUIVerb"="Wordpad" [HKEY_CLASSES_ROOT\*\shell\msdncascade\menus\flyout1\shell\cmd3] @="Wordpad %1" [HKEY_CLASSES_ROOT\*\shell\msdncascade\menus\flyout1\shell\cmd3\command] @="Wordpad.exe %1" [HKEY_CLASSES_ROOT\*\shell\msdncascade\menus\flyout2\shell\cmd1] "MUIVerb"="Notepad" [HKEY_CLASSES_ROOT\*\shell\msdncascade\menus\flyout2\shell\cmd1\command] @="notepad.exe %1" [HKEY_CLASSES_ROOT\*\shell\msdncascade\menus\flyout2\shell\cmd2] "MUIVerb"="Wordpad" [HKEY_CLASSES_ROOT\*\shell\msdncascade\menus\flyout2\shell\cmd2\command] @="Wordpad.exe %1"
    1 point
  3. You have to put the _ImageSearch line inside the loop, otherwise it's only being checked once before the loop and never again. while $result = 1 $result = _ImageSearch("load.bmp",0,$x1,$y1,0) ; <<<<<<<<<<<<<<<<<<<<<<< MouseMove($x1,$y1) sleep(5000) WEnd ;insert proceeded steps
    1 point
  4. Xavia: you need to use Progress Bar... $result = _ImageSearch("load.bmp",0,$x1,$y1,0) while $result = 1 MouseMove($x1,$y1) Progresson("Serching..") For $i = 10 To 100 Step 10 Sleep(1000) ProgressSet($i, $i & "%") Next sleep(5000) WEnd ProgressOff ( )
    1 point
  5. Jon

    New Forum Guide for IPS 4

    A short users guide to the IPB v4 new forum. The forum operates in much the same way as the old v3 one, but there are several major differences - so here is a quick guide: Firstly login: This requires displayname/password - not username/password as before. Next the editor: This is now full WYSIWYG using HTML and seems a lot better than the v3 one. There are buttons to add hyperlinks, quotes, code and spoilers, plus Trac links . Do not use the old BB codes as they will almost certainly not be honoured. Posting links to threads/posts is easy: Posting a thread/post URL (use the "share this post" button at top right to get a post URL) directly into the editor actually inserts a clickable single line box. Using the editor "link" button lets you choose clickable text to display in place of the box. The "code" button gives a choice of "AutoIt" (with syntax highlighting) or plain "Text" (plus a couple of other choices). Code over a certain length still appears in scrollable boxes, and thanks to Jon these still have "expand/popup" buttons. Paragraph spacing is automatically applied when pressing {ENTER} - use {Shift-ENTER} for single lines. Now the member details: The dropdown under the member name at top right still accesses things such as Private Messages, Content, Followed Content. To change display name, signature, password, go to "Account Settings" How members are notified of forum events has changed - check to find out how previous settings have been transferred because there are now some forced choices where the notification will be in-forum rather than by email. The "Friend" functionality has been replaced by the ability to "Follow" other members - this is done via a button on their profile page.
    1 point
  6. ; #FUNCTION# ==================================================================================================================== ; Name...........: _Iif ; Description ...: Perform a boolean test within an expression. ; Syntax.........: _Iif($fTest, $vTrueVal, $vFalseVal) ; Parameters ....: $fTest - Boolean test. ; $vTrueVal - Value to return if $fTest is true. ; $vFalseVal - Value to return if $fTest is false. ; Return values .: True - $vTrueVal ; False - $vFalseVal ; Author ........: Dale (Klaatu) Thompson ; Modified.......: ; Remarks .......: ; Related .......: ; Link ..........: ; Example .......: Yes ; =============================================================================================================================== Func _Iif($fTest, $vTrueVal, $vFalseVal) If $fTest Then Return $vTrueVal Else Return $vFalseVal EndIf EndFunc ;==>_Iif
    1 point
×
×
  • Create New...