Customize quick access menu in ICQ6

Okay, I hope this is okay to post here, but I didn't want to register to an ICQ board just to post one small tip. If anyone who's already registered on some ICQ related forum reads this, pass it on.

I never use ICQ's sms/video/phone options, but I do like the quick access menu they added in ICQ6 that gives you access to common functions right from the contact list. I wanted to remove some of these shortcuts, in part because I never use them and in part because they push the "file transfer" shortcut into a "more" (arrow) menu, which means it's no longer quickly accessible. Anyway, after some digging around I found out it's easy to do.

In the ICQ6 installation folder go to services\icqApp\ver1\content\MUICore\ContactList and open the CLUserCommLine.box file in any text editor (notepad will do but something like editpad or notepadd++ is better). Actually back it up first just in case.

In the file find a block titled "icqUserCommLineToolbar". You will see a bunch of XML code, most of it is not important, what's important is the following section

Code: xml
  1. <box:aolImageButton id="IM" style="ToolbarButtonStyle"
  2. tooltip="&UserCommLine.tooltip.im;"
  3. iconNormal="#image.UserCommLineToolbar.IM-normal" />
  4. <box:aolImageButton id="SMS" style="ToolbarButtonStyle"
  5. tooltip="&UserCommLine.tooltip.sms;"
  6. iconNormal="#image.UserCommLineToolbar.SMS-normal" />
  7. <box:aolImageButton id="VOICE" style="ToolbarButtonStyle"
  8. tooltip="&UserCommLine.tooltip.voice;"
  9. iconNormal="#image.UserCommLineToolbar.VOICE-normal" />
  10. <box:aolImageButton id="VIDEO" style="ToolbarButtonStyle"
  11. tooltip="&UserCommLine.tooltip.video;"
  12. iconNormal="#image.UserCommLineToolbar.VIDEO-normal" />
  13. <box:aolImageButton id="PHONE" style="ToolbarButtonStyle"
  14. tooltip="&UserCommLine.tooltip.phone;"
  15. iconNormal="#image.UserCommLineToolbar.PHONE-normal" />
  16. <box:aolImageButton id="FILE" style="ToolbarButtonStyle"
  17. tooltip="&UserCommLine.tooltip.filetransfer;"
  18. iconNormal="#image.UserCommLineToolbar.FILE-normal" />


These are the six shortcuts you have there - send message, send sms, voice, video, call phone and file transfer. Each button is handled by the piece of code starting with '
1,669 views 0 replies