2866
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Why not make an invisible button with enter as an accelerator that inserts <br> into the app? With the sinkAllKeyEvents thing?
This actually won't work because the only accelerator that works when a GUITextEditCtrl is active, is the escape key. sinkAllKeyEvents has no effect on this.
- Use a hidden GUI element with "enter" as the accelerator to replace newline breaks with <br> instead. (?)
%specChar = ".,:;-_+`\"'?*=><[]{}()%^~@#$%\\/|";
for(%c=0; %c<strLen(%text); %c++)
{
%replace = false;
for(%d=0; %d<strLen(%specChar); %d++)
{
if(getSubStr(%text,%c,1) $= getSubStr(%specChar,%d,1))
%replace = true;
}
if(%replace)
%tempText = %tempText @ " ";
else
%tempText = %tempText @ getSubStr(%text,%c,1);
}
%tempText = stripChars(%text, ".,:;-_+`\"'?*=><[]{}()%^~@#$%\\/|");
Oh, I think I gave you the same link I gave to the testers, with only the client-side files. Sorry, I'll send both you and Furling the new files shortly.Cool beans.
found a solution to the "newline" issue I messaged you about before (the form now just notifies players to use <br> instead);I'm still not too sure what the problem was with new lines. Did it cut some of the text off? Did the new lines just not appear?
updated the MAC support to include the new or deleted files. We will need to double check the MAC support though as I'm not too familiar with it.What do you mean? You shouldn't have to do anything different for Macs.
Also, I wasn't able to resolve the issue with refreshing the apps list on dedicated servers, but that's too crucial to fix.We can always just figure that out later and fix it in version two.
Anniversary silly gooseBecause I keep note of when that is.
Wait one month and two days then ask again.Why one month and two days?...
Well the default size of the text controls is perfect for what we're doing.Still don't see why. What's wrong with changing the extent?