Question about "share screen" function

When I am watching at another persons screen, is there a way to hover your mouse over the remote computers window without it effecting the pointer on the remote computer?
Thank you

kevinmathie wrote:
Hi all,
I'm recording vocals on a song that has lots of ritardandi and rubato. While the vocalist is here, we'll be setting her part of the tempo mapping in "stone," so to speak, but not necessarily the instruments' tempo mapping between her verses or before her verses.
I usually record this kind of thing in Digital Performer, because I know that the audio sticks like glue to any ritardando, accelerando, etc., I may put in after recording the audio.
My question: Does the "Follow Tempo" box in Logic let me program in ritards after the audio is recorded, without messing up how the audio is synced to the sequence?
Yes.
In other words, if the audio region spans bars 12-24, and I plug in a big ritard at bar 15, followed by "a tempo" in 16 after the audio is recorded, will the audio region follow the tempo mapping?
Yes.
+"Plug in a big ritard"+ ? You are one tough composer!
2nd question: Does it do it automatically? Or, like Digital Performer, do I need to tell it to follow the tempo mapping after I change tempo?
No, it 'responds' to tempo events in the *tempo track*.
Any other tips/suggestions regarding this function that you feel would be helpful for me?
Yep, it can eat up RAM. When you enable follow tempo for a track, the whole audio file is loaded into RAM. Use a utility like MenuMeters to keep an eye on RAM use. http://www.pure-mac.com/diag.html#menumeters
You can find all relevant info on pages 526-527 of the *Logic Pro 8 User Manual*.
regards, Erik.

Similar Messages

  • Some question about the renegotiation function in SRM Contract (GOA)

    Hi All Expert,
    We are on SRM 5/4.6,  there is a question about the renegotiation function in SRM GOA.
    Can we renegotiate the price for some parts in the GOA items with this function ( e.g. Only renegotiate one item in the contract) ?
    Will the item price updated automatically after the renegotiation?
    Many thanks in advance!!!
        Wendrin

    Hi Sanjeev,
    Many thanks for your help.
    One more question, if I add a new item when we renegotiation, will it be transfered to contract and create a new item after that?
    Thanks and best regards
    Wendrin

  • Questions about user-defined functions

    Hello all,
    I've got some questions about user-defined function in a message mapping:
    1) How can I get the current date/time in format yyyy-mm-dd hh:mm:ss ? What is the java code for this?
    2) I want to use the StreamTransformation constant TIME_SENT, only this is not in the right time-zone.
    It is GMT and it should be CET (1 hour difference). How can I convert this in Java?
    Can somebody help me with this?
    Thanks in advance.
    Kind regards,
    Marco van Iersel

    Hi Marco,
    If the date format is fixed as you have mentioned,please use this:
                                    String test = "2009-03-27 23:15:30";
              String test1 = test.substring(11,13);
              if(!test1.equals("23"))
              int a = Integer.parseInt(test1);
              int b = a+1;
              System.out.println("b"+b);
              String c = Integer.toString(b);
                                    test = test.substring(0,10)+" " + c + test.substring(13,19);
                                    return test;
              if(test1.equals("23"))
              test = test.substring(0,10)+ " 00" + test.substring(13,19);
              return test;
                                    else return "";
    Kindly let me know if this works.
    Thanks.
    Regards.
    Shweta

  • Question about PL/SQL Function in report

    Hi all. I have a (basic) question about using a PL/SQL function in a report. In my report page I have an item (PL/SQL function) that has the following syntax:
    return username from t1
    where username like 'Le%'
    I reference this item in an email process. Ideally this function would return all usernames that begin with 'Le' in the drafted email; however, its not looping so I'm only getting a return on the first name.
    I have a few books on PL/SQL but I'm not exactly sure where to start - I imagine there is a loop process I need to integrate into the function but, like I said, I'm not sure.
    I would have posted this to the PL/SQL forum but also wanted some feedback on whether or not using this method is the best way forward. Essentially I have a table with usernames and just want to send email messages based on some simple logic.
    Thanks!
    Len

    Hi Sergio,
    First, it's an honor to have you reply to my post. Thanks!
    To be more specific,
    T1 is a table containing the results from a user security scan. Username is a column in this table containing user names. What I have done is create a page in HTML DB with the following elements:
    1. An 'Item' containing the PL/SQL function that is hidden. The purpose of this Item is to generate information from T1 that meets the simple logic parameters - in this case, the user names that begin with "Le". I have called this Item P145_TT
    2. A 'Process' containing references to HTMLDB_MAIL. The 'Process' looks similar to this:
    HTMLDB_MAIL.SEND(
    P_TO => '[email protected]',
    P_FROM => 'Anon Email Account',
    P_BODY => 'Note: This message was automatically generated. Do not attempt to reply to this email.
    These are the users that begin with Le: '||:P145_TT||' ',
    P_SUBJ => 'Summary');
    3. A 'Button' to submit the process and (hopefully) send the message containing all users that adhere to the logic in the function.
    4. If I use 'return username from t1...' I will get a username generated, but like I said previously, it only gives me the first and does not loop.

  • Question about Custom Escalation Function

    I want to use a Custom Escalation Function described on this document:
    http://docs.tpu.ru/docs/oracle/en/owl/E14571_01/integration.1111/e10224/bp_workflow.htm#BACHEFDH
    I want to execute a custom function on task EXPIRATION.
    Main Question: The "Custom Escalation Function" is just for Escalation or i can use too for EXPIRATION ?
    Thanks.
    Victor Jabur

    Okay Experts. The problem is solved. There was no problem with the custom key figure function. The problem was with the sales order data. The sales order details for the material in question were under the "make to order" segment and the other transaction data info was in the "make to stock" segment.
    Once i found this out , i tried loading someother material and it worked perfectly.
    Thanks
    Aparna

  • One question about Selection screen

    Hi experts,
    I am writing a report, on the selection screen, I need to input the file path and then do the file upload.
    My question is about how to check the file path I put is correct or not? If it is incorrect, I want to get a message and the cursor still in the field and don't jump to the next page.
    How can I do like that?
    Any one has any suggestion, please help me.
    Thanks in advance.
    Regards,
    Chris Gu

    Hi Chris,
        do it this way: check my code after calling gui_upload what condition i am using.
    parameters:
      p_file type rlgrap-filename.          " File name
    *           AT SELECTION-SCREEN ON VALUE-REQUEST EVENT               
    at selection-screen on value-request for p_file.
      perform get_file_name.
    *                       AT SELECTION-SCREEN EVENT                    
    at selection-screen on p_file.
      perform validate_upload_file.
    *  Form  GET_FILE_NAME                                               
    form get_file_name.
      call function 'F4_FILENAME'
       exporting
         program_name        = syst-cprog
         dynpro_number       = syst-dynnr
         field_name          = ' '
       importing
         file_name           = p_file.
    endform.                               " GET_FILE_NAME
    *  Form  VALIDATE_UPLOAD_FILE                                        
    form validate_upload_file.
      data:
        lw_file  type string.              " File Path
      lw_file = p_file.
      call function 'GUI_UPLOAD'
        exporting
          filename                    = lw_file
          filetype                    = 'ASC'
          has_field_separator         = 'X'
          dat_mode                    = 'X'
        tables
          data_tab                    = t_final_data.
      IF sy-subrc ne 0 and t_final_data is initial. " here message if file path is wrong
        Message 'File not found' type 'E'.
      ELSEIF sy-subrc eq 0 and t_final_data is initial.
        Message 'File empty' type 'E'.
      ENDIF.                              
    endform.                               " VALIDATE_UPLOAD_FILE
    With luck,
    Pritam.
    Edited by: Pritam Ghosh on May 8, 2009 8:57 AM

  • I have a question about the Siri function.

    Here in Belgium, we speak Dutch and also French and English. But I think when you use the Siri function it is always easier to use it with your own language ( Dutch). 28th October, the iphone4S will be launched here in Belgium, but only with a Englisch version of the Siri function. So my question is that you have any idea when te Dutch version will be available in Belgium, or when i buy an iphone 4S with English version that I can update it to a Dutch version when it will be launched..
    Thank you for helping
    Dylan

    Nobody here can tell you anything more about Apple's plans than what they have already publicly stated, which is that more languages were promised for later (including Japanese, Chinese, Korean, Italian, and Spanish in 2012).

  • A Few question about Dynpro (Screen)

    - I have a screen. Its have a table control for selection data. When user select any line of table control I want set new screen... But user doesn't select any line don't permission for next user...
         if not ITabSelected is initial.
            Leave To Screen 200.
         else.
           Leave To Screen 300.
         endif.   
    But it doesn't working? How can I refresh current screen?
    - How can I display status bar messages for mobile user? Can user display dialogbox?

    And another question..
    When I want update screen elemnt values via
    DynpFields-Fieldname  = 'ZWM460-MAKTX'.
    DynpFields-FieldValue = MyMaktx.
    DynpFields-stepl      = l_stepl.
    Append DynpFields.
    CALL FUNCTION 'DYNP_VALUES_UPDATE'
      EXPORTING
        DYNAME                     = 'ZHYT_WM_RPR_460'
        DYNUMB                     = P_0064
      TABLES
        DYNPFIELDS                 = DynpFields
    EXCEPTIONS
       INVALID_ABAPWORKAREA       = 1
       INVALID_DYNPROFIELD        = 2
       INVALID_DYNPRONAME         = 3
       INVALID_DYNPRONUMMER       = 4
       INVALID_REQUEST            = 5
       NO_FIELDDESCRIPTION        = 6
       UNDEFIND_ERROR             = 7
       OTHERS                     = 8.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    it doesnt update element value. When I debugging. It is return sy-subrc = 0 everything ok for sap but I cann't update element value... Does anybody have any idea? Thanks

  • Question about main screen

    How do i get rid of the search option, agenda items, wlan scan and share online on my main screen?
    it covers my screenpicture and i want to get rid of it.
    Solved!
    Go to Solution.

    ah you can go to themes or somewhere around there and decide what standby screen you want you can have a blank standby screen if you chose to and then your picture will be visible
    You know what I love about you the most, the fact that you are not me ! In love with technology and all that it can offer. Join me in discovery....

  • Should I get the iPod Touch? (Also a question about the screen issue)

    Hi,
    I recently purchased the 8GB iPod Nano, and now i'm considering to add a $100 and get the iPod Touch 8GB. Would you guys recommend it?
    Another question I had was that I heard about the iPod Touch having some Screen Issues, and read somewhere that if the Box has a picture of Macy Gray then its Bad. But I personally think the Macy Gray image is for the 8GB, and the other artist is for the 16GB.
    Is there a 100% definite way for me to find out if it has a good screen or not?
    Thanks in Advance!
    Saeid.

    Ok, I recommend the iPod Touch. 8GB is fine, and totally worth the $$.
    The screen issue has been fixed by a firmware update, so as long as you update to the latest firmware, you should be in the clear.
    I have a 16GB macy Gray and it is working perfectly so far (1 week of ownership)
    However, you mentioned using your iPod in the rain. If you do so, the Touch is not for you! I would not want to get water even near it, because the technology could be very very sensitive to water. It was raining here the other day (in Los Angeles) and I was so scared to use the touch that I took my 8GB 3gen Nano with me instead. And I was still scared to use that.
    You will have to take the touch out and look at it if you are going to operate it properly.
    The good news:
    you can make playlists on the go! That means you can, while it is still dry, set a nice playlist without connecting to your computer. But, if the volume needs to be adjusted, there is a shortcut that would take just a bit of memorization and careful skill. In your pocket, you can double tap the home button, and then the volume, pause and track forward/backward "buttons" pop up. If you can memorize their position and hit them right, the Touch can be operated in your pocket. But make sure your hands are dry!
    So it's up to you. I think quality wise, the Touch has had most of its bugs worked out. The only things that will come in the future are additional features.
    Good luck and I hope you get it.

  • A question about keeping screen field unchangable in selection screen

    Hello Expert,
    I have a program as below.
    REPORT Z_TEST.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-i01.
    SELECT-OPTIONS: s_kappl FOR a017-kappl DEFAULT 'M' NO INTERVALS.
    SELECTION-SCREEN: END OF BLOCK b1.
    INITIALIZATION.
      LOOP AT SCREEN.
        IF screen-name CS 'KAPPL'.
          screen-input = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    When I executed the report, the field for S_KAPPL is unchangable. This is as expected. But if I select one variant,  the filed will change back to changable.
    My question is how can I keep the field unchangable after I select variant?
    Thanks in advance,
    Regards, Johnny

    Hello Johnny,
    When you're creating the variant you've to mark the check-box "Protect field" as true.
    This will make the field as output only.
    BR,
    Suhas

  • Question about calling a function.

    Im trying to call a function when a button is clicked, im using actionlistner() on the button, which looks as so :-
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
            jButton1ActionPerformed.keyPad();
        }then trying to run this fuction when the button is clicked:-
    private void keyPad(java.awt.event.ActionEvent keyPad){
            String oldNumber;                           //set oldNumber to String
            String newNumber;                           //set newNumber as a String
            jButtonCall.setEnabled(true);
            jLabelInstruction.setText("Press 'Call' When Ready...");
            oldNumber = jTextFieldScreenDisplay.getText();      //get txt, if any, assign to oldNumber
            newNumber = oldNumber + "1";                        //set newNumber as oldNumber adding String to end
            jTextFieldScreenDisplay.setText(newNumber);         //Display newNumber
        }Im new, please go easy, everything is done in the main class, but would like to take this one stage further and create a seperate class outside the main, but i wan to get this working from within the main first.
    Cheers Guy's
    Doo

    So what is your question?
    Besides:
    - the things are called "methods"Hello There!
    Sorry, i'm trying to call a 'method'. I have buttons numbered 0-9 which enter into a text field once clicked using ActionEvent. At the moment each button has its own block of code which is a bad habit as its the same code over with one differance, the number value.
    Am i right in thinking i should create one method? Then calling this method on each button.
    The problem i have is i am unsure of the code to call the method within each buttons ActionEvent ie:-
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
             //call the method keyPad when button is clicked
    private void keyPad(java.awt.event.ActionEvent keyPad){
              //run this
    - if you define a method to accept a parameter, you
    actually have to provide a parameter upon calling
    that method.I don't understand???
    Thanks
    Doo

  • Question about exceptions in function module GUI_DOWNLOAD

    To all,
    I add the function module 'GUI_DOWNLOAD' in the ABAP report program. After the user download the data to excel, the program also displays a report on the screen for print output.
    If the user keep the excel file open and tries to replace the file on download, the program gives an error message 'Access to file denied' and the program ends without displaying a report on the screen.
    Is there any way not to end the program even if download is failed?
    I would like the program displays a report after it gives an error message.
    So I am trying to use exceptions. But if I code to give messages, the programs ends as above. And if I just make exit when it happens, no error message and the program displays a report but the user don't know if the excel file was updated or not.
    Could anybody kindly let me know how to code exceptions and messages if it is possible the program works I hope.
    Thank you very much in advance.
    Best regards,
    Miki Komatsu

     I figured out how to do that.
      Thanks.
      Best regards,
      Miki

  • Question About Unsupported Excel Function Workarounds

    Hi everyone! I hope this is ok to post something like this here. I haven't seen any rules against it so I am hoping I am able to. My apologies in advance if this is something I should ask in another location.
    My question / issue is in regards to the unsupported ISNA and ISBLANK functions in Excel. I can't seem to find a suitable workaround for XCelsius without using those two formulas in Excel and I am hoping someone here will be able to help or guide me.
    I have a cell that is for my input. If that cell has nothing in it I want Excel to continue to return the #N/A error as it is ignored and not shown in the List Box I have built in XCelsius. If there is a value input and it is not found in the Excel model I want it to return "No Record". Finally, if it is found then it will display the appropriate list of items.
    Any suggestions on a way to get this to function within Excel that will be compatible within XCelsius?
    Thanks in advance for your help everyone!

    Hi Aaron,
    both ISNA and ISBLANK are supported functions. The support for most IS() functions was added in SP1. They are not in the list in the help yet, but there should be the list of added functions in release notes. So, the following functions are supported:
    ISERR
    ISERROR
    ISEVEN
    ISODD
    ISLOGICAL
    ISNONTEXT
    ISTEXT
    TYPE
    ISNUMBER
    ISNA

  • Question about the GPS function

    I have just got my iPhone 3G, but still need to wait a couple of days to
    get my mobile number transferred.
    My question is: i don't have at the moment any mobile services from my provider.
    (No Service) I do have a WLAN connection. Should my GPS function in Google Maps still work? At the moment the icon is only spinning spinning and spinning....

    Thanks All!
    I turned it off and on again. waited a couple seconds outside (in the rain )
    And it is working great. 100% accurate
    Thanks Again.

Maybe you are looking for

  • How to use JDBC II and III Type Drivers?

    Hi To All I am learning JDBC Programming in Java. i got some couple of examples on JDBC I and IV type of Drivers. but i am not able to understand, and use 2nd and 3rd Type of JDBC Drivers. i did not find those examples anywhere. if you know how to us

  • Sender IDOC with HEX characters

    Hi Chaps, I have a situation i.e. my sender IDOC is sending some HEX characters in the text fields, XI should interpret them and convert it into text fields to the target system. Could some one guide me on the best approach for this? Your inputs are

  • I have LR and PS via CC membership. I cannot find my CC desktop app in order to install updates?!?!

    I have LR and PS via CC membership. I cannot find my CC desktop app in order to install updates?!?!

  • Mountain Lion vs. Lion

    Hello, I know that the question about Mountain Lion versus Lion, and whether the upgrade is worth it, has been raised a lot already. I've been reading about it lately, but all I could find was related to new applications, user interface, iOS integrat

  • Distored and incorrect thumbnails

    The thumbnail pictures that are being displayed since the beginning of October, 2006 are distored and of the wrong picture. IOW's they are either too wide or tall and skinny. When I scroll they eventually turn to the right thumbnail, HOWEVER when I e