Search found 3455 matches

by JRL
Mon Nov 28, 2005 8:23 pm
Forum: Technical / Scripting
Topic: SMTPSendMail Priority
Replies: 2
Views: 4373

SMTPSendMail Priority

All,

I see that after sending an email message using SMTPSendMail, there is an X-Priority: 3 line in the header of the received message. Is there any way of setting the priority of the outgoing email?

Thanks for any help,
Dick
by JRL
Sat Nov 26, 2005 6:06 am
Forum: Technical / Scripting
Topic: line continuation in the editor
Replies: 3
Views: 4964

If I'm understanding you correctly, set your text to variables then use the variables as the command. These are not long but the technique is the same:

Let>first=cmd /c
Let>second= dir c:\
Let>third= /s /b
Run>%first%%second%%third%

Hope this was what you were looking for,
Dick
by JRL
Sat Nov 26, 2005 2:37 am
Forum: Technical / Scripting
Topic: unexpected characters
Replies: 4
Views: 5343

If this is a Windows XP computer check the accessability options and make sure that StickyKeys isn't turned on. Another possibility is that one of the shift keys actually sticks down. I've thrown away several keyboards that with time (and maybe some spilled cola) have developed keys that stick when ...
by JRL
Fri Nov 25, 2005 4:14 am
Forum: Technical / Scripting
Topic: unexpected characters
Replies: 4
Views: 5343

Perhaps a "Shift " pressed with no "Release"?

Just a thought.
by JRL
Thu Nov 17, 2005 6:14 am
Forum: Technical / Scripting
Topic: replace character in line
Replies: 4
Views: 5277

StringReplace>sourcestring,find,replace,newstring
by JRL
Wed Nov 16, 2005 11:00 pm
Forum: Technical / Scripting
Topic: Get files, zip files, then email files script
Replies: 6
Views: 7544

CyberCitizen, I thought the same thing regarding the semicolon at the end. Earlier today I tested it and sent an attachment having a trailing semicolon with no problem. But otherwise, I don't see anything wrong with the script as posted. I don't have WinZip so I haven't tested it Sorry, no help here.
by JRL
Wed Nov 16, 2005 10:36 pm
Forum: Enhancement Suggestions
Topic: cc or bcc with smtpsendmail
Replies: 5
Views: 11739

I've been using SMTPSendMail for a couple of years sending to multiple addresses using commas as the delimiter between email addresses. I define a variable "recip" and put it in the SMTPSendMail line. I think that SMTP requires addresses to be delimited by commas, regardless of whether the email is ...
by JRL
Wed Nov 16, 2005 10:09 pm
Forum: Technical / Scripting
Topic: Using other than ascii keys in DOS window
Replies: 5
Views: 6187

This works for me using Windows XP. Paste the following into a new macro, make sure you remove any trailing spaces. Assign the macro a hotkey. Open a fresh DOS window. Make sure that it has focus ( that it is the foreground window) Then execute the script by using the hotkey (mine was set to CTRL + ...
by JRL
Wed Nov 16, 2005 5:28 pm
Forum: Beginners
Topic: trying to stop script
Replies: 9
Views: 9838

You are calling a subroutine. A subroutine processes then returns you to the point in the script where it was called and the script continues processing from there. Maybe error3 should be a label instead of a subroutine (srt). Within error3 you could have your message followed by a line that goes to...
by JRL
Wed Nov 16, 2005 3:36 pm
Forum: Beginners
Topic: Counter Problem
Replies: 9
Views: 9612

Removed the percents as I mentioned before and moved teh ResetDialogAction line to after the the same changed lines. Try this: let>k=0 let>count=0 Dialog>MyDialog Caption=This is My Dialog Width=304 Height=121 Top=225 Left=339 Label=Type Something Here:,5,5 Edit=MyEdit,5,22,230,Type Something Here a...
by JRL
Wed Nov 16, 2005 6:19 am
Forum: Beginners
Topic: Counter Problem
Replies: 9
Views: 9612

I'm not sure what you want to do but the two Let statements where you are setting "count" and "k" to the values defined by the dialog are incorrect. Don't use percents on the variable that you are defining. The two lines now look like this: Let>%MyDialog.msEdit1%=k and Let>%MyDialog.myEdit2%=count T...
by JRL
Wed Nov 16, 2005 5:51 am
Forum: Technical / Scripting
Topic: Using other than ascii keys in DOS window
Replies: 5
Views: 6187

If I'm understanding you correctly, the "Press" function is what you're looking for.

Press Enter for a carriage return

Press Up
Press Down
Press Left
Press Right
for arrow keys

Press Page Up
Press Page Down


Hope this is helpful,
Dick
by JRL
Fri Nov 11, 2005 11:25 pm
Forum: General Discussion
Topic: Screensaver Enable/Disable
Replies: 4
Views: 9113

Actually, I don't think the method you're employing is the same thing. I think your method is turning the screensaver on or off just as if it was done manually. The difference being that even if the screensaver is turned on, Macro Scheduler is designed to prevent it from invoking while a script is r...
by JRL
Fri Nov 11, 2005 8:27 pm
Forum: General Discussion
Topic: Screensaver Enable/Disable
Replies: 4
Views: 9113

Screensaver Enable/Disable

Screensaver Enable/Disable I was having a problem with a script that has a dialog that remains open perpetually. If the script was running, the screensaver would not come on. In my mind there's only one reason to use a screensaver and that's for the security provided by password protection. Obviousl...
by JRL
Mon Oct 31, 2005 10:45 pm
Forum: Beginners
Topic: How to open a folder?
Replies: 2
Views: 5996

If I'm understanding your question correctly the Run Program function should do the trick.

Run Program>Explorer.exe D:\www\sites......

You might have to enter the path for Explorer.exe

Hope this helps,
Dick
Sign up to our newsletter for free automation tips, tricks & discounts