Jump into the registry key
screenshot
Readme_En
JumpReg.7z (610kb sources + EXE)
Edited by AZJIO, 22 August 2012 - 01:46 AM.
Posted 28 December 2010 - 05:59 AM
Edited by AZJIO, 22 August 2012 - 01:46 AM.
Posted 28 December 2010 - 08:29 AM
==========================================================
AutoIt Russian Community
Projects: ATT - Application Translate Tool [new] | BlockIt - Block files & folders [new] | SIP - Selected Image Preview [new] | SISCABMAN - SciTE Abbreviations Manager [new] | AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize Program
UDFs: OnAutoItErrorRegister - Handle AutoIt critical errors [new] | AutoIt Syntax Highlight [new] | Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF
Examples: ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation DemoLike the examples/UDFs? Please rate the topic (up-right corner of the post header: Rating
)* === My topics === *
==========================================================AutoIt is simple, subtle, elegant. © AutoIt Team
Posted 31 December 2010 - 07:12 PM
Posted 27 January 2011 - 01:32 PM
Posted 31 January 2011 - 06:59 PM
Ger.7z 1010bytes
112 downloads[HKEY_CURRENT_USER - Software ->Classes >> Applications | notepad++.exe > shell \open , command]
Func CheckString($Value) $Value = StringUpper($Value) If $Value = "COMPUTER" Then Return $Value $Value = StringReplace($Value, Chr(34), "") $Value = StringReplace($Value, " |", "\") $Value = StringReplace($Value, "| ", "\") $Value = StringReplace($Value, " | ", "\") $Value = StringReplace($Value, " - ", "\") $Value = StringReplace($Value, " -", "\") $Value = StringReplace($Value, "- ", "\") $Value = StringReplace($Value, "-->", "\") $Value = StringReplace($Value, "->", "\") $Value = StringReplace($Value, ">>", "\") $Value = StringReplace($Value, ">", "\") $Value = StringReplace($Value, "-> ", "\") $Value = StringReplace($Value, " ->", "\") $Value = StringReplace($Value, " -> ", "\") $Value = StringReplace($Value, "> ", "\") $Value = StringReplace($Value, " >", "\") $Value = StringReplace($Value, " > ", "\") $Value = StringReplace($Value, " >>", "\") $Value = StringReplace($Value, ">> ", "\") $Value = StringReplace($Value, " >> ", "\") $Value = StringReplace($Value, " \", "\") $Value = StringReplace($Value, "\ ", "\") $Value = StringReplace($Value, ",", "\") $Value = StringReplace($Value, ";", "\") $Value = StringReplace($Value, ',"', "\"); from inffile $Value = StringReplace($Value, "\\", "\"); from regfile $Value = StringReplace($Value, "COMPUTER\", "") If StringRight($Value, 1) = "]" Then $Value = StringLeft($Value, (StringLen($Value) - 1)) If StringLeft($Value, 1) = "[" Then $Value = StringRight($Value, (StringLen($Value) - 1)) If StringRight($Value, 1) = "\" Then $Value = StringLeft($Value, (StringLen($Value) - 1)) $Value = "COMPUTER\" & $Value Return $Value EndFunc ;=>CheckString
Posted 01 February 2011 - 12:53 AM
Case $msg = $Jump Or $msg = $comboreg $comboreg0 = GUICtrlRead($comboreg) $comboreg0 = CheckString($comboreg0) ; <<<<<<<<<< $runyes=_Jump($comboreg0)
Edited by AZJIO, 01 February 2011 - 01:02 AM.
Posted 02 February 2011 - 04:37 PM
$Value = "COMPUTER\" & $Value If $Value = "COMPUTER" Then Return $Value $Value = StringReplace($Value, "COMPUTER\", "") $Value = StringReplace($Value, " | ", "\") $Value = StringReplace($Value, " >> ", "\") $Value = StringReplace($Value, " --> ", "\") $Value = StringReplace($Value, " -> ", "\") $Value = StringReplace($Value, " > ", "\") $Value = StringReplace($Value, " - ", "\")
Func CheckString($Value) $Value = StringUpper($Value) $Value = StringReplace($Value, Chr(34), "") $Value = StringReplace($Value, " |", "\") $Value = StringReplace($Value, "| ", "\") $Value = StringReplace($Value, " -", "\") $Value = StringReplace($Value, "- ", "\") $Value = StringReplace($Value, "-->", "\") $Value = StringReplace($Value, "->", "\") $Value = StringReplace($Value, "-> ", "\") $Value = StringReplace($Value, " ->", "\") $Value = StringReplace($Value, ">>", "\") $Value = StringReplace($Value, " >>", "\") $Value = StringReplace($Value, ">> ", "\") $Value = StringReplace($Value, ">", "\") $Value = StringReplace($Value, "> ", "\") $Value = StringReplace($Value, " >", "\") $Value = StringReplace($Value, ",", "\") $Value = StringReplace($Value, " ,", "\") $Value = StringReplace($Value, ", ", "\") $Value = StringReplace($Value, ";", "\") $Value = StringReplace($Value, "; ", "\") $Value = StringReplace($Value, " ;", "\") $Value = StringReplace($Value, ',"', "\") $Value = StringReplace($Value, " \", "\") $Value = StringReplace($Value, "\ ", "\") $Value = StringReplace($Value, "\\", "\") If StringRight($Value, 1) = "]" Then $Value = StringLeft($Value, (StringLen($Value) - 1)) If StringLeft($Value, 1) = "[" Then $Value = StringRight($Value, (StringLen($Value) - 1)) If StringRight($Value, 1) = "\" Then $Value = StringLeft($Value, (StringLen($Value) - 1)) Return $Value EndFunc ;=>CheckString
Posted 29 May 2012 - 07:58 PM
Posted 22 August 2012 - 12:57 PM
Autoit Forum Brazil: http://autoitbrasil.com/ >> Autoit and arcades: http://www.arcadebr.com/forumMy Codes: Posted 03 February 2013 - 10:19 AM
Edited by burnell, 03 February 2013 - 10:19 AM.
Posted 03 February 2013 - 11:14 AM
Remove constant in GuiHotKey.au3.How to solve this?
Posted 03 February 2013 - 11:45 AM
Edited by burnell, 03 February 2013 - 11:53 AM.
0 members, 0 guests, 0 anonymous users