我在 Dragon Professional Individual 中使用PGilm的以下语音命令将窗口的标题栏文本复制到剪贴板:
'
' get window title
'
Sub Main
Clipboard ( GetWindowTitle )
End Sub
'
' Use these Windows Functions for Getting an active Window title
'
Declare Function GetForegroundWindow Lib "user32" () As Long
'
Declare Function GetWindowText Lib "user32" _
Alias "GetWindowTextA" ( ByVal hwnd As Long , _
ByVal lpString As String , ByVal cch As Long ) As Long
'
' GetWindowTitle
' (Gets an active Window title)
'
Function GetWindowTitle() As String
Dim x As Integer
Dim TitleText As String * 300
Dim hw As Long
hw = GetForegroundWindow()
x = GetWindowText ( hw , TitleText , Len ( TitleText ) )
GetWindowTitle = Trim ( Left ( TitleText , x ) )
End Function
'
在 Windows 7 SP1 x64 Ultimate 上使用 Dragon NaturallySpeaking 12.5 Professional 和在 Windows 10 Pro 上使用 Dragon Professional Individual 15.6 进行测试。
没有任何本地方法可以从 Windows 标题栏中复制文本。据我所知,在 Windows 11 和 10 中确实如此。
我建议你试试这个第三方程序(可能还有其他程序):
复制标题栏文本
我在 Dragon Professional Individual 中使用PGilm的以下语音命令将窗口的标题栏文本复制到剪贴板:
在 Windows 7 SP1 x64 Ultimate 上使用 Dragon NaturallySpeaking 12.5 Professional 和在 Windows 10 Pro 上使用 Dragon Professional Individual 15.6 进行测试。
可以使用AutoHotkey将窗口标题栏的文本复制到剪贴板。它提供了函数WinGetActiveTitle,可以使用如下: