SimpleChat doesn't display properly for spark on mobile

I'm using the latest LCCS Spark Beta version. The SimpleChat displays RAW html instead of the styled text, plus it doesn't scroll properly. This problem was posted a few months back but is yet to be resolved. Looking at the LCCS sdk source code, the problem seems obvious: SimpleChat uses the class RichTextArea which the lccs team has created. That class checks to see if "textFlow" exists. If it doesn't as in the case of mobile it just assigns the raw html to the text field which is obviously unacceptable since the user will end up seeing raw html instead of styled text. Below is the problematic code in the lccs RichTextArea class. Is LCCS team supporting mobile devices?
               if (textFlow)
                    textFlow = TextConverter.importToFlow(str, TextConverter.TEXT_FIELD_HTML_FORMAT);
                else  {
                    //StyleableTextField(textDisplay).htmlText = str;
                    textDisplay.text = str;

www.pianofortemusicschool.com

Similar Messages

  • Index page CS4 doesn't display properly for google chrome users

    index page CS4/ Dreamweaver doesn't display properly for google chrome users, shows as a blue page /  version of Chrome is 17.0.963.56 m. version of flash is 11.1.102.62.  Operating system is Version 6.1 (Build 7601, Service Pack 1).  Javascript version 1.7.  Quicktime is not installed. 

    www.pianofortemusicschool.com

  • Site doesn't display properly when viewed in Windows 8.1 and IE11

    Web site doesn't display properly when viewed in Windows 8.1 and IE11. Site html and css validates no errors at W3C. Any ideas?

    The following is what I see in IE11 on a Windows 8.1 system, no difference using Firefox, Chrome or Safari on the same system.

  • Scorecard doesn't display data for some selections

    Hi,
    I have configured a scorecard to display detail data (product quantities for 4 quarters) based on different parameter (product code) selection in other master scorecard. The detail dashboard doesn't display data for all the product codes. It's weird even data is there for the same product code where the scorecard is mapped in the excel however doesn't display. Appreciate if any of you can help me to overcome the issue.
    Technology: SAP Dashboard 4.1 SP4, Oracle 11g
    Thanks,
    Anurag

    Hi Anurag
    Have you taken an excel snapshot and checked if the master scorecard has the rows you expect to see in the detail sorecard?
    Thanks
    Runali

  • E61i internet browser doesn't display properly

    Hello,
    I never had any problems browsing the internet on my E61i. My Nokia is always switched on, but today I had to switch it off for a while. After switching in on again, I wanted to use the internet on it. The strange thing was that it wouldn't display any web page properly any more. Pages look messy, like the web browser doesn't how to handle HTML etc. and display it properly.
    I often visit web pages not specially made for PDA's, so when visiting these I had to scroll horizontally. That was ok. But now when visiting these pages I cannot scroll horizontally any more; the browser puts all web page contents beneath each other, if you know what I mean. Now I can only scroll vertically.
    The conclusion is that many web pages I used to visit have now become useless since the E61i web browser doesn't display them any more as they used to be displayed, the pages used to look like as if you visited them from a PC, but not any more.
    Does anybody have a clue?

    It sounds like a cache issue. When you view the page, that
    page is loaded into your (or your client's) browser's cache memory.
    This is done so that when you return to that page it will load
    faster (since it is already loaded into memory).
    This will only happen if a person has been to the page
    recently. There is a limit on the amount of information your
    browser will store in cache memory. The more you surf, the more
    likely it is that the page will be replaced in the cache memory
    with some other information.
    You (and your client) can, depending on what browser you are
    using, set your preferences so that all web pages will be
    completely reloaded every time you visit them. In IE 6 for Win:
    Tools>Internet Options>Settings> Select 'Every visit to
    the page'. You can also set your cache to be the minimum amount of
    space alotted. Note: This doesn't really work very well in IE 6 for
    WIN. I use firefox for reviewing changes because I have found IE 6
    is completely unreliable for viewing the latest.
    Most other browsers will allow you to hold down Shift and hit
    'refresh' to throw out the cache for that page and view the latest.
    As far as I know this is standard operating procedure for proofing
    new pages.
    If there is a coding technique to force a browser to use only
    the latest information, I don't know what it is.
    Good luck.

  • Paypal express checkout doesn't display properly - Firefox 33.0.3

    Paypal express checkout doesn't appear to be displaying properly in firefox (link to screenshot below). I've tried it with Chrome & IE and it works fine, so can only assume this is a firefox bug.
    Screenshot:
    http://voodoo-london.com/ss.png
    I've tried everything in regards to clearing cookies & cache but still no luck.
    Can anyone offer any explanation or resolution for this?

    Separate Issue; Update your
    Flash Player '''v15.0.0.189 http://get.adobe.com/flashplayer/'''
    Please flag your last post as '''Solved Problem''' so other will know.

  • Externally loaded swf in second window doesn't display properly?

    I have a bitmap based flash game (bitmapdata generated screen) that I'm trying to load in to a secondary nativewindow generated from a main flash (not AJAX/HTML)  based AIR app that's a graphical menu.  I.E. you click on a selection in the menu, and it pops open a secondary nativewindow with the flash game running in it.  The problem is, the game itself gets mangled in the secondary window when it loads in.  Keyboard input goes away, the bitmap doesn't draw properly (it streaks like its not drawing the background image each frame), most of the game objects its supposed to draw in to the bitmap are missing, etc. 
    When I make the game itself in to its own AIR app and run it direct, it works just fine.  So I'm puzzled.  Is there some kind of special coding considerations in the as3 side that I'm missing with the original game?  I.E. if a flash based AIR app launches another nativewindow and loads a swf in to that, does it share some kind of variable set, display list, etc. with the calling window?  Something else?  Any help would be appreciated.

    There are a few differences between (A.) letting the AIR runtime load content into the initial window and (B.) loading content into a new NativeWindow.
    1. In case A, the stage property is available in the class constructor for the main sprite. In case B, this is not the case. You may have to use an ADDED_TO_STAGE event handler to do some class initialization.
    2. In case A, the initial scale is based on the metadata present in the SWF -- this results in the behavior you would expect. In case B, there is no SWF to base the scale on when the window is created, so a default scale is used -- this is rarely results in behavior you would expect (unless the window happens to be created with a size of 72x72 pixels).
    If you aren't setting the stage to noScale, then this could account for some of the visual issues. (See http://www.adobe.com/devnet/air/flex/quickstart/launching_windows.html for an explanation of the scaling issues.) The easiest thing to do is to set the Stage scaleMode to noScale and the align property to the top left setting. I'm guessing your drawing code isn't expecting the scaling so things are getting put in the wrong place.
    3. In case A, the content is automatically put in the application sandbox. In case B, it depends on the URL.
    As for the Keyboard input, this may depend on how you are loading the SWF and from where. This could be related to #3 above, although I would expect to see security errors. How are you adding your keyboard event handlers?

  • Navigator Window Doesn't display properly

    Hello,
    Suddenly the Navigator Window on the Left of JDeveloper doesn't show properly.Usually the window has 2 subwindows : the top which displays WorkSPace-Projects-classes and bottom which shows the members and methods for each class. Now my top window doesn't show at all. It is like it has been minimized and i cannot restore it. The bottom window occupies all the space.
    When i place the cursor on top of the upper border of the bottom window (just under the green X icon) the cursor changes to a shape that shows that there is another window there but i cannot drag the border down and display again the top navigator window.
    What can i do about that ? ?

    I have seen this problem before but I have not been able to reproduce it.
    The workaround is to:
    - Open the 'Welcome' workspace (Help|Welcome Workspace)
    - Close JDeveloper
    - Launch JDeveloper
    - Open your workspace
    Hope this helps.
    Please let us know if you are still running into problems.
    Regards,
    Arun

  • CSS - main content h1 and p text doesn't display properly

    Hi all,
    I know this is something really simple, but I just can't seem to get it right.  The h1 and the p text in the main content should have left and right padding to display properly (i.e. space on either side so it's not squished against the Accordion Spry), but it doesn't work.  It shows correctly in DW, but not online.  I'm just learning CSS so sorry for the ignorance!  I've tried everything I know and can't seem to get it right.  I would appreciate ANY help at all.
    http://www.TailgatorsHockey.com/news.html
    Attached is the .css file...
    Thanks so much!

    The padding and margin are certainly showing in the browser for the h1 tag but you have no padding or margin declared in your css styles for the paragraph tag in the 'main-content' <div>
    Add ths to your css styles:
    #main-content p {
    padding: 0 25px 0 25px; /*top/right/bottom/left*/
    margin-left: 10px;

  • Movie video artwork doesn't display properly on iPad video app

    I have seen the discussion around the problems / solutions regarding the proper displaying of TV shows on the iPad when accessing a shared library, but my problem is with Movie files. The artwork does not display properly. Sometimes the artwork from one movie will be duplicated onto another movie, or they will be all switched around. I have both iTunes purchased movies and converted backups of from my DVD library.
    Has anyone else had this problem?
    I have tried many things. While I see changes in the displayed artwork, they are generally messed up in one way or another on the iPad when accessing the shared library on my computer.

    Curiously enough, if I click on a movie from the shared library on the iPad, the correct artwork shows on the right sight of the window that let's you play the movie or navigate to a chapter. When I go back to the menu screen for all the movies in the shared library, the artwork is still wrong.
    Artwork is messed up even for home-created movies - one of them shows a preview screenshot of the Warner Brothers logo instead of the picture I have in the Artwork setting in iTunes.

  • Why my ipod doesn't display properly my personal blog?

    Why my ipod touch does not display properly my personal blog (satriyonitiatmojo.com), for example this post > Century 21 Broker Properti Jual Beli Sewa Rumah Indonesia. Is it the ipod does not support something script? Or do I have to update the iOS? Thanks

    The Century 21 page looks fine n my 4G iPod in Safar with iOS 5.  Looks like it does in Safai on my Mac.

  • IGoogle doesn't display properly

    Hello all,
    Yesterday, all was fine. Today, my iGoogle page won't display properly (running Safari - OSX 10.3.9 Panther). Get a notice that: 'Home tab has been sent. Sending failed.' Brother Mac running Panther has same problem. Page displays properly running Firefox, and also running Safari - OSX 10.4.11 Tiger.
    Has anyone else this problem? Is this just another sign that Panther is getting old? (Google Mapping quit working about a month ago.)
    Sniff..... The obits are already working overtime this month ..... Jon

    Hello Surfcat and all,
    Thanx for all the updates. Whenever the Mac goes on the fritz, the first thing I try to do is find out if it's happening to everybody or just to me. It would seem that I'm not alone, so I guess I feel better.
    It's nice to know your iGoogle started working again, even if it subsequently quit. Mine has remained "hors de combat", without so much as a brief reprieve.
    FWIW, one of my 'extra' Macs (they get lonesome, you know) - running Safari 3.1.1 in OSX 10.4.11 - displays properly (mostly), with just one or two small anomalies.
    iGoogle and Firefox continue to work properly on both.
    It's easy to get frustrated and angry, and ask, "Don't they care?". I would guess they do care, but gremlins have a habit of being easier to discover than to oust, and I'm just hoping somebody will gain some insight into what the problem is and let the rest of us know about it.
    This has not been my week: first, iGoogle; then the spam filter on my eMail (Eudora)(does anybody else still use that?) quits working and I am getting litterally hundreds of ads for Viagra; and then the battery on my FIOS decides to expire and starts beeping - finally find the service number for that, get somebody on the phone, find out the battery can only be ordered by phone, only from the one company, only with a credit card, finally get two batteries in one box for twice the quoted price, spend hours on the phone trying to get that straightened out, get a sweet voice (Columbian) from somewhere in Georgia who tells me everything is all right, the credit will be issued immediately as well as the address label to return the extra battery.... needless to say, nothing has happened.
    I swear I'm going back to writing letters, and remembering when A T & T telephone service was quick, courteous, efficient, and the envy of the civilised world.
    Bah! Humbug! ..... Jon

  • Interleaving doesn't work properly for Cisco 3725 router, IP Plus IOS

    Dear All,
    I am deploying VoIP between 2 sites using Cisco 3725 routers. Currently, interleaving doesn't work properly which result in voice quality problem only during data trafic. Issuing "show int multilink 1" command, I realise that there is no interleaves even though VoIP call and data are traversing on the link.
    Attached here is the info for your reference.
    Any idea, please help.
    Thanks in advance.
    Duc

    Here is the info:
    VNHCMR01#sh call active voice brief
    : hs. + pid:
    dur hh:mm:ss tx:/ rx:/
    IP : rtt:ms pl:/ms lost://
    delay://ms
    MODEMPASS buf:/ loss /
    last s dur:/s
    FR [int dlci cid] vad: dtmf: seq:
    (payload size)
    ATM [int vpi/vci cid] vad: dtmf: seq:
    (payload size)
    Tele : tx://ms noise: acom: i/o:/ dBm
    MODEMRELAY info:// xid:/ total://
    speeds(bps): local / remote /
    Proxy :,,,,, endpt: /
    bw: / codec: /
    tx: /,/,/
    rx: /,/,/
    Telephony call-legs: 1
    SIP call-legs: 0
    H323 call-legs: 1
    MGCP call-legs: 0
    Total call-legs: 2
    12FF : 5798794hs.1 +202 pid:80 Answer 710 active
    dur 00:01:14 tx:3721/74420 rx:3721/74420
    Tele 0/0:15:424: tx:74420/74420/0ms g729r8 noise:0 acom:24 i/0:-50/-29 dBm
    12FF : 5798794hs.2 +202 pid:81 Originate 81555 active
    dur 00:01:14 tx:3721/74420 rx:3721/74420
    IP 159.12.56.1:19526 rtt:30ms pl:73890/40ms lost:0/1/6 delay:67/67/107ms g729r8
    Telephony call-legs: 1
    SIP call-legs: 0
    H323 call-legs: 1
    MGCP call-legs: 0
    Total call-legs: 2
    VNHCMR01#sh int mu1
    Multilink1 is up, line protocol is up
    Hardware is multilink group interface
    Description:
    Interface is unnumbered. Using address of FastEthernet0/0 (159.12.55.2)
    Backup interface Dialer1, failure delay 30 sec, secondary disable delay 30 sec,
    kickin load not set, kickout load not set
    MTU 1500 bytes, BW 256 Kbit, DLY 100000 usec,
    reliability 255/255, txload 33/255, rxload 13/255
    Encapsulation PPP, LCP Open, multilink Open
    Open: CDPCP, IPCP, loopback not set
    DTR is pulsed for 2 seconds on reset
    Last input 00:00:00, output never, output hang never
    Last clearing of "show interface" counters 00:00:50
    Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
    Queueing strategy: weighted fair
    Output queue: 0/1000/64/0/0 (size/max total/threshold/drops/interleaves)
    Conversations 0/5/64 (active/max active/max total)
    Reserved Conversations 1/1 (allocated/max allocated)
    Available Bandwidth 56 kilobits/sec
    5 minute input rate 14000 bits/sec, 69 packets/sec
    5 minute output rate 34000 bits/sec, 72 packets/sec
    3062 packets input, 100509 bytes, 0 no buffer
    Received 0 broadcasts, 0 runts, 0 giants, 0 throttles
    0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort
    3078 packets output, 298192 bytes, 0 underruns
    0 output errors, 0 collisions, 0 interface resets
    0 output buffer failures, 0 output buffers swapped out
    0 carrier transitions
    VNHCMR01#sh ppp multilink
    Multilink2, bundle name is VNHANR01
    Bundle up for 02:47:34, 3/255 load
    Receive buffer limit 12192 bytes, frag timeout 1000 ms
    0/0 fragments/bytes in reassembly list
    0 lost fragments, 0 reordered
    0/0 discarded fragments/bytes, 0 lost received
    0x145A1 received sequence, 0x21A41 sent sequence
    Member links: 1 active, 0 inactive (max not set, min not set)
    Se0/2, since 02:47:32, 320 weight, 312 frag size
    Multilink1, bundle name is VNBHCR01
    Bundle up for 16:07:32, 35/255 load
    Receive buffer limit 12192 bytes, frag timeout 1000 ms
    0/0 fragments/bytes in reassembly list
    0 lost fragments, 0 reordered
    0/0 discarded fragments/bytes, 0 lost received
    0x2DB8D received sequence, 0x536BD sent sequence
    Member links: 1 active, 0 inactive (max not set, min not set)
    Se0/1, since 16:07:30, 320 weight, 312 frag size
    VNHCMR01#sh run int multilink 1
    Building configuration...
    Current configuration : 380 bytes
    interface Multilink1
    description
    bandwidth 256
    ip unnumbered FastEthernet0/0
    service-policy output llq
    backup delay 30 30
    backup interface Dialer1
    ip tcp header-compression iphc-format
    no ip mroute-cache
    ppp multilink
    ppp multilink fragment delay 10
    ppp multilink interleave
    ppp multilink group 1
    ip rtp header-compression iphc-format
    end
    VNHCMR01#show policy-map
    Policy Map llq
    Class voip-rtp
    Strict Priority
    Bandwidth 50 (%)
    Class voip-sig
    Bandwidth 8 (kbps) Max Threshold 64 (packets)
    VNHCMR01#show class-map
    Class Map match-any class-default (id 0)
    Match any
    Class Map match-any voip-sig (id 1)
    Match access-group name VoIP-SIG
    Class Map match-any voip-rtp (id 2)
    Match ip rtp 16384 16383
    VNHCMR01#

  • Lumia 610 doesn't display notification for Outlook...

    Hello, My Lumia 610 doesn't display notification (unread messages) for outlook when the screen is locked. However it does display the notification such as missed calls, text messages, face book messages, Gmails, Yahoo emails, Windows live emails. But nothing for Outlook. Can some one please help. Regards, Hussain

    WIndows Phone 7.5 has a total of four positions where notifications can be shown on the lockscreen. If these are used further notifications are not shows. You can resolve this by clearing the existing notifications or link your inboxes which will result in the use of a single notification for new mail messages in any of the linked inboxes. You can find more information o this using this link.
    Press the 'Accept As Solution' icon if I have solved your problem, click on the Star Icon below if my advice has helped you!

  • Page doesn't display properly in IE 6

    Hi ppl.. My site doesn't display correctly in IE 6. (It works fine with IE 7 and 8 and Firefox) I can see through the area which is supposed to be white ( in other words, I see the background which I put in my body tag). I'm guessing that this happens because the overflow portion of my main content area is set to hidden. Is there anything I can change to rectify this?  Below is my url. Sorry if my post sounds confusing. If you need any details, pls ask me.. Thank you!
    http://www.readislam.net/darulhuda/aqeedah1.shtml

    Differences in rendering abound between IE6 and all other browsers. But this is what I found when I ran your page through w3c validation: http://validator.w3.org/check?uri=http://www.readislam.net/darulhuda/aqeedah1.shtml&charse t=(detect+automatically)&doctype=Inline&group=0
    I often see white turning up as transparent, though mostly in transparent gifs. My ploy in that case is to use a slightly off-white, usually #FFFFFE or some such. I don't know if that will ease your pain, though.
    Beth

Maybe you are looking for

  • Can't update my ipod touch 4th generation and I have to restore it since it no longer works

    Hi, I just updated my 4th genreation ipod touch and it showed me an error message. It no longer works and I have to restore it now.. Why can't I update the ipod??

  • Audio problem with Captivate 7

    Hello All, I've had an issue in the past that when I create an MP4 file in Captivate 7 using a windows PC, the volume is too low when the published mp4 file is played on a MAC.  I was able to use the Audio Processing setting under the Adjust Volume c

  • Why won't my microsoft bluetooth notebook mouse 5000 not stayed connected

    This mouse has been working.  When I close the notebook it loses connection.  I have checked batteries, discoverability, etc.  I have even restarted computer. What is with this Microsoft Bluebooth notebook mouse 5000?  I use a Mac Pro.  Thanks for yo

  • Where can I find SH_PartTwo.rpd ?

    I'm running through the "Creating a Repository Using the OBIEE Administration Tool" tutorial. I have reached a point where the tutorial refers to a prebuilt repository called "sh_PartTwo.rpd" which is supposed to be located in the setupfiles folder.

  • Help, I can't remove the iBook battery

    I have an old but reliable iBook G3; works great, no problems. Yesterday I upgraded the hard drive to a 100 GB Hitachi-Travelstar. Replacement was successful. IBook runs great. The only problem I have is the battery won't come off even when the latch