[SOLVED] Programmatically open Dev Tools (HTML Widget)
Author: gls.tools@free.fr (Gilles)
Hi all, I'm trying to programmatically open DevTools (HTML Widget) from an pop up menu. DevTools is opening with CTRL+SHIFT+I , then i try to reproduce this with : $prompt="HTML widget" ; -----> test 1 ; macro"^129^130i" ;-----> test 2 ; macro"^129^130I" ;-----> test 3 ; macro"^129^130^073" ;--- ; macro"^129^130^105" ;-----> test 4 ; macro"^131i" ;-----> test 5 ; macro"^131I" ;-----> test 6 ; macro"^131^073" ;-----> test 7 ; macro"^131^105" ;------> test 8 user32.dll ; newinstance "USER32",test ; hwnd=test->getfocus() ; test->postmessage(hwnd,256,17,1900545) ;keydown get value from spy++ ; test->postmessage(hwnd,256,16,2752513) ; ; test->postmessage(hwnd,256,73,1507329) ; ;----> test 9 ; test->sendmessage(hwnd,257,73,1507329) ;keyup ; test->sendmessage(hwnd,257,16,2752513) ; test->sendmessage(hwnd,257,17,1900545) ; But nothing works , an idea ? Thanks. Gilles.