Disable Text Changes (Bold, etc.)?

Hello, all!
After downloading the latest Skype update (5.1), I have encountered an issue with asterisks (*) now turning text bold. Within my circle of contacts, we use asterisk brackets to denote rather specific things, and this change causes quite a bit of confusion and a general sense of clutter/reading difficulty in what we are trying to discuss.
Is there any way to disable this feature? I've also noticed there is no option to disable smileys; could the ability to change these things be added, at some point?
Such options would be much appreciated by myself, my colleagues, and surely by many others, as I know such images and font types are not appealing in many professional communities.
Thank you for your time!

I use Skype to communicate with a distributed team and removing astericks make the product unusable for this purpose.  It's one thing when *OMG* and *LOL* turns into OMG and LOL but an entirely different thing when a comment in a snippet of code goes from /* This is a comment */ to / This is a comment /.
Any programmer would see this feature as so morally repugnant that they would likely choose to chew off their own leg before implementing and even if forced to do so at gun-point would have found a way to sneak in a configuration option to disable the atrocity.
The fact that this made it into the software with no discernible way to disable it means that the UI design team has to be in full control.  Oh, I how I weep for you programmers!  Have you really fallen so low!  Another app where influence has moved from programmers, who, you know, were the creators of the internet to UI designers who seem to be working in such a rarified atmosphere that the oxygen deprivation is generating tunnel vision and a euphoria that is being confused with having achieved design nirvana.
While I'm at it.  Thanks for removing any ability that I can see to resize where you enter a message.  It is truly awesome when working with a few hundred square inches of screen real estate to have to hit a quarter inch high piece of  the screen to type a quick message.  I doubt a robot assisted lacroscopic surgeon could do that reliably 8 out of 10 times.  Nothing better than when you want to kick off a quick comment.  Click, dang! Click, dang!  Click, click, click, click #!@!%.
Oh!  And lets make it 'screen size agnostic' so that when you chose to resize the application to the appropriate size of an IM app we remove all indicators as to where, exactly, the boundaries are on that precious half a square inch of screen real estate.  Instead, lets put a faint 'Type a message here' in a beautiful pale blue in a sea of pale blues.  My guess is that particular shade of pale blue is supposed to naturally draw the hand towards the right place to click simply due to the stunning 'blueness' of the text.  
But, what if we resize the app and hand over several hundred square inches of screen real estate to the app?  What do we get for handing over a decadant amount of screen resolution?  A glourious pixel(!) wide blue boundary around our message box that is still a quarter in tall along with an arrow that allows you to 'send' the message in case you are suffering on a keyboard where some errant lint has disabled the return key.
Okay, I get it!  Everybody is designing now for the next generation that believes that the internet can only be accessed through a smart phone and is 'confused' by too many options.  But, you know, for the generation that actually pays for those smart phones and may have the money and buy multiple computing devices and the moral fortitude to make choices can you please make it possible for me to set my astericks and mesage boxes free?
Version 6.22.81.105

Similar Messages

  • How can I change font, make it bold, etc. in a new message?

    I'm using TB 31.5.0. When composing a new HTML message, I'm not seeing a way to easily change fonts, font size, bold, etc. I have "compose messages in HTML format" checked. My wife says she thinks this feature used to be there in earlier versions of TB.
    Thanks,
    Thom

    Perfect! Thank you so much!
    ''thomprice [[#question-1049880|said]]''
    <blockquote>
    I'm using TB 31.5.0. When composing a new HTML message, I'm not seeing a way to easily change fonts, font size, bold, etc. I have "compose messages in HTML format" checked. My wife says she thinks this feature used to be there in earlier versions of TB.
    Thanks,
    Thom
    </blockquote>

  • Gray out or disable text box

    Hi,
         I have a drop down menu called CN_Entry_Initials that has options of a "C" or an "N". I also have a text box called Part_Number to enter a part number into. I want the Part Number text box to be grayed out or disabled until either a "C" or an "N" has been chosen out of the CN_Entry_Initials drop down menu. I have this working, except that I cannot get the Add button to do anything. I think it’s something to do with the way I have the If statement for this disabled text box, or do I have to change the button to a submit button. Does anyone know how to fix this? Below is the javascript and the drop down menu and text box code along with the Add or submit button. There is extra stuff in the Javascript that I have on the page, but I don't need to worry about those things since they are working correctly. I have the disabled text box code at the top of the javascript under the function verify() code. Thanks.
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Original:  Wayne Nolting ([email protected]) -->
    <!-- This script and many more are available free online at -->
    <!-- Begin
    function verify()
    if (document.getElementById('CN_Entry_Initials').value == "C"
    || document.getElementById('CN_Entry_Initials').value == "N")
        document.getElementById('Part_Number').disabled = false;
    else
        document.getElementById('Part_Number').disabled = true;
    var PartNum=document.AddECNumber.Part_Number.value;
    var regularExpression = new RegExp(/[cC][0-9]/); //regular expression to check for a letter C followed by a number
    if(regularExpression.test(PartNum)&& document.AddECNumber.CN_Entry_Initials.value == "N" && document.AddECNumber.Validation_Qty.value == "") { //this will return true if the input passes the regular expression
    alert("Enter a Validation Quantity for this new Custom");
    else if(document.AddECNumber.CN_Entry_Initials.value == "N" && document.AddECNumber.P_Drive_Docs_Initials.value == "i") { //this will return true if the input passes the regular expression
    alert("You cannot select 'i' for docs to be removed for a new part");
    else if(document.AddECNumber.CN_Entry_Initials.value == ""  && document.AddECNumber.SW_Model_Only.value == "0") { //this will return true if the input passes the regular expression
    alert("ECO type required - Select (N)ew or (C)hange for eco line item");
    else if(document.AddECNumber.PNR_BOM_Change_Only.value == "1" && document.AddECNumber.CN_Entry_Initials.value != "C" && (document.AddECNumber.Release_Status_Initials.value == "U"
    || document.AddECNumber.Release_Status_Initials.value == "N")) { //this will return true if the input passes the regular expression
    alert("ECO type required - Select (C)hange for eco line item and Select N for Release Status if PNR/BOM Change Only is yes");
    else if(document.AddECNumber.PNR_BOM_Change_Only.value == "1" && document.AddECNumber.CN_Entry_Initials.value == "C" && document.AddECNumber.Release_Status_Initials.value == "U") { //this will return true if the input passes the regular expression
    alert("ECO type required - Select (C)hange for eco line item and Select N for Release Status if PNR/BOM Change Only is yes");
    else if(document.AddECNumber.Doc_Changes_Only.value == "1" && document.AddECNumber.CN_Entry_Initials.value != "C") { //this will return true if the input passes the regular expression
    alert("ECO type required - Select (C)hange for eco line item since Doc Changes Only is yes");
    <!--- else if (document.AddECNumber.P_Drive_Docs_Initials.value == "i")
    // self.location='eco_search.cfm'; --->
    else
    document.AddECNumber.submit();
    //  End -->
    </script>
    <cfform name="AddECNumber" action="add_new_ec_number_action.cfm" method="post">
    <tr>
    <td class="edit" align="right">Change or new entry:</td>
    <td>
              <select name="CN_Entry_Initials" id="CN_Entry_Initials" onchange="verify();">
                <option value="">Select</option>
    <!--------- POPULATE SELECT BOX WITH P_Drive_Docs_Initials FIELDS --------->
                <CFOUTPUT QUERY="ShowCNEntryInitials">
                <option value="#CN_Entry_Initials#">#CN_Entry_Initials#
                </CFOUTPUT>
              </select>
    </td>
    </tr>
    <tr>
    <td class="edit" align="right" valign="middle">Part Number:<br><h6>(Limit to 25 characters)</h6></td>
    <td><input type="text" name="Part_Number" id="Part_Number" maxlength="25" size="27" disabled="disabled"></td>
    <td><textarea name="Description" cols="30" rows="3"></textarea></td>
    </tr>
    <input type="button" value="Add" onclick="verify();">
    </cfform>
    Thanks.
    Andy

    I don't understand about using the alert box to output the variables. I know that everything was working with alert boxes, etc. before I added the code for the disable text box code. The difference I see is on the disable text box code I use document.getElementById and on the other code I use document.AddECNumber. Could this cause the Add button to not work? If so, how do I change this code to make it work? I tried just changing it be like the document.AddECNumber code, but that didn't work.
    Andy

  • Blocking long text change if open PR and open PO found for material

    Dear SAP MM Gurus,
    Our client is having one requirement. Their requirement is like this,
    If there is any open PR, PO, contract etc. for a material ,  system should not allow to change the long text of the material.
    Is there any way out. Any user exit or BADi, which will trigger on the long text change of material master then please let me know.
    Thanking you.
    With Regards,
    Mihir

    Dear SAP MM Gurus,
    Our client is having one requirement. Their requirement is like this,
    If there is any open PR, PO, contract etc. for a material ,  system should not allow to change the long text of the material.
    Is there any way out. Any user exit or BADi, which will trigger on the long text change of material master then please let me know.
    Thanking you.
    With Regards,
    Mihir

  • When I save a Word 2010 doc as a pdf file, it opens up in Adobe Reader as a blank page, no text, no background etc.

    When I save a Word 2010 doc as a pdf file, it opens up in Adobe Reader as a blank page, no text, no background etc.  I am logged on as the Administrator, running Windows 7, using Microsoft Home and Business 2010.

    You were right, it was a Microsoft problem.
    I got it...I am now able to save a Word 2010 document as a pdf file.  Here is what I did/found:
    In Word, go to File, Options, Display and make sure that "Print drawing created in word" is CHECKED.
    Mine was unchecked and when I checked it everything came back and is working as it did before.  The only thing I can think of is that a Microsoft Update may have changed this selection...I know I DID NOT make any changes in the options.
    One other thing I noticed in my saved documents folders was that a lot of my files showed up as PDF's and would still not open until I selected one and told it to default to open as a word document and then they all changed back and I was able to open them in word again.
    I hope this helps others out there.

  • Is there any option to display selection screen text in bold or big font?

    Hi all,
    Is there any option to display selection screen text in bold letters or with increase font size?
    Thanks n Regards

    Hi,
    Just give atry in this way..
    open the same program ans selection-screen screen no will be 1000 in se51 screen painter,
    go to properties of the texts u want to change then go to display tab and check the checkbox bright.
    it may or may not work but this will work in module pool .
    just give a try...
    Regards,
    Suresh.

  • Why does text appear bold when published?

    My entire web site suffers from text that appears bold when I publish. I have followed various other threads, changed typefaces, put in returns and tried a variety of "tricks" and although some people appear to have fixed it, there is no universal fix that I can find. Has anyone else had any luck solving this? It ***** because it makes the whole page look rather unprofessional. www.brain-storm.com is the site.
    Thanks

    This problem occurred last night to me as well. I've been using iWeb for a couple of months with no problem. I added a blog entry and some photos last night and then published. When I checked out the site all of my text was bolded.
    I'm new to Macs and iWeb so I struggled for hours last night and this morning to correct it. No luck.
    Any ideas someone can suggest would be huge.

  • Cannot change Bold to Normal in HTMLEditorKit

    We have a JTextPane based HTML editor which use HTMLEditorKit. Once we mark some text as bold the HTML formed contains the <b>....</b> tag correctly. But opening the document next time, even if we remove the bold attribute from characters and even if they appear as Normal on screen of JTextPane... the HTML formed still contains the <b>...</b> tags. Those are not removed. So text once turned bold cannot be turned back to Normal.
    Please help.

    We use JDK 1.3.1.
    Actually what we do is..
    Action aBold = new StyledEditorKit.BoldAction();//define action
    aBold.putValue(Action.NAME, "Bold");//is this needed??
    tbtnBold = new JToggleButton((Action)aBold); //associate action with a toggle button
    //add a listener to the button.. a listener again !! why? I'm not sure. This listener toggles the bBoldFlag as required.
    tbtnBold.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e)
    if(bBoldFlag)
    bBoldFlag = false;
    else
    bBoldFlag = true;
    // from other part of code where attributes of selected text needs to be changed as a "format font" dialog box... the bBoldFlag is checked to decide whether text should be bold or normal. like....
    if(bBoldFlag)
    StyleConstants.setBold(aSimpleAttributeSet,true);
    else
    StyleConstants.setBold(aSimpleAttributeSet,false);
    This code was developed by previous developer. So its getting tough for me to justify each part of code. Thanks for your help... in advance.

  • Disable or change exit command key

    Is there any way to disable or change the exit command key (Cmd Q).  It is too close on the keyboard to  Cmd A?

    I resolved a work around by setting a screen capture program to grab the Cmd-Q before Safari sees it.  Much better than losing work done in a text box and then having the browser close while trying to save the work to the clipboard and accidentally hitting Cmd-Q.

  • How can I disable the change of color when changing background in ios7?

    how can I disable the change of color when changing background in ios7?

    For txt messages you can change the option of whether previews are shown (Settings >> Messages >> Show Preview Toggle). Switching this "Off" will still show a notification of a missed txt message, but it will not show text from the message itself.
    Unfortunately, similar functionality does not currently exist for phone calls; however, the new iOS release (scheduled for September, I think rumor has it) will revamp the way notifications are handled, and there maybe an elegant solution for you then.

  • Warning: Full-text change tracking is currently enabled for table or indexed view 'fim.ObjectValueString'

    Hi,
    As per the FIM best practice guide, we are trying to disable full-text indexing on the FIM Service database, during the initial load using:
    ALTER FULLTEXT INDEX ON [fim].[ObjectValueString] SET CHANGE_TRACKING = MANUAL
    ALTER FULLTEXT INDEX ON [fim].[ObjectValueXml] SET CHANGE_TRACKING = MANUAL
    However, we get the following warning:
    Warning: Full-text change tracking is currently enabled for table or indexed view 'fim.ObjectValueString'
    Does anyone know how we can solve this?
    Regards,
    SK

    <Going through old threads>
    This doesn't disable change tracking it merely sets it to manual.
    The link below shows and explains the three settings (enabled, manual and disabled):
    http://technet.microsoft.com/en-us/library/ms187025(v=sql.105).aspx
    David Lundell, Get your copy of FIM Best Practices Volume 1 http://blog.ilmbestpractices.com/2010/08/book-is-here-fim-best-practices-volume.html

  • JCheckBox Disabled Text Color

    Hello,
    I realize this is probably an old and rather tired question, but,
    I have run into an interface application where 'GREY' disabled text
    is not such a good idea.
    Is there a way to change the disabled behavior of a JCheckBox
    to make the disabled text something other than grey?
    Thanks for any insight.
    Peter

    Try adding this before you create any JCheckBoxes and it will change it for all of them:
    UIManager.put("CheckBox.disabledText", myCustomColor)

  • Disabled color change...

    Hello everybody,
    this is my first comment here because for all other problems I found solution without registration
    Anyway I was looking how to disabled color change (just some part of sentence) which should be highlighted, example is right here (it's part of topics in rpg game):
    Tell me some rumours
    I killed the dragon (quest)
    Goodbye
    In the init. state text "I killed the dragon" is black and text "(quest)" is yellow. Highlight color is red :
    mc_Topics.mc_topic0.tField.textColor = 0xb21d22; // init. state highlight first topic
    Now if I want highlight sentence with "(quest)" it's make this (simple) :
    mc_Topics["mc_topic" + Index].tField.textColor = 0xb21d22;
    but it will highlight of course all sentence by red color even if I want to quest word stay yellow.
    I know I can make it somehow like this for highlight :
    mc_Topics["mc_topic" + index].tField.html = true;
    mc_Topics["mc_topic" + index].tField.htmlText = lowerCase + "<FONT COLOR = '#695f49'><FONT SIZE = '24'>" + quest + "</FONT></FONT>";
    But problem is that in function where I'm setting highlight I dont know variables for text (lowerCase) and quest (there can different text).
    Thanks for any suggestion : )
    Adam

    Yes you right I didn't realize that I can still get them from array. It's little complicated as it is time-input from game anyway it seems that it's solution. Thanks

  • Disabled Text in Metal Check/Radio boxes

    I noticed that the paint method in MetalRadioButtonUI does not get its disabled text color from UIManager("RadioButton.disabledText") OR from getDisabledText(). Why not? or, am I mistaken? It's causing me a lot of trouble to change the disabled text color... Is there a way to change it?
    Joel

    Hi Sean
    In addition to what jbradley88 offered, there is one other
    factor that could be at play here.
    Do the captions look okay on some PCs and not on others? If
    so, it could point to an issue with the DPI settings for the PC. If
    this is the case, you will want to perform the following steps on
    the PCs where this is an issue.
    * Display the Windows Desktop (Easily done by pressing the
    Windows key and the D key together)
    * Right-click the Windows Desktop and choose Properties from
    the context menu
    * Click the Settings tab
    * Click the Advanced button
    * Click the General tab
    See the drop-down labeled DPI setting? If that is set to 120,
    try setting to 96 and see if things improve.
    This may not be what is at play, but I've seen it have an
    impact on other display issues.
    Cheers all... Rick

  • How to Print a text in bold format in a classic report ??

    How to Print a text in bold format in a classic report ??

    hi
    u can use
    <b>FORMAT  INTENSIFIED ON.</b>
    regards
    ravish
    reward if useful

Maybe you are looking for

  • Error occurred in deployment step 'Activate Features'

    I have created an Empty SharePoint Project in Visual Studio 2010 and added a Web Part. The scope for my feature is set to "Site". My "Active deployment configuration" is set to Default. When I click Deploy in the context menu of the project in Visual

  • Cannot run camtasia studio 6 in firefox but will run in IE and Chrome.

    I am trying to view a camtasia studio 6 video file and it will not run. It runs fine in IE and Chrome!

  • How to Retrieve VARIABLE VALUES in an Email Definition Form?

    Hi, I have created an email definition. I am getting email notifications on pwd expiry, but I am not able to get the values of the variables that I selected under target & variables part of the form. for eg. I have been getting emails in the followin

  • 50027: Invalid format mask for given datatype.

    hi , i have a non database Number Item maximum length is 8 when i try to put NNNNNNNN0.99 as a format mask i got the following error 50027: Invalid format mask for given datatype. i want this field to view it's value Such as 0.55when there is no inte

  • WLC OID (snmp) for authenticated clients

    I know the OID for associated users 1.3.6.1.4.1.14179.2.1.1.1.38. But is there one for Authenticated clients? I am looking for the numbers similar to the one I can get from the report tools in WCS. I think the number of authenticated clients is a bet