Posted to tcl by patthoyts at Thu Sep 14 22:23:51 GMT 2006view raw

  1.  
  2. proc ::tkjabber::away { status {show away} } {
  3. variable AwayStatus
  4. variable conference
  5.  
  6. set AwayStatus $status
  7. set jid $conference/[$tkjabber::muc mynick $conference]
  8. $tkjabber::jabber send_presence -type available \
  9. -from $jid -to $conference -show $show -status $status
  10. autoStatus
  11. }
  12.  
  13.