gpt4 book ai didi

autohotkey - 如何将自动热键文件加载到另一个自动热键文件 (.ahk)

转载 作者:行者123 更新时间:2023-12-04 00:47:21 26 4
gpt4 key购买 nike

<分区>

我正在开发一个 autohotkey 脚本,它允许我选择文本/代码到我的剪贴板并按下键盘组合,然后它会将其作为新条目发布到我帐户下的 pastbin.com 网站上并返回 URL我剪贴板中的新 pastebin.com 条目。

到目前为止,除 1 个异常(exception)外,我的系统运行良好。下面是我的自动热键代码...

; ******* INFO *******
; < Pastebin.com copy/paste> - Instantly share your code on pastebin.com
; SCRIPT FUNCTION: Press hotkey (ctrl+shift+c) to save selected text to pastebin.com


; ******* Initiate script *******
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance, Force


; ******* Hotkeys - Post Code and Get URL *******
^+c::
Send ^c
ClipWait
pastestring:=ClipBoard

api_user_key:="cd25-CHANGED-7c0158bgg06a91e617"
api_dev_key:="24-CHANGED-eecedghb97f35"
URL:="http://pastebin.com/api/api_post.php"

POSTDATA := "api_paste_code=" pastestring "&api_user_key=" api_user_key "&api_paste_name=" filename "&api_paste_private=1&api_paste_format=php&api_dev_key=" api_dev_key "&api_option=paste"

html := httpQUERY(URL,POSTDATA)
Clipboard:=html
TrayTip, AHKClipper, Added %Html%, 2, 1

真正的魔法发生在

函数调用httpQUERY(URL,POSTDATA)

该函数的代码位于此处的文件中... http://pastebin.com/Bcb3ELPE 我把它贴在那里是因为它有 200 多行,并不是真的需要回答这个问题。

现在的问题是我上面的脚本要工作,我必须将 httpquery.ahk 文件的内容包含到我自己的上面的 .ahk 文件中。

有没有什么方法可以将该文件包含到其中,而不会将所有代码混杂到我自己的文件中?

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com