Belini Posted February 18, 2022 Posted February 18, 2022 I found this UDF https://www.autoitscript.com/forum/topic/114143-vlc-media-player-udf/ and I want to use VLC in a project of mine but I need to disable all VLC hotkeys so that it only receives commands I send through the UDF, does anyone know how to disable VLC hotkeys? My Codes: Virtual Key Code UDF: http://www.autoitscript.com/forum/topic/138246-virtual-key-code-udf/ GuiSplashTextOn.au3: http://www.autoitscript.com/forum/topic/143542-guisplashtexton-udf/ Menu versions of Autoit: http://www.autoitscript.com/forum/topic/137435-menu-versions-of-autoit/#entry962011 Selects first folder of letters: ]http://www.autoitscript.com/forum/topic/144780-select-folders-by-letter/#entry1021708/spoiler] List files and folders with long addresses.: http://www.autoitscript.com/forum/topic/144910-list-files-and-folders-with-long-addresses/#entry102 2926 Program JUKEBOX made in Autoit:some functions:http://www.youtube.com/watch?v=WJ2tC2fD5Qs Navigation to search:http://www.youtube.com/watch?v=lblwOFIbgtQ
jchd Posted February 18, 2022 Posted February 18, 2022 Why not intercept all these hotkeys in your shell script? This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)
Belini Posted February 20, 2022 Author Posted February 20, 2022 There are a lot of keys and many of them are used in my program too, so I need to disable them all in VLC. My Codes: Virtual Key Code UDF: http://www.autoitscript.com/forum/topic/138246-virtual-key-code-udf/ GuiSplashTextOn.au3: http://www.autoitscript.com/forum/topic/143542-guisplashtexton-udf/ Menu versions of Autoit: http://www.autoitscript.com/forum/topic/137435-menu-versions-of-autoit/#entry962011 Selects first folder of letters: ]http://www.autoitscript.com/forum/topic/144780-select-folders-by-letter/#entry1021708/spoiler] List files and folders with long addresses.: http://www.autoitscript.com/forum/topic/144910-list-files-and-folders-with-long-addresses/#entry102 2926 Program JUKEBOX made in Autoit:some functions:http://www.youtube.com/watch?v=WJ2tC2fD5Qs Navigation to search:http://www.youtube.com/watch?v=lblwOFIbgtQ
KaFu Posted February 20, 2022 Posted February 20, 2022 Unset the hotkeys in the ini-file (be sure to make a backup first ). #include <array.au3> $s_File_vlcrc = @AppDataDir & "\vlc\vlcrc" FileCopy(@AppDataDir & "\vlc\vlcrc", @AppDataDir & "\vlc\vlcrc_BACKUP", 0) Global $s_New_File $h_File = FileOpen($s_File_vlcrc) While 1 $s_Line = FileReadLine($h_File) If @error Then ExitLoop If StringLeft($s_Line, 13) = "# global-key-" or StringLeft($s_Line, 12) = "#global-key-" Or StringLeft($s_Line, 11) = "global-key-" Or _ StringLeft($s_Line, 6) = "# key-" Or StringLeft($s_Line, 5) = "#key-" Or StringLeft($s_Line, 4) = "key-" Then #global-key-quit= #key- ConsoleWrite($s_Line & @CRLF) $s_Line = StringLeft($s_Line, StringInStr($s_Line, "=")) If StringLeft($s_Line, 1) = "#" Then $s_Line = StringTrimLeft($s_Line, 1) ConsoleWrite($s_Line & @CRLF & @CRLF) EndIf $s_New_File &= $s_Line & @lf WEnd FileClose($h_File) $h_File = FileOpen($s_File_vlcrc, 2) ; OVERWRITE FileWrite($s_File_vlcrc, $s_New_File) FileClose($h_File) OS: Win10-22H2 - 64bit - German, AutoIt Version: 3.3.16.1, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2024-Oct-13) BIC - Batch-Image-Cropper (2023-Apr-01) COP - Color Picker (2009-May-21) DCS - Dynamic Cursor Selector (2024-Oct-13) HMW - Hide my Windows (2024-Oct-19) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2024-Oct-20) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16)
Belini Posted February 20, 2022 Author Posted February 20, 2022 Thanks @Kafu I will do tests here. My Codes: Virtual Key Code UDF: http://www.autoitscript.com/forum/topic/138246-virtual-key-code-udf/ GuiSplashTextOn.au3: http://www.autoitscript.com/forum/topic/143542-guisplashtexton-udf/ Menu versions of Autoit: http://www.autoitscript.com/forum/topic/137435-menu-versions-of-autoit/#entry962011 Selects first folder of letters: ]http://www.autoitscript.com/forum/topic/144780-select-folders-by-letter/#entry1021708/spoiler] List files and folders with long addresses.: http://www.autoitscript.com/forum/topic/144910-list-files-and-folders-with-long-addresses/#entry102 2926 Program JUKEBOX made in Autoit:some functions:http://www.youtube.com/watch?v=WJ2tC2fD5Qs Navigation to search:http://www.youtube.com/watch?v=lblwOFIbgtQ
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now