AMFPHP and AS3FLEXDB - how to disable 'busy indicator' during query execution ?

I'm doing some experiments with Flex and SQL with use of as3flexdb and AMFPHP.
I've written some application which is pushing some data to SQL base...
problem is, that durring query execution, there is some 'busy indicator' on the screen
- some circle, and word 'loading'.
Have you any idea how to disable this ?
Everything what I'm doing is based on this tutorial below, but there is no idea in it how to
disable the indicator.
http://ghalex.com/blog/tag/as3flexdb
I'm not sure if this indicator comes from as3flexdb libraries or AMFPHP itself ?
Has anyone of you had such problem before ??
Thanks for all ideas
Rymas,

Unfortunatelly my cheers was to early
I've successfully decompiled the library swc file, found Query.as class and corrected things mentioned in this
post : http://itutorials.ro/viewtopic.php?f=9&t=22&p=59&hilit=loading#p59
... but I cannot compile the library.fla back to swf ... it's generating some errors
Could anyone help me with that, maybe you've got more expirience with decompiling and compiling.
Orginal .swc file is here : http://www.rymasek.iq.pl/swc/as3flexdb_1.3.0.swc
Thanks for help !!

Similar Messages

  • Use BAM in ALBPM  --- How to use "Business Indicator variable" ?

    In ALBPM60_Studio_ReferenceGuide.pdf, there is text like that:
    Using Variables in BAM
    When creating a Project variable, you can define it as a Business Indicator variable. This allows the variable to be stored in BAM the database.
    When you add Business Indicator variable to your process, a column is added to the following BAM database tables:Workload, Task Performance and Process Performance. The name of this column is the Business Indicator name preceded by the prefix "V_".
    If you define a business dimension, the workload table contains one row for each possible value of this business dimension present in the process. Each of this rows will show the quantity of instances that match that business dimension.
    When you define a measurement business variable the sum of this variable's value for all in flight is stored into workload table. If business dimensions were defined as well, then this sum will be divided into as many rows as business dimension values present in flight instances.
    Task performance table stores one row for each instance that completes an activity. Each of these rows contains the value of dimensions and measurements at the time the instance completed the activity.
    In a similar way, process performance table stores one row for each instance that gets to the end activity. Each of these rows contains the value of dimensions and measurements at the time the instance completed the whole process.
    QUESTION:
    1. What's meaning is that writed in bold italic? (Can anybody give me a samaple?)
    2. How to use Range of Business Indicator variable?(When I set range in my sample,this varible can't save into BAM_WORKLOAD, BAM_TASKPERFORMANCE, BAM_PROCESSPERFORMANCE)
    Edited by just9doit at 01/15/2008 10:18 PM

    Hi Saket,
    Check the Tcode - BUPA_DEL.

  • Magnetic charger and call - how to disable speaker default?

    When charging with magnetic cord, calls are, by default, on a speaker.
    How to disable speaker selection???

    Hi,
    This can't be disabled. When the phone is charging via the magnetic charging dock and you answer a call, the loudspeaker will be enabled. But once you remove the phone from it, the sound will automatically go via the ear speaker. It's not meant that you should lift up the whole charging station for answering a call.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • How to disable edit qury in Query Manager.

    Hi,
    We written query and normal user don't want to edit query only they have to execute the query. in authorization setup under Extension Tools  we have only Define Formatted Search and Manage User Fields and Execute Commands.how we can disable to edit query for particular users in SAP B1. we are using SAP B1 2005 PL43.
    Regds,
    Samapth Kumar.

    In Authorizations window > go to Reports > Query Wizard > No Authorization

  • How to disable close button during runtime

    Hi everybody.,
    Please help me how to disable the close button at top of the window during runtime. I dont want the user to use that button to close. I have used button called Exit in that form but sometimes users closing by clicking that button.
    I am using Oracle form 10g R1.
    Thanks in Advance,

    Hi,
    Thanks Mr. Arif Khadas for your quick reply.
    While running the form, in window there will be two close button, one is in form and another one is in Internet Explorer. By making changes on the property what you said above this will hide only the form's close button. I want to hide the internet explorer close button also.
    Thanks in advance.

  • Will an iPhone automatically turn off location services.  If it goes below a certain battery power level, and so how you disable this in settings.

    I am working with Georgia DOT and we have created an app to track our state vehicles using IPhone 5. My question is: will an iPhone automatically turn off location services?  If it goes below a certain battery power level, and if so how do you disable this in settings.
    Message was edited by: mickyel

    I don't believe that this will happen, however, the entire iPhone will shut down when the iPhone reaches the auto-shutdown power level. There is no way to turn that Off other that connecting the iPhone to power.

  • Keynote and Macbook - How to disable "play" key from starting presentation?

    I use Keynote to view lecture presentations with audio running in the background from the lecturer (in Quicktime 7) or music (in iTunes 9).
    As such, there are times when I need to press the play/pause keys on my Macbook Pro's keyboard since the audio may have gone past the point I've read on the slide.
    In Keynote however, hitting the "Play" key starts the presentation and stops the audio in the background.
    How can I disable Keynote from taking commands from the audio control keys?
    Thanks!

    Hey thanks. But, I tried.
    Where I hit the wall was, trying to figure out where in the menubar of the Quicktime app I could find the menu text for Play/Pause.
    There is no such thing.
    I need a menu command 'text' for this Keyboard shortcuts setting (sys pref) to work.
    So, because of this, I can't assign the Play command to quicktime to anything else.
    The default key is the Spacebar (Play/Pause) or the F7,F8,F9 in recent keyboard setup.
    For now, I just Cmd+Tab between apps when doing the transcript.
    True, I could use something else for transcript and then import text afterwards.

  • How to disable UI element during runtime

    Hi!
    Can someone show me how to access the properties of ui elements during runtime?
    eg. in the method  WDDOINIT i want to enable/disable the GroupBox "Group"
    how to?
    thanks

    >
    Abhimanyu Lagishetti wrote:
    > ideal way is the one i specified,
    >
    > other way is you have to change it in WDDOMODIFYVIEW
    >
    > to get any UI element this is the code
    >
    > view->get_element( '<ID of the UI element>' ). which return the corresponding UI element reference
    >
    > the UI element classes start with CL_WD_*.
    >
    > for example: inputfield CL_WD_INPUT_FIELD
    > data: lr_input type ref to cl_wd_input_field.
    > lr_input ?= view->get_element( '<ID of the UI element>' ).
    > lr_input->set_enable( abap_true ).
    >
    > Abhi
    I would like to stress that this NOT the SAP recommended way of controlling the properties on UI elements - the first solution you were give would be the recommended approach.  The direct UI coding access should be used as a last resort when working with dynamically generated UI elements.  Otherwise you should always try and set the UI element properties via context binding. This makes your application more accessible to customizing/personalization, makes it easier to maintain over time and provides the best performance.

  • How to disable internet access during Adobe AIR installation

    Hello,
    I am trying to install Adobe AIR in an enterprise environment on numerous clients.
    Unfortunately the installation procedure always tries to open an internet connection during installation.
    As all users in our company require proxy authentification for internet access, the authentification dialog of our proxy always shows up when installing Adobe AIR. So the installation can not be processed without any user interaction.
    We would like to install Adobe AIR silently in the backround. So we are looking for an opportunity to disable the internet access during AIR installation.
    Thanks for any help,
    Alex

    Hi Alex,
    You might want to give the Settings Manager a try (located at the bottom of this page.)  However, I suspect the network might still be pinged regardless of this setting.  Please let me know how it goes.
    Thanks,
    Chris

  • How to restrict business place during billing or billing spilit

    Dear All,
    According the requirement we activated business place as on plant level, during miro by default business place coming i.e correct but on SD side we don't need any business place .
    In one sales order have no. of line item for one plant have business place activated remaining item no business place activated respective plant during invoicing for the same month collectively system get error "Splitting due to different header data business place" , any standard config setting which i can restrict from SD side.
    Regards,
    Deepak

    Do u use an ACS?
    If yes, simply configure the group of the users NAR.
    AAA client-2811 IP address
    Port-*
    CLI-*
    DNIS-*business (or guest)
    This will not "redirect" the users to the right SSID but will permit/deny the user access to the WLAN based on the SSID they're trying to associate with.
    Another way to do it is to actually define two profiles with different AAA but same SSID.
    Example SSID = ACME Profile Business AAA=WPA2
    SSID= ACME Profile Guest AAA=none (web auth etc)
    Then you can restrict access based on the profile (apply ACL etc)
    This doc might help
    http://www.cisco.com/en/US/tech/tk722/tk809/technologies_configuration_example09186a00807669af.shtml

  • IDT SDK - how to disable trace / logs?

    Hello,
    I wrote Java application using IDT libs (from SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\SL SDK\ folder).
    When I open local unx universe using IDT SDK, something create files like:
    java_ncs.trc
    java_2404_2014_05_28_21_17_27_727_trace and similar
    TraceLog_2404_2014_05_28_23_16_40_376_trace.glf and similar
    How to disable / stop it?
    SAP BI 4.1 SP3

    Hi
    Check below link.
    http://www.eit.lth.se/fileadmin/eit/courses/edi021/datablad/Processors/MIPS_IDT_Sim.pdf

  • Officejet 4630 ink drying message popup. How do disable

    Received printer for Christmas. Installed fine. Prints fine.
    Issue is pop up message telling me ink is drying to enable duplex operation. The pop up steals the mouse cursor and so effectivally prevents other usage of the computer while printing duplex. I don't need the pop up for every document I print let alone every page of every document.
    Where is the option to disable this pop up message.
    Thanks
    dchoyt

    Hello dchoyt.
    I understand your concerns. What is your operating system on your computer? Windows or Mac? Please follow this HP document on Printer Driver Setting For A Windows Computer.
    In this document it will provide step-by-step information on how to disable "Dry Time" and/or how to disable "Duplex" options.
    Please inform me if this resolved your issue or not.
    Looking forward to hear from you.
    I worked on behalf of HP.

  • Conditionally disabling record updation after query

    Dear members
    I've a single record block and I wanna conditionaly disable records updation after query has fetched data. Problem is that if I disable the record updation in Post-Query trigger then it checks the condition for the very first fetched record and it the condition is true, then Updation is disabled for all the fetched records, even if the next records dont meet the condition. I'm using forms-10g. Can u give a better solution??? thanx.

    you have to use SET_ITEM_INSTANCE_PROPERTY to modify only one record:
    BEGIN
        IF ... <your_condition> THEN
            SET_ITEM_INSTANCE_PROPERTY('YOUR_BLOCK.YOUR_ITEM1', UPDATE_ALLOWED, PROPERTY_FALSE);
        ELSE
            SET_ITEM_INSTANCE_PROPERTY('YOUR_BLOCK.YOUR_ITEM1', UPDATE_ALLOWED, PROPERTY_TRUE);
        END IF;
    END;

  • How to know if executing a query cost long time

    Hi,
    I have a question about how to figure out if execution of a query takes long time. I am building a web application in java. The back end database is oracle. If a query is too large, I want to put show the user the error message to let the user make more specific query. but how can I tell if the query execution takes long time? Thanks.

    The following link may be of help.
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96536/ch3175.htm#1123208

  • How to Disable the Process Header, collapsible Area, and Process Warning Bar from Contacts Form of CRM 2013

    Folks,
    How to Disable the Process Header, collapsible Area, and Process Warning Bar from Contacts Form of CRM 2013
    Thank you.

    Hi,
    You can deactivate the business process itself if you do not want at all. So that the header will not available for the entity.
    Regards,
    Priya

Maybe you are looking for

  • Media Encoder CC crashes on launch (7.1.0, on Mac OSX 10.9)

    My Media encoder crashes on luanch every time since I installed Mavericks. Everything is updated to the latest version and I've tried uninstalling the entire Premiere CC package and reinstalling, numerous restarts, etc. This is on a Macbook Pro 17" L

  • Discoverer 3.1 query governor help

    I'm trying to schedule some queries in discoverer through a batch file with command line entries. My batch file works, but I can't get all my data back. I am assuming that the queries are using a default setting for the query governor(10,000). I have

  • How to create startup disk to defray

    I need to defrag. I have iDefrag software on a USB drive. When I use the Snow Leapoard install disk to start up, I cant see the USB drive where iDefrag rests. Can someone please advise.

  • Code Navigator Issue.

    Hi - I have just installed DW and pasted some web page source code into the main window. The problem is whenever I click any where in the code window I get the code navigator popping up. I tried disabling it as mentioned in the help topic by clicking

  • Low contrast on scanned pdf

    I have a large number of documents that appear to have been scanned on grayscale. The background is white, but the text is gray and difficult to read. Is there an easy way to increase the contrast of the document in pdf form? So far, I have been able