ActiveX, vBrowser , Shell.Explorer - Move in gui

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
tm6464
Posts: 48
Joined: 17 Jul 2017, 22:56

ActiveX, vBrowser , Shell.Explorer - Move in gui

Post by tm6464 » 17 Jul 2017, 23:03

Hi all
is there any way to Move ActiveX Browser element in gui to other x y ?

Gui Add, ActiveX, vBrowser x0 y0 w759 h650, Shell.Explorer
Browser.Navigate("https://facebook.com")

Gui, Add, Tab, x770 y5 w200 h646 , Tab1|Tab2
Gui, Add, Button, x826 y47 w100 h40 gbutton, Move Browser Window

Gui, Show, x0 y0 h658 w986, testing

Return

GuiClose:
ExitApp

button:
Gui Add, ActiveX, vBrowser x-50 y50 w759 h650, Shell.Explorer
Return


thx all

User avatar
F4Jonatas
Posts: 45
Joined: 22 Oct 2015, 06:35
Contact:

Re: ActiveX, vBrowser , Shell.Explorer - Move in gui

Post by F4Jonatas » 21 Jul 2017, 16:28

Maybe this will help you.

Code: Select all

Gui Add, ActiveX, VBrowser X0 Y0 W759 H650, Shell.Explorer
Browser.Navigate( "https://facebook.com" )

Gui, Add, Tab3, X770 Y5 W200 H646 , Tab1|Tab2
Gui, Add, Button, X826 Y47 W100 H40 Gbutton, Move Browser Window
Gui, Show, X0 Y0 H658 W986, testing
Return

GuiClose:
   ExitApp

button:
   GuiControl, Move, Browser, X-50 Y50 W759 H650
Return

Post Reply

Return to “Ask for Help (v1)”