John117 Posted July 18, 2007 Posted July 18, 2007 (edited) I know how to use a string replace on a GUI box such as: StringReplace(GUICtrlRead($Edit1), @CRLF, " ") -this replaces @CRLF with a spaceBut am not sure how to string replace the return of:$MessageR &= $objEvent.Message it contains "Application popup" as the beginning of the return for $objectEvent.Message -I would like to replace that with ""I can't seem to get it right . . . Edited July 18, 2007 by Hatcheda
PsaltyDS Posted July 18, 2007 Posted July 18, 2007 I know how to use a string replace on a GUI box such as: StringReplace(GUICtrlRead($Edit1), @CRLF, " ") -this replaces @CRLF with a space But am not sure how to string replace the return of: $MessageR &= $objEvent.Message it contains "Application popup" as the beginning of the return for $objectEvent.Message -I would like to replace that with "" I can't seem to get it right . . . We're not done with this YET?! $MessageR &= StringReplace($objEvent.Message, "Application popup", "") Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
John117 Posted July 18, 2007 Author Posted July 18, 2007 Crap! that looks like the first thing I tried! But it works! I didn't want to bug you on this one! Thought I might stop short of you writing the whole thing! Thanks!
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