AU3里怎么写快捷方式路径里的代码
#include <ButtonConstants.au3>#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 633, 454, 193, 115)
$Button1 = GUICtrlCreateButton("中央五套", 128, 80, 313, 113, 0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $nMsg = $Button1
Run(@COMSPEC & \' /c ""C:\Program Files\Windows Media Player\wmplayer.exe" /prefetch:1 http://localhost:16900/1.asf"\',"", @SW_HIDE)
EndSwitch
WEnd
我这个为什么执行不起来,那里错了,希望高手指教!谢谢
[ 本帖最后由 linzhixin 于 2008-7-26 12:23 编辑 ] 我只看到你run里多了个“\”。 不行,我去掉了那个也不行 为什么要加@comspec,命令行运行? 既然要看电视 后面还加上隐藏执行参数@SW_HIDE干嘛?
另外 RUN里的东东有点错
自己MSGBOX查看就知道了 FileCreateShortcut 函数可以创建快捷方式。 Run(@COMSPEC & \' /c ""C:\Program Files\Windows Media Player\wmplayer.exe" /prefetch:1 http://localhost:16900/1.asf"\',"", @SW_HIDE) 这句出错了`` \' 这个`? run那行写的是真太那个了……
不知道楼主想在两边分别加个“/”是什么意思,如果不带“/”是下面这样写
Run(@ComSpec &" /c "&Chr(34)&"C:\Program Files\Windows Media Player\wmplayer.exe"&Chr(34)&" /prefetch:1 http://localhost:16900/1.asf")
[ 本帖最后由 skyfree 于 2008-7-25 08:18 编辑 ] 呵呵,谢谢,小弟刚学没几天
页:
[1]