Help.required.spaces&some.letters.'ot.worki'g

please.help.
as.you.ca.see.my.spaces.ad.the.letter.after.comig.after.m.i.the.alphabet.ist.wor kig.ad.some.others.
ahhhhh
i.tried.a.plug.i.keyboard.but.o.differece.
i.have.a.imac

If you haven't rebooted since this started, try that first.

Similar Messages

  • Urgent help required to make variableRowHeight & rowCount work hand in hand for a Datagrid

    HI,
    I am using variableRowHeight property on a datagrid to wrap the text and this works perfectly.
    At the same time, I have to assign rowCount dynamically. My logic for caluculating rowCount is rowcount = sampleData.length > 5 ? 5:sampleData.length; where sampleData is my ArrayCollection. The caluculation happens correctly.
    The issue here is rows of the datagrid do not show correctly.
    From the post http://forums.adobe.com/message/2350643#2350643 I understood that both variableRowHeight & rowCount do not work hand in hand.
    So, I tried removing variableRowHeight and it works fine. The solution says using measureHeightOfItems and viewMetrics to calculate the height may solve the issue. I did not understand it very clearly.
    Can anyone let me know the solution with example.
    Thnaks
    Code
    =========
    <?xml version="1.0"?><mx:Application  xmlns:mx="http://www.adobe.com/2006/mxml" initialize="init()" xmlns:itemren="
    com.itemren.*">
     <mx:Script>
    <![CDATA[
     import mx.rpc.events.FaultEvent; 
    import mx.rpc.events.ResultEvent; 
    import com.vo.HeaderVO; 
    import com.vo.DataVO; 
    import mx.utils.ObjectUtil; 
    import mx.collections.IViewCursor; 
    import mx.controls.Alert; 
    import mx.collections.ArrayCollection; 
    Bindable] 
    public static var sampleData:ArrayCollection = new ArrayCollection (); 
    Bindable] 
    public var rowcount:int; 
    public function init():void { 
    sampleData.addItem( { AssetNo :
    "234567890", AssetName : "Asset Name 1", Amount : "10000.02" } );sampleData.addItem( { AssetNo :
    "234567891", AssetName : "Asset Name 2", Amount :"2.04" } );sampleData.addItem( { AssetNo :
    "234567892", AssetName : "Asset Name 3", Amount : "4578.00" } );sampleData.addItem( { AssetNo :
    "234567893", AssetName : "Asset Name 4", Amount : "384.00" } );sampleData.addItem( { AssetNo :
    "234567894", AssetName : "Asset Name 5", Amount : "21454.20" } );sampleData.addItem( { AssetNo :
    "234567890", AssetName : "Asset Name 1", Amount : "10000.02" } );sampleData.addItem( { AssetNo :
    "234567891", AssetName : "Asset Name 2", Amount :"2.04" } );sampleData.addItem( { AssetNo :
    "234567892", AssetName : "Asset Name 3", Amount : "4578.00" } ); 
    trace ("sampleData.length ========= "+sampleData.length); 
    rowcount = sampleData.length > 5 ? 5:sampleData.length;
    trace("count is ==== "+rowcount); 
    dg.rowCount=rowcount;
    trace("dg.rowCount is === "+ObjectUtil.toString(dg.rowCount)); 
    dg.dataProvider=sampleData;
    ]]>
    </mx:Script>
     <mx:Panel title="POC for dynamic rowCount of datagrid" height="100%" width="100%" paddingTop="
    10" paddingLeft="10" paddingRight="10"> 
    <mx:DataGrid id="dg" width="50%" wordWrap="true" variableRowHeight="
    true">
     <mx:columns>
     <mx:DataGridColumn dataField="AssetNo" headerText="Asset No" paddingLeft="20" />
     <mx:DataGridColumn dataField="AssetName" headerText="Asset Name" paddingLeft="20"/>
     <mx:DataGridColumn dataField="Amount" headerText="Amount" paddingLeft="20"/>  
    </mx:columns>
     </mx:DataGrid>
     </mx:Panel>
     </mx:Application>

    Hi,
    have you checked your bindings not only for the WF --> Method, also for the Method --> WF?
    Christoph
    Of course I mean the bindings between Task and Method / Method and Task
    Edited by: Christoph Schle on Dec 21, 2007 11:05 AM

  • Help me with some question about Worker/Service/Task in JavaFx 2

    I have read some articles in the forum adout mutithreading in JavaFx2, and now I know if I want to do some long-run jobs, i should use Service/Task.
    But my application needs a function like this:
    1. here is a long-run job(something like getting data from database or other resources);
    2. If I clicked a button, then the job started and get the data.
    3. When the job is done, I show the data in the tableview of my JavaFx application.
    4. then the job waiting some random time(such as 100 seconds).
    5. then the job started again automaticlly.
    so, the steps are 2->3->4->5->3->4->5->3->4->5->........
    so, the important things is that the job runs many times automaticlly.
    I know I should implements the job as a Service or Task in javaFx, But where should I put my "while(true){ job.start();sleep(random_time);}" loop code to make the job start automaticlly after some random sleep time.
    I wonder what is the best practice for this use case.
    My english is poor, but i hope you can understand what i'm dealing with.
    Thank you very much!
    Edited by: user9529194 on 2011-12-18 下午8:20

    Hi,
    Based on the response from John,
    I think you can acheive the functionality as below.
    // Creating the tableview.
    TableView<Person> personTable = new TableView<Person>()
    // Instantiating the personlist.
    ObservableList<Person> persons = FXCollections.observableArrayList();
    // Setting the list to the table.
    personTable .setItems(persons)
    final Button button = new Button("Refresh");
    final Timeline repeatTimeLine = new Timeline(
          new KeyFrame(Duration.seconds(100), new EventHandler<ActionEvent>() {
                @Override
             public void handle(ActionEvent event) {
                    // Call the service method to update the list.
                       PersonService.updatepersons(persons );
    button.setOnAction(new EventHandler<ActionEvent>() {
         @Override
         public void handle(ActionEvent arg0) {
                 repeatTimeLine.setCycleCount(Timeline.INDEFINITE);
                 repeatTimeLine.play();
    });And in the Service class...
    public void updatepersons(final ObservableList<Person> persons){
              final Task<List<Person>> getPersonTask = new Task<List<Person>>() {
              @Override
              protected List<Person> call() throws Exception {
                   return getPersonService().getPersons();
         getPersonTask .stateProperty().addListener(new ChangeListener<State>() {
              @Override
              public void changed(ObservableValue<? extends State> arg0, State arg1, State newState) {
                   switch (newState) {
                   case SUCCEEDED:
                        persons.clear();
                        persons.addAll(getPersonTask .getValue());
                        break;
                   case FAILED:
                        break;
         ThreadManager.getInstance().schedule(this.getClass(), getPersonTask );
    }I hope this code can give you some idea.
    Happy Coding !! :)

  • Space bar don,t work

    Need Help my space bar is not working the rest is fine. What can I Do to fix it.
    Thank you.

    Hi I press the num/lock key and then I restart the computer and Guess what the space key start working again.
    This my Help someone with the same problem. hope keeps on working from now on.
    Thanks

  • After ios 5 update my iphone 3gs stopped writing some letters (t, f, c) and some 5 number. please help. !

    after ios 5.0.1  update my iphone 3gs stopped writing some letters (t, f, c) and some "5" number. please help. !
    and the unlock slider is not working properly, i have to slide many times to open the phone.

    Same problem.

  • Youtube not opening in Safari browser. However it works with google browser. There is a red arrow coming, with https in you tube, and the page just does not open. help required.

    youtube not opening in Safari browser. However it works with google browser. There is a red arrow coming, with https in you tube, and the page just does not open. help required.
    It seems I have done some mistake when you tube was open, and i stopped one site to delete!
    From then on it is not working.
    Any solutions?
    GV Joshi

    Hi gajanan vasant!
    I have a couple of articles for you that should help you troubleshoot your issue with Safari. First, you may want to try a reset on Safari by following the procedure listed in this article:
    Safari 5.1 (OS X Lion): Reset Safari
    http://support.apple.com/kb/PH5043
    If you are still having issues after resetting Safari, you may want to check out this article about third-party add-ons in Safari:
    Safari: Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues
    http://support.apple.com/kb/TS3230
    Thanks for using the Apple Support Communities!
    Regards,
    Braden

  • Help required with Photoshop Elements 4.0 this has been installed on my new Toshiba laptop with windows 8.1 for some 18 months and operating well. Now it will not open, message pops up saying "attempt to access invalid address" then "application not respo

    Help required with Photoshop Elements 4.0 this has been installed on my new Toshiba laptop with windows 8.1 for some 18 months and operating well. Now it will not open, message pops up saying “attempt to access invalid address” then “application not responding” Suggestions how to access would be much appreciated. Tks. Stuart

    What is the size of your hard disk?  PSE 4 is a very old program and I suspect it is not able to access the entire hard disk on your machine.  Just a thought here.

  • I have been able to access a site regularly but in the last few days get a message: "cookies required to access this site." please help, I use this site for work daily:)

    I have been able to access a site regularly but in the last few days get a message: "cookies required to access this site." please help, I use this site for work daily:)

    Goto > Settings > Safari... Enable Cookies > Always
    Good luck!

  • Shift key only working on some letters ?!?

    Ok - this just started ...
    I can get capitals by using cap-lock on all keys.
    Please help - obviously this is pretty annoying.
    with the regular shift it works as below.
    letters in upper case work with both shift keys
    letters in lower case work with neither shift key
    letters that work with only the right key as noted:
    AAAA
    bbb
    ccc
    DDD
    EEE - only with right shift key?
    FFF
    GGG
    HHH
    IIII - only with right shift key?
    JJJ
    KKK
    LLL
    mmm
    nnn
    OOO - only with right shift key?
    PPP
    QQQ
    RRR
    SSS
    TTT - only with right shift key?
    UUU - only with right shift key?
    vvvv
    WWW - only with right shift key?
    xxx
    YYYY - only with right shift key?
    zzzz - - only with right shift key?
    ~!#$%^&*()_+{}|:"?? - left & right carrot also do not work - rest of symbols seem to be ok

    Keyboard failure. Hopefully you have Applecare. Hopefully it didn't fail after spilling liquid on the keyboard, but if so hopefully you have a separate keyboard (this is an iMac forum) rather than the MacBook you list in your signature.

  • Plz help i cant use some letters while writing

    i cant use some letters on the keyboard in landscape mode
    in english it works very fine but in arabic i cant use 3 letters when i press on screen no thing happens i just dont know how to fix this
    this problem is new the phone was working very fine
    the 3 letters which i cant use is in the middle of keyboad in landscape mode
    sry for my bad english

    Perhaps it's a hardware problem then? Again you had better visit a Nokia Care point http://europe.nokia.com/support/repair-and-recycle/repair/care-points
    If you want to thank someone, just click on the blue star at the bottom of their post

  • I just got a new iPhone 5.  The sales person helped me transfer some of my photos from my Mac back to my phone.  Now, my iPhoto on my computer doesn't seem to be working.  Photos are there in photo stream, but I can't transfer them to events.  Help!!!

    I just got a new iPhone 5.  The sales person helped me transfer some photos from my MacBook Pro to the iPhone.  Now, I can't get iPhoto to move photos from Photostream to events.  Help!

    Make sure you have iPhoto's Photo Stream preferences set as follows:
    What happens when you drag photos from the Photo Stream window in iPhoto onto the Events icon in the left hand pane?  That should import the photos into the library.
    If it doesn't thenTry the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
    User/Home/Library/Caches/com.apple.iPhoto folder (Snow Leopard and Earlier).
    or with Lion and Mt. Lion from the User/Library/Containers/com.apple.iPhoto/
    Data/Library/Caches/com.apple.iPhoto folder
    3 - launch iPhoto, reset its various preferences and try again.
    NOTE 1: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    NOTE 2:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    OT

  • Some letters are missing when I open a PDF in Firefox. Works fine in other browsers.

    When I open a PDF using Firefox, some letters in words that are printed across the document are missing. I believe the creator of the document used a text box to add "Draft" on it. The D is missing. Other words I have found are "Copy Non-negotiable" and the C is missing. These same PDFs open fine in IE and Chrome. Have experienced it on V22-V25. Using Windows7

    Starting in Firefox 19, PDF files will display by default in a built-in viewer. This viewer does not yet support all of the features of the Adobe viewer, and may also have some bugs. Other than changing viewers, as described in the following article, I'm not sure what to suggest.
    [[How to disable the built-in PDF viewer and use another viewer]]

  • I'm looking for some help setting up a cross platform work station with Mac/Windows

    I've worked with Mac for all CS Suite programs to date, but now need more power for some publishing/editing work - and would like to keep two computers working back and forth for various parts of projects -  and a PC desktop is more affordable for an upgrade to my laptop.  Can I work interchangeably between platforms with the CS subscription?  What are the drawbacks (file integrity) and any device issues that I may need to deal with? 

    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Urgent help required: Query regarding LC Variables

    Hi All
    Sometime earlier I was working on a performance issue raised by a customer. It was shell script that was taking almost 8-9 hrs to complete. During my research I came across a fact that there were some variables which were not set, the LC variables were impacting the sort funnel operations because of which the script was taking a long time to execute.
    I asked them to export the following commands, after which the program went on smoothly and finished in a couple of mins:
    export LC_COLLATE=en_US.ISO8859-1
    export LC_MESSAGES=C
    export LC_MONETARY=en_US.ISO8859-1
    export LC_MONETARY=en_US.ISO8859-1
    export HZ=100
    export LC_CTYPE=en_US.ISO8859-1
    export LANG=en_US.UTF-8
    Later I did recover that setting the LC_COLLATE to C, is not helping and the program was again taking a lot of time. Few questions that I want to ask are:
    1. Can someone please tell me, what each of these variable mean and how these values make a difference.
    2. When I exported LC_COLLATE=en_US.ISO8859-1, it worked fine, but when i tried with the defalut value LC_COLLATE=C, then why the program didnt work.
    As this issue is still going on, hence I would request All to provide their valuable inputs and let me know as much as possible.
    Appreciate your help in this regard.
    Thanks
    Amit
    Hi All
    A new development in this regard. The customer has send us a screen shot in which they were trying to export the locale variable using the commands which I have pasted above. I can see in the screen shot that while exporting LC_COLLATE and LC_TYPE, they get a message that ""ksh: export: couldn't set locale correctly"".
    Request everyone to please give their inputs as it's a bit urgent.
    Thanks for all the help in advance.
    Thanks
    Amit
    Some help required please...
    Edited by: amitsinhaengg on Jul 22, 2009 2:03 AM
    Edited by: amitsinhaengg on Jul 22, 2009 2:06 AM

    LC_CTYPE
    Controls the behavior of character handling functions.
    LC_TIME
    Specifies date and time formats, including month names, days of the week, and common full and abbreviated representations.
    LC_MONETARY
    Specifies monetary formats, including the currency symbol for the locale, thousands separator, sign position, the number of fractional digits, and so forth.
    LC_NUMERIC
    Specifies the decimal delimiter (or radix character), the thousands separator, and the grouping.
    LC_COLLATE
    Specifies a collation order and regular expression definition for the locale.
    LC_MESSAGES
    Specifies the language in which the localized messages are written, and affirmative and negative responses of the locale (yes and no strings and expressions).
    You can use command
    # locale -k LC_CTYPE
    to see more detail about each type.

  • Account field required for some users, not for others in URM when checking

    I am running into a real show stopper. I have been working in our development database, and have tested checking in content multiple times with no problems. I recently turned it over to my users to begin testing and they can not even check in one document, because they receive an error stating that the account is required. I know just enough to be dangerous, so I am not quite sure how to solve this one. It makes no sense to me that on my check in screen, account is not required and yet on all of my users check in screens, not only is it required, but nothing they enter is accepted as a valid value, so they can't even get past it. I would just as soon not have account show up or be required, but have struggled with making that happen, since it is not a custom metadata field. It appears to be a delivered field used for security purposes? any help would be appreciated! Thanks.
    One more thing that I noticed that may be helpful in diagnosing this is that my profile has no accounts, just #none,#all
    whereas the user's profiles have a number of different accounts listed in their profile. Could this be part of the reason that they are forced to enter an account when checking in content and I am not?
    If so, how can I get around this?
    Edited by: user10985708 on Apr 7, 2009 12:21 PM

    That´s a little strange behaviour becouse normally the account field is not required as default.
    You could try a global rule setting the Account field not to be required with some IDOC.
    But as you say you´re not using accounts anyway i´d suggest removing it from your server instance.
    In the server\config\CONFIG.CFG file look for UseAccounts=true set it to false and the field won´t bother you anymore.

Maybe you are looking for

  • Trying to upgrade to 10.4 but keep hitting a snag

    I'm in the process of trying to upgrade to 10.4, and the Read First file on the install disk says that you should do a Software Update to make sure everything's up to date, but when I go to Software Update from the Apple menu, nothing happens. I trie

  • When i use Adobe Premiere Elements 10, after about 10 minutes it stops working please help

    I recently purchesed Adobe premiere elemnts 10 and it installed correctly, and it loads up fine but once i start putting video together, it starts to mess up, the video i cant watch because its very slow and jumpy and then after a few minutes of me e

  • Notebook connecting to TV

    I bought a display port (male) to HDMI (male) cable to connect my Elitebook 2560p to Samsung TV. Tv screen says "No Signal" please check cable connections, but everything is connected well. Still does not work after choosing 2nd screen and/or Fn f4.

  • Create a new user with Privileges to execute Seeded API's

    Hi, We have a requirement from our client, they want to create a new user with Privileges to execute Seeded API's, So they dont want to execute using APPS user. We want to know is it possible to have a new user for executing seeded API's and if so wh

  • Wireless keyboard/mouse unable to wake imac

    I am currently using a iMac G4, D-Link DBT-120 vers B3 and have been unable to wake computer using wireless keyboard or mouse. Once computer is awake (using wired mouse) keyboard is fine. I have tried updating bluetoothversion but am told it is curre