Search the Community
Showing results for tags 'ClipPut'.
-
Hello, still learning and trying to understand AutoIT but having problem in filling my PDF file. So my code looks like similar to this: Global $1 = "text text 44444444" Global $2 = "texting2 texting2" Global $3 = "newtext3 next3" ShellExecute ("C:\Users\XXX\Desktop\myPDF.pdf")...
-
Hi i'm trying to create a ClipPut with differents font size and font and then paste it into word document. I know in Word document, i can send("^+P") and change the font size, but it's not then best way to do if i have to change the font and size many time in the document. ShellExecute...
-
Multiple Line Expression with @CRLF
SkysLastChance posted a topic in AutoIt General Help and Support
What am I doing wrong here. I am trying to get a list of names in the clip that look like Bob Greg James Kevin Etc... I have tried ClipPut("Bob" & @CRLF & "Greg" & @CRLF & "James" & @CRLF & "Kevin" & @CRLF & "Tim" & @CRLF & "Kelly" & @CRLF & _ "Susan"_& @CRLF... -
Hi, from other postings here as a start I'm quite Close to my Goal of putting formatted text to the clipboard: #include-once #include <GUIConstantsEx.au3> #include <GuiRichEdit.au3> #include <WindowsConstants.au3> Global $g_idLblMsg, $g_hRichEdit Example("The first text will be formatted...
-
- guictrlrichedit
- clipput
-
(and 2 more)
Tagged with:
-
Run("notepad.exe") GLOBAL $One = ('Line1' & _ 'Line2' & _ 'Line3' & _ 'Line4' & _ 'Line5') ClipPut($One) $Notepad = WinWait("[CLASS:Notepad]", "", 10) ControlSend("Untitled - Notepad", "", "", ("^v")) Instead of having this paste as Line1Line2Line3Line4Line5 How can I make...
- 4 replies
-
- notepad
- controlsend
-
(and 1 more)
Tagged with:
-
Hi, So im using ClipPut ( "value" ) to copy a value to my clipboard. It works all the time at the moment, and i have in if statement to show one message box if successful, and another if it fails. Has anyone got any suggestions on how to make it fail on purpose, eg: lock windows clip...
-
Hi... How to put data to clipboard in all available formats? I use _ClipBoard_GetData to save all formats data to files but when I try to put them again to clipboard using _ClipBoard_SetData, I have available only the last data format which I used. After that when I try put this data to "Microso...
-
Hi all, I've been copying a lot of text from PDF files and other documents. Problem is, this text appears badly mangled when pasted again, causing formatting issues. I've been trying to write a script that would automatically reformat the copied string: #include <Clipboard.au3> #include <Misc.au3...