From WikiChip
$cb Identifier - mIRC
< mirc‎ | identifiers
Revision as of 23:22, 30 October 2017 by Ouims (talk | contribs) (Parameters)

The $cb identifier allows mIRC to return the contents of the Windows Clipboard.


Synopsis

$cb[(N,[u])[.len]]

Parameters

  • N - The Nth item in the clipboard to retrieve specific data for
  • u - Return the text decoded to utf8

Properties

len Returns length information regarding clipboard items

Example

Echo clipboard contents to the active window:

//echo -a $cb

Echo the total number of clipboard entires to the active window:

//echo -a $cb(0)

Create a custom alias that will open a custom window @myWindow, and then echo all clipboard line contents to it:

; Use: /cblist
alias cblist {
 
  ; Open the window, and clear it just in case it was already opened
  window @myWindow
  clear @myWindow
 
  ; Set the %i, our counting variable, to the start value of 1, and
  ; set the %x variable to the amount of lines in the clipboard
  var %i = 1, %x = $cb(0)
 
  ; Loop until %x has gone through all clipboard contents
  while (%i <= %x) {
    echo @myWindow $cb(%i)
    inc %i
  }
  echo @myWindow Clipboard contents finished!
}

Compatibility

Added: mIRC v6.2
Added on: 28 Jul 2006
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


See Also

[Expand]
v · d · e mIRC identifier list