Jump to content

GroovyMan8750

Members
  • Posts

    17
  • Joined

  • Last visited

GroovyMan8750's Achievements

  1. I will give it a try... Here is the app I am working on. It is for those that don't have a cell phone (or more to the point reception), and still need to send a text out. One way com with the wife....awesome!!! The killer is the dragged out mail process. txt app.au3
  2. I have added: Sleep(100) Send("!{s}") ;Alt + S key stroke for send under the _INetMail. This allows outlook to open the message, populate it, and has enough delay to actually send the message without user interface. Is there a way to make it so the user doesn't see outlook email process?
  3. I have set a basic app to populate a message for outlook to send. How can I get it to automatically send without viewing the message and pressing send? $Ok_Button1 = GUICtrlCreateButton("Send the E-Mail", 630, 10, 200, 25) GUICtrlSetOnEvent($Ok_Button1, "Ok_Button1") GUICtrlSetBkColor(-1, 0xffff01) GUICtrlSetColor(-1, 0x0000ff) GUICtrlSetFont(-1, 10, 900, 1, "Calibri") Func Ok_Button1() Local $sAddress = GUICtrlRead ($Input1) & GUICtrlRead ($input2) Local $sSubject = GUICtrlRead($Input3) Local $sBody = GUICtrlRead($Input4) _INetMail($sAddress, $sSubject, $sBody) EndFunc ;==>Ok_Button1
  4. The location of the Next prevented the numbers from appearing under the sliders. I have made several modifications that cleaned up a few issues, however I'm still having a problem with getting the slider numbers to translate into the log file. Any additional ideas? 1test.au3
  5. Here is the PowerPoint.au3 It is a bit dated, but works for what I needed of it. Can still be found on the autoit site. Powerpoint.au3
  6. The label should show the range "1 2 3 4 5 6 7 8 9 10" and align accordingly to the output file. The extra input will not go unused. I just have to workout a realtime refresh...or close to it.
  7. Will post pp.au 3 in am...... @ home reviewing this on my kindel.
  8. Remove the power point.Au3 from the include.
  9. I am attempting to use sliders to create a Q&A report that outputs a log/txt file on a PC/Server...at least I got that to work. I have the sliders set, however I cannot get the number range to show on the GUI correctly. Could use some guidance here. When I output the value of each slider into a log file, the values are really goofed. Could use some more guidance here too. Any help would be greatly appreciated. I am a noob, take pity. I have self abused already! test1.au3
  10. I have been trying a multitude of things....._IECreate at least allows the file to open after a bit... After pulling my head out.....I got it. I had to add the secondary folder location in front of the file to execute. I'm such a tool! Thanks for the assist!!
  11. I'm want to open a ppt/pps file in presentation mode from a button on a multi-button GUI. Trying to find resource info is killing me. Please help. I am using Win 7 32bit Here is what I have been playing with..... $Ok_Button452 = GUICtrlCreateButton("MY Jeopardy", 10, 90, 200, 25) GUICtrlSetOnEvent($Ok_Button452, "Ok_Button452") GUICtrlSetFont(-1, 8, 700, 1, "times new roman") Func Ok_Button452() _IECreate("serversubfolderMy Jeopardy.pps") ;Run(@comSpec & "/c start C:Program FilesMicrosoft OfficeOffice14powerpnt.exe", serversubfolderMy Jeopardy.ppst , @SW_MAXIMIZE) EndFunc ;==>Ok_Button452
  12. That did it. Thank you all so much for the assist. Tagging you all in my code for the help! Most Excellent!
  13. EndFunc took care of the gui not opening up. The If Then update is not kicking in the new info..
  14. Ok, I'm a total tool! Iplugged this in under the label, not getting any errors.....the GUI wont open but show is systray. Local $dif, $sec While 1 $sec = Round(TimerDiff($dif) / 1000, 2) If ($sec > 60) Then ; READ YOUR TEXT FILE, PROCESS IT, ETC...... ; ADD THE LABEL UPDATE HERE (like BrewManNH said...) GUICtrlSetData($Label_02, "Command Broadcast Information") EndIf Switch GUIGetMsg() Case $GUI_EVENT_CLOSE ExitLoop EndSwitch WEnd Any ideas?
  15. Here is the error I get in return. ==> "If" statements must have a "Then" keyword.: If ($sec > 60) ->18:26:09 AutoIt3.exe ended.rc:1 >Exit code: 1 Time: 0.586 Do i have to put then before the GuiCtrlSetData ?
×
×
  • Create New...