I can not get ℠ 'sm' service mark code to work in my title bar

Hello everyone,
I want to be able to place 'sm' superscripted next to a company name in a website's title bar. Apparently the ℠ does not work in all cases...especially mine. Everyone else seems to have great luck.
Graciously, Nadia offered this code for me to try:
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html  xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta  http-equiv="Content-Type" content="text/html; charset=utf-8"  />
<title>Company Name  &#8480;</title>
</head>
but alas, it didn't work for me. My version of DW8 sets up the doctype with charset=iso-8859-1. I figured that was my proble, but changing this to utf-8 has made no difference. All I get is a small white box next to the company name. Firefox, IE6 both do the same thing.
Any suggestions?
Many thanks in advance.
Cheers,
wordman

Have you looked at the Java Tutorial?
JComboBox example:
http://java.sun.com/docs/books/tutorial/uiswing/components/combobox.html
There are a lot of other good examples and descriptions in the Java Tutorial.
http://java.sun.com/docs/books/tutorial
With your panel, just use add(aComponent) without the second parameter null.

Similar Messages

  • I have Adobe Photoshop Elements 10. It came installed on my HP Desktop. I am can not get the warp text tool to work. It has worked in the past. Once I click warp text, the little window does not pop up, and if I try to do anything else after I click warp

    I have Adobe Photoshop Elements 10. It came installed on my HP Desktop. I am can not get the warp text tool to work. It has worked in the past. Once I click warp text, the little window does not pop up, and if I try to do anything else after I click warp text, it wont let me. Just sounds the ding, alert, can still slightly navigate the program but can not use any other tools after clicking warp text. I just have to open task manager and close the program. not sure if I'm doing something wrong or maybe I just need to uninstall and re install. Having trouble finding out how to uninstall and reinstall because the program came pre installed on my desktop.

    It actually sounds like the warp text window is opening off screen.
    Resetting the photoshop elements 10 preferences should fix it.
    *Press and hold the Shift+Ctrl+Alt keys just after you start the launch of the photoshop elements 10 editor
    *Keep holding the keys down until you get a dialog asking if you want to delete the adobe photoshop elements setting file
    *Press Yes

  • I am trying to import my cd's onto itunes on a new macbook pro. i can import the cd fine but can not get track names or album art work. after going into advanced it is just coming up with "CDDB information not available"

    i can import the cd fine but can not get track names or album art work. after going into advanced it is just coming up with "CDDB information not available"
    thank you

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • I can not get the download for indesign to work

    I can not get the download for indesign to work.

    Perhaps this Adobe Help document may help you:
    http://helpx.adobe.com/creative-suite/kb/download-install-trials.html?t2

  • HT4623 i am an iphone user and i just tried to download theiso6 to my phone and now i can not get no service to my phone. i only can get a message that tells me to connect to itunes too activate but when i try that it says that i have no service.i am a si

    i need help with my iphone activation. after installing ios6 i can not use my phone. it says no service i use a sim card from the bahamas please tell me how i can get this problem solved

    Has your iPhone been jailbroken or modified to work with
    other than the original wireless carrier?

  • I can't get this piece of code to work.

    Hello everybody!
    I am using AS2 and I am trying to make a simple 'game' for an assignment for school.
    I am first trying to make a simplified version of the game, to get some experience before I make the final version.
    I will try to explain this simplified version:
    The player has to drag an object in a big square and then release it. The object resamples 20 liter water. In total the player has to drag 100 liter water to the square, so it has to drag and drop the 'water' object 5 times.
    I want some text in screen that says: You still need ... liters of water.
    The ... is a dynamic text field with the name 'liters'.
    To help myself I made a counter that counts how many times the water is dragged and dropped.
    This is the code I placed in the 'water' movieclip:
    <code>
    onClipEvent(load)
    var countWater = 0;
    _root.createTextField("watercount",1,500,100,100,40); //this is the counter I was talking about
    _root.watercount.text = countWater;
    var literWater;
    on(press)
    startDrag(this);
    on(release)
    stopDrag();
    if(this._droptarget == "/watertarget"){ //watertarget is the box the waterobject has to be placed in
    this._x = 150;
    this._y = 300;
    countWater++;
    _root.watercount.text = countWater;
    literWater = (100 - (20 * countWater)); //I thought this should work. For example if countWater is 1, literWater schould be 100 - 20*1 = 80.
    _root.liters.text = literWater;
    } else
    this._x = 150;
    this._y = 300;
    </code>
    But this for some reason doesn't work. Before I drop the waterobject in the box, the text displayed is 'lev' and after I drop the waterobject, '0' is displayed, instead of 80.
    The counter does actually works well. It counts 0, 1, 2, 3, 4, 5, etc.
    So I figured there is probably something wrong in one of these 2 lines:
    literWater = (100 - (20 * countWater));
    _root.liters.text = literWater;
    Could someone please help me out with this? I would really appreciate it!
    By the way, I'm quitte new to AS, so it could be some newby mistake.
    Message was edited by: rickbreda1

    I would be most suspscious of your liters textfield not being named properly.  If I recreate what would support your code it works fine for me.
    Why don't you try creating it the same way do the watercount textfield just to see if it is working correctly.  I've been assuming there is only one water movieclip that you use over and over again.  If not, then you should get take the on(clipEvent) code off of it and just put that code in the timeline, less the on(clipEvent) part of it.
    Actually, placing any code on objects is not a good practice.  You should assign instance names to all your objects and then place the code in the timeline, using the instance names to target them.  If you give your "water" movieclip that name, your code in the timeline would end up looking like...
    var countWater = 0;
    _root.createTextField("watercount",1,500,100,100,40);
    _root.watercount.text = countWater;
    var literWater;
    water.onPress = function(){
        startDrag(this);
    water.onRelease = function(){
       stopDrag();
       if(this._droptarget == "/watertarget"){
            countWater++;
            _root.watercount.text = countWater;
           literWater = (100 - (20 * countWater));_root.liters.text = literWater;
       this._x = 150; // no need to have an else if it only does part of what the if does
       this._y = 300;
    As far as placing code into posts goes,  I usually just paste it (Ctrl-v) and then do what I can to make it look properly indented.  Others will use the >> tool offered in the editing interface to enter an area for code.  As far as having tags for code, I don't think that is supported any longer.

  • I can not get the oil paint filter to work in photoshop CC

    Can anyone help me with getting the oil paint filter to work in photoshop CC. I have a high end gaming card for video but it still does not seem to be available. Help. please!

    You must be running Photoshop CC 2014.
    The Oil Paint Filter was present in Photoshop CC but removed in CC 2014
    Photoshop: Spring Cleaning | PHOTOSHOP.COM BLOG
    Photoshop Help | New features summary
    As a Cloud member you can still keep CC installed for when you need the Oil Paint filter.

  • I can not get my spot removal tool to work at all!!

    I have tried numerous times to get my spot removal tool to work; without success.   I have read tons about it and nothing works.  What is going on?? Neither clone nor heal does anything!
    I am very frustrated with Lightroom 3!
    tc

    Two things to check.

  • No Comcast TV service since July 4, can not get a service person, today is July 25.

    moved to the appropriate forum

    I am escalating your post to the forum administrator. An official employee will reply. Please check back every once in a while for a reply by one of them.
    Mention this to them but do not be surprised if whoever you talk to has no clue what your are talking about.
    Except in situations beyond its control, the cable operator must begin working on a service interruption no later than 24 hours after being notified of the problem. A service interruption has occurred if picture or sound on one or more channels has been lost.
    https://www.fcc.gov/encyclopedia/evolution-cable-television#sec11
     

  • Can not get Samsung 22" LED TV to work with Mac Mini (2009), 'No Signal' message. any suggestions?

    I've just purchased a Samsung 5000series 22" LED TV to use with my Mac Mini (2009). I'm connecting using VGA with VGA adapter to MacMini. The TV is reading an error message saying there's no signal. Already tried with a 32" LG and it worked, as well as with a Dell moniter but can't seem to get this Samsung to work... PLEASE HELP!!

    That is not totally true. Instead of using an analog VGA connection, try using a Mini DisplayPort to HDMI Adapter and HDMI cable with that Samsung Monitor.
    About Mini DisplayPort to HDMI adapters

  • I can't get this command line code to work in JBuilder...

    Dear Experts,
    I built a simple JAVA program, in JBuilder, that displays a GUI with a label. It works when I am in JBuilder clicking on the Run button. But when I try to run
    "-classpath /[home]/ jbProject/ProjectNameRob/RobClasses ProjectNameRob.RobClsJav" from the command line I get this message:
    "Could not create Java Virtual Machine."
    I am in the jdk/bin directory and I still can't figure out how this thing works. Could the experts come forth and help me with this problem?
    Thank you,
    Robert L. Perkins

    Well, this won't be an exact answer for you because I'm not sure which run of "java -cp ...." did it for me, but I was able to get a run of a class in JBuilder 3.0 from the command line.
    I created a project called test_1.jpr. It has the following 3 files:
    Controller.java // contains a main( ) method
    test_1.html
    Test1.java // extends from JFrame
    On my system, the directory structure is:
    C:\JBuilder3\myclasses\test_1
    Tried:
    C:\JBuilder3\myclasses\test_1>java Controller // no good
    C:\JBuilder3\myclasses>java test1.Controller // no good
    C:\JBuilder3\myclasses>java -cp %CLASSPATH%;C:\JBuilder3\myclasses Controller // no good
    C:\JBuilder3\myclasses>java -cp %CLASSPATH%;c:\JBuilder3\myclasses\test_1 Controller // no good
    C:\JBuilder3\myclasses>java -cp %CLASSPATH%;C:\jbuild~1\myclas~1\test_1\Controller
    That resulted in the "usage" output to appear for the "java" .exe. But right after that, I did:
    C:\JBuilder3\myclasses>java test_1.Controller
    and wham, the application ran fine. I'm running Windows 98 SE, if that helps. Probably won't help you much, but I just kept messing around with it and then it worked. Voodoo.
    HTH
    Jeff

  • Using windows vista I can not get the install to complete and work properly with a usb connection.

    I am running Vista (32 bit) and I was trying to update to new HP software.  Tried using full software install from file on HP website (release 14.0 full version).  When I try to install, it will not recognize the usb connection of the software.  I tried going back to version that came with the printer and had a similar problem.  Now I am stuck not being able to get either version 12 (which came with the system) or version 14 (new update on website).
    I need help trying to figure out how to get the software to go through and connect properly using usb and having the scan function working.......
    Any ideas.

    Hi,
    Have you tried plugging the USB into a differnt port at the back of your PC?
    IS the USB directly connected to your PC and not through any USB hub or extention?
    Do you see any response while plugging the USB to your computer?
    If yes, please clarify.
    I would also suggest trying a different USB cord, not longer than 2-3 meters long and check for any difference.
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • I can not get the add this extention to work today will you please fix it so I can use it as it is broken Please fix the add this button so that it will work!

    I get this error message Something went wrong in processing your request. (If you were a web browser, I would say "400 rate limited".) when I try to use the add this button extension for firefox. Will you please help me to fix this problem so that I will be able to use the add this again real soon thank u.

    This issue can be caused by corrupted cookies or cookies that are blocked.
    *check the permissions on the about:permissions page and in "Tools > Page Info > Permissions"
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"

  • Can not get he ActiveDocument.SaveAs2 method to work on Word 2013

    For many years I have automated office applications from Visual Basic through the Office Object Model. This has been working fine for all versions from 2003 but
    failed when I upgraded to Office 2013.
    With Word 2013 the SaveAs2 method seems to ignore the parameters and instead always pops up the File SaveAs dialog. Irrespective of save or cancel the method then
    always returns the error 4198.
    The SaveAs2 method works fine in Word 2010 as well as SaveAs in earlier versions. According to the documentation for 2013 it should work the same way for the new
    version, but so far I’m stuck with this problem.
    I’m using Microsoft Office Home and Business 2013 on a Windows 8 system.
    I’ve also tried the SaveAs2 directly in Microsoft Word VBA. The macro below gives exactly the same sad result.
    Public Sub MySave()
    Dim MyName As String
    MyName = "TestDocument.doc"
    ActiveDocument.SaveAs FileName:=MyName, FileFormat:=wdFormatDocument
    End Sub
    I seem to be completely stuck. Does anyone know what the trick is here?

    Hello Dennis,
    Thanks for your effort in trying to reproduce the prompt problem. Since my little macro example is supposed to work
     I’m not surprised that it works at your site. For whatever reason it does not work at mine. What’s causing this is beyond me, but from experience Microsoft products works in mysterious ways. At least it is persistent and fails every time
    exactly as earlier described no matter what I do.
    Here is the history behind this problematic system:
    An Acer laptop with Windows 8 64 bit (Norwegian)  was bought in November 2012. This was intended as a reference system for any potential Win8 issues and also to double as a demo laptop when required.
    The laptop had no Office preinstalled so an Office Home and business 2010 product key (32 bit Norwegian) was bought at the same time. This included a free upgrade to Office 2013 when released.
    Office 2010 (32 bit) was downloaded and installed from
    www.office.com/productkeycard and everything worked as supposed to including office automation.
    A couple of weeks ago I then tried the promised Office 2013 upgrade from My Office/My Account and installed pressing the green Install button found on that page.
    That’s when the problem started. After investigating I found this to be caused by the SaveAs2 problem and reproducible also by a simple Macro in a Word document.
    The installation of Office 2013 had also left the Office 2010 on the system. By opening my new Word test document in 2010 the macro then failed exactly as on 2013 also on 2010.
    I then went to Program and Features and uninstalled Office 2010. Still the same problem in Office 2013.
    Program and features again, clicking change on Office 2013 and was presented by two choices offline or online repair. Tried offline first - same result,
     then online repair, when concluded I was asked to reactivate Office, but same result as before.
    Since your answer I’ve also tried the following:
    Went to Program and features and completely uninstalled my Office 2013.
    Returned to  My Office/My Account and installed Office 2013 again. This did nothing to remedy the problem which remains exactly the same.
    I've also done some further tests as an attempt to figure out what’s going on. I’ve made a new test document 
    WEventTest.doc which in addition to my original macro also is catching the DocumentBeforeSave event. The WEventTest project consists of the following:
    Added the following macros in Microsoft Word Objects/ThisDocument
    Private X As New Class1
    Public Sub Register_Event_Handler()
     Set X.appWord = Word.Application
    End Sub
    Public Sub MySave()
      Dim MyName As String
      On Error GoTo Skip
      MyName = "TestDocument.doc"
      ActiveDocument.SaveAs2 FileName:=MyName, FileFormat:=wdFormatDocument
      Exit Sub
    Skip:   MsgBox Err.Number & " " & Err.Description
    End Sub
    Added Class1 to Class Modules containing the following macro
    Public WithEvents appWord As Word.Application
    Private Sub appWord_DocumentBeforeSave(ByVal  sDoc As Document, _
    SaveAsUI As Boolean, Cancel As Boolean)
      Dim intResponse As Integer
      intResponse = MsgBox("Document: " & sDoc.Name & _
      " UI=" & SaveAsUI & " Save the document?", vbYesNo)
      If intResponse = vbNo Then Cancel = True
    End Sub
    I’ve then tried this on both my working Office 2010 system and failing Office 2013 system by first running the macro Register_Event_Handler and then MySave. There is a distinct difference between these system as follows:
    On my working Office 2010 system, everything behaves as expected:
    When calling MySave the DocumentBeforeSave event is fired as expected displaying the messagebox “Document: WEventTest.doc UI=True Save the document?
    Selecting Yes saves the document as TestDocument.doc in the documents folder
    Selecting No cancels the save and the SaveAs2 returns the error
     "4198 Command failed" as expected.
    On my problematic Office 2013 system there is a marked difference in behavior:
    When calling MySave, the first thing that happens is that the Save As prompt is displayed exactly as before with the document name WEventTest and filetype docx.
    The document may then be saved by selecting in the prompt, but whether saving
     or canceling the same thing always happens.
    After closing the prompt, THEN the DocumentBeforeSave event is fired. This is just too late. The message box shows the same content as for Office 2010, but the damage is already done.
    Selecting Yes or No does not make the slightest difference now. The SaveAs2 method always returns the error 4198 Command failed
    I'm not saying this is the first Microsoft problem I’ve encountered, but previously I’ve always been able to find answers by browsing forums and knowledge bases. This is actually the first time I’ve posted a question in any forum.
    I also tried the direct support link you suggested, but that link seems to be broken.
    Please advice.

  • I can not get the backup assistant plus to work on LG Enact cell.

    switched from Droid 4 to LG Enact, needed a keyboard and this was only option. The backup assistant does not work I receive an unknown error message daily. Not happy. I have tried Apps, settings, device, apps, All tab, backup assistant, force stop, ok, storage, clear data, ok... then tryed to sync - no go received same error message. help?

        mamajamma,
    Oh my, let's get to the bottom of this! Have you tried removing Backup Assistant off your phone and readding it? What error message are you getting?
    KarenC_VZW
    Follow us on Twitter @VZWSupport

Maybe you are looking for