1. #1

    Macro message to self

    Hey guys, is it possible to send a message to self, to identify what is being pressed?

    A simple console message or floating message, not to go to other players. Thanks,

  2. #2
    Quote Originally Posted by yuze View Post
    Hey guys, is it possible to send a message to self, to identify what is being pressed?

    A simple console message or floating message, not to go to other players. Thanks,
    Sure,
    /run kffc=CreateFrame("Frame"); kffc:EnableKeyboard(true); local OnKeyDown = function(self, k) print(k) end; kffc:SetScript("OnKeyDown", OnKeyDown);kffc:SetPropagateKeyboardInput(true)
    To disable:

    /run kffc:EnableKeyboard(false);

  3. #3
    I mean, you could always do a /whispmer to your name in any macro. Can't you?

    Sounds less intrusive and achieves the same goal than writing a full script for a console frame.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •