linkazoid Posted September 29, 2010 Posted September 29, 2010 Hi, We have just been told that students will need to be able to create an example email for an assessment they will be doing but they can not have internet access. They need to be able to enter a to:, cc:, subject and the message text. They then need to printscreen the email but not send it. I've had a look at some portable email clients but I dont think it will work too well. Does anyone know of any flash swf that can replicate an email client? or can suggest anything different? Thanks, Michael
p858snake Posted September 29, 2010 Posted September 29, 2010 Outlook will do this if you have it, just click no to the wizard on its start then click on new message.
linkazoid Posted September 29, 2010 Author Posted September 29, 2010 We've removed outlook 2007 and the basic from the build. So unfortunatly this wont be an option for us.
K.C.Leblanc Posted September 29, 2010 Posted September 29, 2010 If they litteraly just need to screen grab it you can probably make a form in AutoIT & Koda. 1
linkazoid Posted September 29, 2010 Author Posted September 29, 2010 Its needed for 1 hour for 1 day... I don't really want to spend loads of time on this if possible.
linkazoid Posted September 29, 2010 Author Posted September 29, 2010 (edited) [ATTACH]8169[/ATTACH] I've just bodged this up. Fantastic - Do you have the au3 file so I can have a play around to see how you did it? As I don't seem to be able to use enter to go to the next line in the message box. Edited September 29, 2010 by linkazoid More info
K.C.Leblanc Posted September 29, 2010 Posted September 29, 2010 ; Script Start - Add your code below here #include #include #include #include #include #Region ### START Koda GUI section ### Form=C:\Program Files (x86)\Koda\Forms\mock email\Form1.kxf $Form1 = GUICreate("New Email", 640, 456, 221, 312) $Label1 = GUICtrlCreateLabel("To:", 8, 10, 20, 17) $Label2 = GUICtrlCreateLabel("CC:", 8, 43, 21, 17) $Input1 = GUICtrlCreateInput("", 72, 8, 545, 21) $Input2 = GUICtrlCreateInput("", 72, 41, 545, 21) $Label3 = GUICtrlCreateLabel("Subject:", 8, 76, 43, 17) $Input3 = GUICtrlCreateInput("", 71, 74, 545, 21) $Label4 = GUICtrlCreateLabel("Message:", 8, 104, 50, 17) $Button1 = GUICtrlCreateButton("Send", 544, 408, 75, 25, $WS_GROUP) $Input4 = GUICtrlCreateInput("", 72, 104, 545, 277, $ES_MULTILINE) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
linkazoid Posted September 30, 2010 Author Posted September 30, 2010 I have tried the thunderbird option as suggested above. I have downloaded the portable version and have installed it on a shared drive. It works ok but as soon as another user trys to open it, it says that another user is already using it. Does anyone know how I can get round this? Michael
K.C.Leblanc Posted September 30, 2010 Posted September 30, 2010 I have tried the thunderbird option as suggested above. I have downloaded the portable version and have installed it on a shared drive. It works ok but as soon as another user trys to open it, it says that another user is already using it. Does anyone know how I can get round this? Michael Try making the share read only, although this will probably just kill it dead.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now