如何在Autohotkey上的ActiveX GUI中安装任何图像或站点?
有人知道,如何在 ActiveX GUI中拟合此图像?
URL = https://img.freepik.com/fotos-gratis/imagem-aproximada-em-tons-de-cinza-de-uma-aguia-careca-americana-em-um-fundo-escuro_181624-31795.jpg?w=2000
Gui Add, ActiveX, xm w980 h480 vWB, Shell.Explorer
WB.Navigate(URL)
Gui, Show, w1000 h500
return
Guiclose:
ExitApp
我知道我可以为此使用图片,但是,我需要将ActiveX用于项目。以上代码只是一个示例。
对不起,我的英语,这是一项正在进行的工作。
Anyone know, how to fit this image in an activex gui?
URL = https://img.freepik.com/fotos-gratis/imagem-aproximada-em-tons-de-cinza-de-uma-aguia-careca-americana-em-um-fundo-escuro_181624-31795.jpg?w=2000
Gui Add, ActiveX, xm w980 h480 vWB, Shell.Explorer
WB.Navigate(URL)
Gui, Show, w1000 h500
return
Guiclose:
ExitApp
I know that i can use picture for this, but, i need to use activex for my project. The above code is just an example.
Sorry for my english, it's a work in progress..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我对创建DOM的创建并不熟悉,只有我的想法就像在网页上导航:
我在其他情况下使用了类似的技巧,因此不确定在这种情况下它将如何工作。
I am not super familiar with creating the DOM progmatically, only idea I have is something like navigating to a webpage then:
I have used a similar trick other times with IE so not sure how that would work in this case.