View Single Post
11-04-15, 11:52 AM   #4
MunkDev
A Scalebane Royal Guard
 
MunkDev's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2015
Posts: 431
Question

Going to keep using this thread for pattern questions.

How can I remove texture sequences from a string?

How do I turn this:
Lua Code:
  1. HELP_OPTIONS_MOVED = "|TInterface\\OptionsFrame\\UI-OptionsFrame-NewFeatureIcon:0:0:0:-1|t  Colorblind and Move Pad options have been moved to the Accessibility section.";
  2. NPE_MAPCALLOUTBASE = "|TInterface\\WorldMap\\WorldMapArrow:28:28|t marks your location.\n\n";

...into this:
Lua Code:
  1. HELP_OPTIONS_MOVED = "  Colorblind and Move Pad options have been moved to the Accessibility section.";
  2. NPE_MAPCALLOUTBASE = " marks your location.\n\n";
__________________

Last edited by MunkDev : 11-04-15 at 11:55 AM.
  Reply With Quote