本帖最后由 mtvtop 于 2011-10-24 21:29 编辑
提示:
乱世天下提示
您的Flash Player版本过低,为了更好的体验我们的服务,请更新版本(ver:10.0.32.18)。
(点击这里更新Flash播放器插件)
安装Flash播放器完毕后,请关闭浏览器后,再重新打开浏览器体验游戏!(如果安装失败,请重启电脑后再安装播放器)
请问怎么解决?我用本机的ie打开没有任何问题#include <IE.au3>
#include <StaticConstants.au3>
#include <TabConstants.au3>
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3> ;
Func _go()
_IENavigate ($oIE,"http://x1.lstx.renren.com/")
EndFunc
#Region ### START Koda GUI section ### ;koda开始,一种制作gui的东西,方便新手
$Form1 = GUICreate("我的小程序", 615, 600) ;建立gui(1000X750);创建用户图形界面接口(GUI)
GUISetIcon(@scriptdir&"\my.ico")
GUICtrlCreateTab(8, 8, 600, 500)
GUICtrlSetResizing(-1, $GUI_DOCKWIDTH+$GUI_DOCKHEIGHT)
Local $box[60]
$TabSheet1 = GUICtrlCreateTabItem("网页")
$Group3 = GUICtrlCreateGroup("网页", 16, 40, 585, 457)
$oIE = _IECreateEmbedded ()
$GUIActiveX = GUICtrlCreateObj($oIE,20, 60, 580, 420)
GUICtrlSetFont(-1, 8, 400, 0, "Arial")
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Button1 = GUICtrlCreateButton("开始(&O)", 6, 512, 75, 25, 0)
$Button2 = GUICtrlCreateButton("取消(&C)", 86, 512, 75, 25, 0)
GUISetState(@SW_SHOW);显示gui
#EndRegion ### END Koda GUI section ###;koda结束,一种制作gui的东西,方便新手
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_go()
MsgBox(0,"窗口","程序已经开始",6) ;测试
EndSwitch
WEnd
|