Posts: 8
Threads: 2
Joined: Nov 2013
I need to refresh a popup window in Firefox.
the popup window does not have a visible refresh button. i can right click and refresh tho.
web "refresh" does not work
Posts: 12,123
Threads: 142
Joined: Dec 2002
Macro
Macro2566
int w=win("PopupTest Thursday April, 16 2015 - Mozilla Firefox" "MozillaWindowClass")
act w
key F5
Posts: 8
Threads: 2
Joined: Nov 2013
thanks, but is there no other way to do it where is would not activate the window or use the mouse?
Posts: 12,123
Threads: 142
Joined: Dec 2002
Macro
Macro2569
int w=win("PopupTest Thursday April, 16 2015 - Mozilla Firefox" "MozillaWindowClass")
PostMessage w WM_KEYDOWN VK_F5 0
Posts: 8
Threads: 2
Joined: Nov 2013
perfect.
thought it would be the same concept on chrome but it dont work. what could i do on chrome?
Posts: 12,123
Threads: 142
Joined: Dec 2002
Macro
Macro2570
int w=win("PopupTest Friday April, 17 2015 - Google Chrome" "Chrome_WidgetWin_1")
PostMessage w WM_ACTIVATE WA_ACTIVE 0
PostMessage w WM_KEYDOWN VK_F5 0
PostMessage w WM_ACTIVATE WA_INACTIVE 0
0.1
;note: WM_ACTIVATE does not activate Chrome. Just makes Chrome think that it is active.
Posts: 8
Threads: 2
Joined: Nov 2013