LOULOU 0 Posted May 15, 2005 $IE=Objcreate("InternetExplorer.Application")$IE.visible= True$IE.navigate("http://forums.purebasic.fr/")sleep(2000)$frame_link = $IE.document.Frames.lengthProblem with FramesI would want to put the focus on frame name ORT but i can't doIs someone knows how to do Share this post Link to post Share on other sites
SvenP 0 Posted May 15, 2005 Problem with FramesI would want to put the focus on frame name ORT but i can't doIs someone knows how to do<{POST_SNAPBACK}>LOULOU,According to the documentation on http://msdn.microsoft.com/workshop/author/...ions/frames.asp , that could be done with:$IE.document.Frames("ORT").focus-Sven Share this post Link to post Share on other sites