|
主题: 请问在AW中怎样收发邮件!
|
ketop
职务:普通成员
等级:1
金币:0.0
发贴:21
|
#12001/10/10 8:44:25
请问在AW中怎样收发邮件!请详细给我讲解一下,我在这里先谢了!
|
草原风
职务:版主
等级:5
金币:13.0
发贴:3489
|
#22001/10/10 15:37:56
用插件来实现这个功能吧
|
ketop
职务:普通成员
等级:1
金币:0.0
发贴:21
|
#32001/10/11 8:50:30
草原风,能否具体一些?
|
草原风
职务:版主
等级:5
金币:13.0
发贴:3489
|
#42001/10/11 12:06:47
有一个插件可以实现这个功能的,你可以找找看,具体的我已经忘记了,我已经很长时间不用AW来开发东东了
|
与人同乐
职务:管理员
等级:6
金币:18.0
发贴:3928
|
#52001/10/13 23:41:02
不是有个KO叫Send Email吗?
|
Aw天地
职务:普通成员
等级:3
金币:10.0
发贴:836
|
#62001/10/15 0:43:04
这也是一种方法,但是可能不是和你的要求
Activating the Send Mail Window -------------------------------
You can use ShellExecute to activate the send mail window. Sample syntax:
ShellExecuteA(WindowHandle,"open","mailto:name@domain.com","","",3)
ShellExecuteA is a function in SHELL32.DLL in the \windows\system directory. When loading this function, specify following without quotes:
...The function name as "ShellExecuteA" ...The arguments as "long,string,string,string,string,long" ...The return value as "long"
WindowHandle is Authorware's internal WindowHandle variable
The second and third parameters are self-explanatory.
Leave the fourth and fifth parameters as "".
The sixth parameter describes how the send mail window will appear. Leave it as 3 for maximized.
|
ketop
职务:普通成员
等级:1
金币:0.0
发贴:21
|
#72001/10/15 19:27:21
谢谢各位!但不知怎样实现收邮件?
|