Cursor getting locked problem

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default Cursor getting locked problem

    hai all,
    i had a problem with cursor.iam invoking a webservice from flex client .for
    that i set busy cursor and timer cursor is showing up till my server returns
    the content after receiving i have some action script
    code executing to display in my required format.But the cursor that is
    revolving nature gets locked when the actionscript code is executing .how can i
    eliminate this behavior .i want the timer to revolve till the data displayed in
    the client.
    Any body has any idea.pls give suggestion

    kittuokkade Guest

  2. Similar Questions and Discussions

    1. Problem Loading pdf using AxInterop.AcroPDFLib (file locked)
      Hi, I'm currently using AxInterop.AcroPDFLib with C# in a winform application. Purpose is to display PDF files in my application. Thoose files...
    2. Problem with locked index.htm
      I designed a site in DW and have one user making content changes to the site using Contribute 4. They can modify all pages except index.htm....
    3. cursor 200-problem on mac but not pc? how to swap cursor image?
      Hi, I want to hide the cursor in my projector. I've been using "cursor 200" for some time now and it works fine. But now, when I try my projector...
    4. Update cursor showing error 244 (row locked) even when row is not returned
      Hi Phil. Just suggestion. Your lock mode of table is PAGE lock ? Check your lock mode as bellow. % oncheck -pt stores7:customer TBLspace...
    5. Update cursor showing error 244 (row locked) even when row is not returned by query
      Hi everyone, We have a requirement here that we should be able to run two instances of the same program to fetch rows from a table and get the...
  3. #2

    Default Re: Cursor getting locked problem

    This is because your request gets encoded and this process will consume the
    whole cpu-power. another thing is that action script is not multithreating. we
    had the same problem. what we did, was to write an own encoder, and during the
    encoding-phase we made some "sleep phase" so that the user-interface (and also
    your cursor) cans update. But it is not easy to write such a code, because this
    will look different for ever encoder

    btw: we also did this for the decoders

    dietmar.paulus Guest

  4. #3

    Default Re: Cursor getting locked problem

    hai paulus,
    your explanation seems to be correct.The thing is during
    execution of actionscript cursor timer getting locked.i had UI in which deals
    with graphical images, action script takes some time .user can notice this
    behavior.eliminating this is important .you said that you already did it.can u
    tell me is there any useful links to show me the way.

    kittuokkade Guest

  5. #4

    Default Re: Cursor getting locked problem

    still i had no solution .any body can show me the way.
    kittuokkade Guest

  6. #5

    Default Re: Cursor getting locked problem

    Use cursormanager.setfocus() on click of one component and cursorManager.removeBusyCursor(); on close of same component . Hope this helps
    Unregistered Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139