Text positioning not correct while typing in Flex Mobile Text Area

When I try to write text in Flex mobile TextArea, the text positioning is not correct. What might be the issue? Do I need to specify some Skin Class for it?

Could be that the font doesn't have Hindi chars support and the text you paste is HTML chars.
You could try to embed a font you know has the appropriate chars and use that for global and Applications CSS classes.

Similar Messages

  • Qaaws "Web services url is not correct" while adding host.

    Hello all,
                I am getting error "The web services Url is not correct" while adding the host name for Qaaws. The error is coming on the right side of the input text field of the Name showing by yellow warning icon.Please help me to resolve it.I was tried by keeping the host name instead of ip address.But is saying the same error.
    regards
    vishnu

    To enable rest support there are some instructions below:
    Before undertaking this process, I recommend backing up the file(s)
    you are going to edit.
    By default REST is disabled in Axis 2. We need to enable it. We
    need to go to the following folder. Assuming D: is the installation drive:
    1.     D:\Program
    Files\Business Objects\Tomcat55\webapps\dswsbobje\WEB-INF\conf (for 32 Bit OS)
    or D:\Program Files (x86)\Business Objects\Tomcat55\webapps\dswsbobje\WEB-INF\conf (for 64 Bit OS)
    2.     There is a file with the name axis2.xml (This file is an XML File and contains many parameters as well as many other things).
    3.     Make a backup copy of the filename you are about to edit.
    4.     Open the axis2.xml file in Notepad or 'XML Editor' to edit
    5.     Search for the word REST (Ctrl & F is probably easiest)
    6.     You will see a line like this
    <parameter name="disableREST" locked="true">true</parameter>
    We need to replace' true' with 'false' to enable REST, and after the changing that line will look like following:
    <parameter name="disableREST" locked="true">false</parameter>
    7.     Save the file and restart the web server.

  • After upgrade to iOS8 on my iPhone5, I do not see smart keyboard options while typing message or email text

    after upgrade to iOS8 on my iPhone5, I do not see smart keyboard options while typing message or email text

    Go to Settings>General>Keyboards>Predictive Text>ON. If it is on, you can toggle it off and then back on. The other method is to check in the typing area of the Messages app and it could be minimized. You would see a small line in the center just below the typing area. You would just need to put your finger on that small line and swipe upwards. But either should bring it back.

  • Vertical slider position not updated while displaying .pdfs with Adobe Reader X

    When a .pdf file is opened inside Firefox 4 (beta/RC1), the vertical slider position does not update while scrolling through the document until the mouse cursor is moved to the slider bar (then the slider immediately jumps to the right place).
    I am using Adobe Reader X.

    Here is a URL that will not save in Reader X:
    http://samplepdf.com/sample.pdf?meaningless=1234567890123456789012345678901234567890123456 789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456 789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456 7890/&blah=blah.pdf
    However, if the last slash is removed or encoded as %2f (which should not be necessary, as it appears in the query portion of the URL), there is no problem.

  • Trackpad dose not move while typing

    Hi i have 2 problems with my pc. 1. I cannot seem to move my mouse pad while pessing any keys e.g i press W,A,S,D and try move my mose its froze at that pont. i have tried to disabled the PalmCheck-Enhanced and nothing happens ive serced for weeks to find a sulution but i have found nothing that works. 2. Since ive updated to windows 10 (for free) i have the "command Prompt" window open and close with in a milisecond this is really fustrting because sometimes it will delete my text im typing or close a window sometimes nothing hapens. ive tried sercing for this problem and cant fine anything on it due to windows 10 is new.  Need quick replies

    I fixed this on Elantech doing this: 
    This was fixed by me with a simple regestry edit. 
    Open regedit.exe as admin, navigate to:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Elantech\SmartPad
    Find the key named:
    DisableWhenType_Enable
    Double click and change the value to 0, close out and restart. Your touchpad is active while typing!
    I bet if you naviagate to the synaptics folder under the control subnode, there is a similar setting. 
    Tyler

  • Colour of the Background Picture and auto correction while typing

    Hey
    since 2,5 weeks i own an iPad. I really like it, there are only two things i dislike:
    1. I changed the background Picture:http://kitecoach.co.uk/images/categories_desc/photos/big/originals/kitesurf5med. jpeg
    I like the bright colours. But at the lower end, the sand becomes much darker when used as background while the colours of the sky and the kites are normal. It's really annoying, why do the colours at the lower end of the picture change and how to stop it?
    2. Is there a possibility to turn off the auto correction?
    Thanks for the answers
    Rheinfels

    Rheinfels wrote:
    I like the bright colours. But at the lower end, the sand becomes much darker when used as background while the colours of the sky and the kites are normal. It's really annoying, why do the colours at the lower end of the picture change and how to stop it?
    That is done with every picture on the home screen, there is no way to stop the iPad doing that… you can work around with a graphics tool - select the lower portion and make it brighter. And scale it down… the size on the web is 4288 × 2848, the iPad has 1024 x 768…
    enjoy your magic machine

  • Certain letters do not work while typing(sometimes)

    sometimes, when i am typing a note or browsing the internet, certain letters and numbers do not work on the key board(specifically n,b,u,h,j,7, $, and !)
    I have tried resetting and restoring and everything but nothing works. Its very strange since sometimes they work and sometimes they dont, although they do not work more often than they do! please help...

    If you have a dud iPod there is not much help users of this forum can provide.
    Try having someone at the store you bought it take a look or to an Apple store (not many in Canada, except in the big cities).

  • How to log just plain text but not xml while using util.logging?

    i tried the following code to log simple messages in my app.However it logs the messages in xml. I don't want this and only plain text will be enough so what should i do? e.g. using some formatters?
    import java.util.logging.*;
    class LoggerTest{
         public static Logger logger =Logger.getLogger("demo.test");
         public static  void main(String args[]) throws Exception{
              FileHandler fh = new FileHandler("log.xml",true);
              logger.addHandler(fh);
              for(int i=0;i<100;i++){
                   logger.log(java.util.logging.Level.INFO,"appanded");
    }thx!

    This post
    http://forum.java.sun.com/thread.jsp?thread=319861&forum=31
    shows that if you make a properties file (you can name it logging.properties or whatever) with at least the line
    java.util.logging.FileHandler.formatter= java.util.logging.SimpleFormatter
    and then run with
    java -Djava.util.logging.config.file=logging.properties LoggerTest
    you will get what you want.
    You can set this property programmatically (actually the SBIS is deprecated, but I am too lazy to do the StringReader class right here):
    String my_prop = "java.util.logging.FileHandler.formatter=java.util.logg
    ing.SimpleFormatter" ;
    Properties props = new Properties (System.getProperties());
    props.load( new StringBufferInputStream( my_prop));
    System.setProperties(props);
    but you would need to set the property before you create the formatter.

  • Those smart boxes (not mailboxes) while typing an email

    If I look up Mail and Boxes I only get info on smart mailboxes. Please can someone lead me to an explanation of those other boxes that sometimes magically appear as large and black with rounded borders and an X mark at the top left. What are they? I can't find anything except annoynace with them. Typing in one becomes difficult. Trying to delete a letter seems to wipe out the whole thing. I can find no explanation for them.
    I also saw someplace a way to turn off some kind of automatic address recognition inside mail. Please also help me find that. Again, in my usage I have found those to be nothing more than annoying.
    I'll be happy to read all about them rather than ask someone to type it here. But please point the way.
    Does anyone like/use those?
    Thanks.

    Hey hoosier 49!
    I have a couple of steps for you to try that may help you resolve this issue. First, attempt to force close the email app, then relaunch and test the issue again:
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    If the issue is still unresolved, you may need to reset the phone according to the instructions in this article:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • Scroller Component not working with TabbedViewNavigator Component (Flex Mobile)

    SETUP:
    -The Application itself is a MobileApplication, not TabbedMobileApplication.
    -One of my pages/views (we'll call it "TabbedPage") incorporates the TabbedViewNavigator component, which calls on two other pages/views in my "views" folder; we'll call them "TabbedPageOne" and "TabbedPageTwo"; the other pages within the application are just regular View pages with components on stage, including a page that also incorporates the Scroller component, which functions properly without a hitch.
    -TabbedPageOne incorporates a Scroller component (followed by a VGroup component as required) that is constrained to the whole screen (left, right, top, & bottom all equal "0").
    -At runtime (on my desktop and device), when I navigate to the TabbedPage page -- consisting of TabbedPageOne & TabbedPageTwo -- the Scroller component will not scroll.
         ---Sidenote: I filled the page with components like buttons and labels to fill the page to the point of activating the scroll function, and although the buttons were still functioning (meaning they still respond to touch events), the Scroller still did not function.
    Is there something I'm missing or doing wrong, or is this a glitch within the Flex Framework?
    You help would be greatly appreciated!

    Sure!
    --------------------------------------------------- MAIN.mxml ------------------------------------------------------------
    <?xml version="1.0" encoding="utf-8"?><s:MobileApplication xmlns:fx="http://ns.adobe.com/mxml/2009"xmlns:s="
    library://ns.adobe.com/flex/spark"backgroundColor="
    #FFFFFF" firstView="views.TabbedPage"frameRate="
    60"splashScreenImage="
    @Embed('splashScreen.jpg')">
     <fx:Declarations>
     <!-- Place non-visual elements (e.g., services, value objects) here -->
     </fx:Declarations>
    </s:MobileApplication>
    -------------------------------------------------------------- TABBEDPAGE.mxml ---------------------------------------------------------------------
    <?xml version="1.0" encoding="utf-8"?><s:View  xmlns:fx="http://ns.adobe.com/mxml/2009"xmlns:s="
    library://ns.adobe.com/flex/spark"actionBarVisible="
    false" tabBarVisible="false" title="TabbedPage">
     <fx:Declarations>
     <!-- Place non-visual elements (e.g., services, value objects) here -->
     </fx:Declarations>
     <s:TabbedViewNavigator left="0" right="0" top="0" bottom="0">
     <s:ViewNavigator label="One" firstView="views.TabbedPageOne"/>
     <s:ViewNavigator label="Two" firstView="views.TabbedPageTwo"/>
     </s:TabbedViewNavigator>
     </s:View> </s:MobileApplication>  
    ---------------------------------------------------------------- TABBEDPAGEONE.mxml ------------------------------------------------------------------------
    <?xml version="1.0" encoding="utf-8"?><s:View  xmlns:fx="http://ns.adobe.com/mxml/2009"xmlns:s="
    library://ns.adobe.com/flex/spark"actionBarVisible="
    false" tabBarVisible="true" title="TabbedPageOne">
     <fx:Declarations>
     <!-- Place non-visual elements (e.g., services, value objects) here -->
     </fx:Declarations>
     <s:Label x="0" y="0" width="420" height="76" color="#000000" text="One"/>
     <s:Scroller left="0" right="0" top="40" bottom="0">
     <s:VGroup x="0" y="0" width="100%" height="100%">
    <!-- I just created these buttons so that the page scrolls--><s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
     </s:VGroup>
     </s:Scroller></s:View>

  • Text tool: hitting 'enter' after typing a line disengages text tool

    When I type text I get no new line when I hit return (enter). This happens whether I've drawn a text box first or if I'm just typing on a line. The text tool seems to "disengage"—it's still selected in the tool box & layer palette, but I no longer have an active cursor. This means I can only type one line of text at a time. Anything typed after hitting return doesn't show up. The fonts themselves work, and the leading is not so great that the text wouldn't fit in the text box or on the page. I'm hoping this is a common problem/bug that someone has encountered before! CS4 on Windows Vista.

    How about this:
    Go to Edit Keyboard Shortcuts.
    Save the current configuration under a new name.
    Load the set called Photoshop Defaults.
    See if that helps.

  • Adfs/ls does not work while adfs/ls/idpinitiatedsignon works | There are no registered protocol handlers on path /adfs/ls/ to process the incoming request

    Hello Experts
    I am trying to configure ADFS 3.0 with Sharepoint 2013 and facing an issue with ADFS 3.0 url
    When I try to access url https://<ADFS.domain.com>/adfs/ls - I face following error 
    Encountered error during federation passive request. 
    Additional Data 
    Protocol Name: 
    Relying Party: 
    Exception details: 
    Microsoft.IdentityServer.RequestFailedException: MSIS7065: There are no registered protocol handlers on path /adfs/ls/ to process the incoming request.
       at Microsoft.IdentityServer.Web.PassiveProtocolListener.OnGetContext(WrappedHttpListenerContext context)
    But When I try to access ADFS url - https://<ADFS.domain.com>/adfs/ls/idpinitiatedsignon 
    It works.. 
    Is it normal behavior or something wrong here.
    Please suggest.
    Thanks

    /adfs/ls/ is the endpoint for all "passive" protocols. a Plain GET to /adfs/ls wil complain (correctly) that the plain GET is not a correct SAML or WS-Fed message. You should only send correct messages to that EndPoint........
    Paul Lemmers

  • Not able to copy the tree node text in solaris, while easily done in window

    Hi,
    I m not able to copy the text present on the tree's node to terminal or other text editor in solaris. I m using <Shift><control> C and V comaand for the same but the text is not being copied and pasted on the text pad or the terminal window.
    While the same is possible in windows OS using ctrl+c and ctrl+v command.
    Please suggest the possible solution for the same, is there any property of the tree/OS needs to be set?

    Help About says I'm on 20.0.1
    Up until last week, I was able to use the tab key when typing emails and other multi-line text boxes.
    Suddenly the behavior of the tab key changed. This isn't the first time. It's been quite a while ago that the function of the tab key changed from indenting to moving around the page, then after some time it changed back to indenting.
    Can we get this fixed and leave it alone, please?
    I may give one of those add-ins a try, but my problem with add-ins is that they break when FF is patched or upgraded, then I'm left with out the solution they provide.
    Can we just fix Firefox, please?
    Thanks,
    Frank
    P.S. Another potential fix I came across suggested starting FF in safe mode to see if the problem goes away. It does not. It seems to be a change to FF that appeared after an update last week. On or just befor 24 Apr.

  • Full-text search not available after upgrade from SQL 2008 R2 Std to SQL 2012 Std

    We upgraded our production SQL Server from 2008 R2 Std to 2012 Std last week, and the installation logs show everything was successful, but now we are unable to do any searches against our full-text indexes.  The resulting error is as follows:
    "Full-Text Search is not installed, or a full-text component cannot be loaded."
    When executing the query "SELECT FULLTEXTSERVICEPROPERTY('ISFULLTEXTINSTALLED')", the result is "0".  The "Full-Text Daemon Launcher service is also running.  When running installation again to add the feature, it shows
    "Full-Text and Semantic Extractions for Search" as being installed and unavailable for selection in the list of features to add.  As a side note, we did the same upgrade in our identical QA environment before production and everything was successful
    and full-text searches are working correctly.  We have run the "Repair" routine in the SQL Installation Center and it did not correct the problem.
    The full-text catalogs still appear when browsing through the GUI in SSMS or querying sys.fulltext_indexes and sys.fulltext_index_columns.  It is not possible to view the properties of the catalog in SSMS, though, as the GUI throws an error and an empty
    dialog box is shown.  Any other thoughts?
    Thanks,
    AJ

    I have no idea what is going, but assuming that it is a little pressing to get this fix, I think the best path in this case is to open a case with Microsoft.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Compulsory quantity in text position of BOM

    Hi gurus,
    when I create a production order (CO01) and I add a text position in BOM (type T) the system requires an obligatory quantity. It's not logical  that a text position requires a quantity. Is it possible to make the text position not obligatory?
    Thank you.

    Its very typical scenario, looks stupid to ask quantity even when we mention the Item catagory as T, but there must be something behind this which our mand cant find out, we are unable to get that kind of scenario.
    by the way if you want to remove this files do as follows.
    Go to tranaxcation code. SE80>enter Function group CMOD> double click screen no 150>click on layout> screen painter will come. then click on filed required quantity.  the filed is "required" entry.
    change that to optional.
    It will solve your issue.  for this you need the access key, since its a change in standar SAP.
    Regards,
    Pravin Mukkawar
    TCS Gandhinagar
    SAP-PP-APO consultnat.

Maybe you are looking for

  • ClientAbortError on 404 error page

    Hi I have a custom 404 JSP page that gets loaded every time resource is not found. I tested this on our development server and it was working great. After redeploying to production server I am getting the following error [#|2004-06-24T09:13:33.186-04

  • ABAP Certification & Materials

    Hi, Does anybody have ABAP certification links and materials. Please send them to [email protected] Thanks, Ramana

  • What is the Best Practice for A1000 LUN Configuration

    I have a fully populated 12 X 18GB A1000 array, What is the optimal LUN configuration for a A1000 Array running RAID5 in a read intensive oracle financials environment. 1. 1 (10 X 18GB + 2 X 18GB HS ) (Use format to split at OS level) - Current Setti

  • Website won't open on any browser on my computer

    I'm trying to open a website, but it won't open on any of my browsers. All other websites work.

  • Using osb in oem

    Dear Sir: i have tried to show Oracle Secure Back (10.2.0)in my EM(10G 10.2.02)as described in its Admin Guide a. Navigate to the ORACLE_HOME/hostname_SID/sysman/config directory and open the emoms.properties file in a text editor. b. Set osb_enabled