Changing the Instrument Name in Score View

I've modified the Orchestral Template to create my own desired orchestral set up and changed the track names of the instruments and also applied these new names to their corresponding regions but in score view the old names (provided by the template) are still the ones that show up. I've had this problem before when not starting from a Logic template. How do I change instrument names i score view?

Indeed CCT - I had a play around after your very useful post about Instrument names and the long and short of it is as you said:
CCT wrote:
Your only solution seems to be to use the Score set method of naming/labelling staffs, and then >working in Page view (ignoring the View:Instrument names)
I too could not rename the actual Midi Instruments in Score View - short of going to the Midi Unit/Environment and bringing up the page with their actual names and changing them ( which I dont want to do).
There is indeed an issue here if you want rename a Midi Instrument from say 'pop piano' to plain "Piano" in Score View and you do want the name on the *actual score* - it would be great if Score View could do this.
However, Logic gives lots of opportunities for different names on the actual score.
One thing that is not perhaps clear to the original Poster is that in order to do this, the best way is to Create a Score Set from Selection and then Double Click in the very top of the Inspector. This brings up all the actual name boxes. You can see the original Instrument name ( ie mid Pop Piano) and then you have the option for Full Name or Short Name which is selectable ... elsewhere in Score Settings> Names and Numbers> Instrument Names
M S

Similar Messages

  • How to dynamically change the table name inside a view

    Hi All,
    create table t_auto_feeds
    id number,
    table_name vachar2(100));
    insert into t_auto_feeds values(1,'T_FEED_POSITIONS');
    insert into t_auto_feeds values(2,'T_KAP_MTM');
    assume there are 100 records on id=1 in T_FEED_POSITIONS and 100 records of id=2 in T_KAP_MTM (id 1 is present only in t_feed_positions & id 2 is present only in t_kap_mtm)
    i need to create a view such that it needs to give the count of records based on the id
    create or replace view aa_view as
    select count(*), id from t_feed_position group by id
    union
    select count(*), id from t_kap_mtm group by id;
    I am getting a proper result when i query the view like select * from aa_view where id=1 but will the other union query seems to be a overhead?. I am having 10 such tables configured for different id in t_auto_feeds.so do i need to put 10 unions or is there a better way to handle this stuff.
    I know i can use a PLSQL block and dynamically build view structure, the problem is the view itself is configured in a table , so i cant write a proc for this.. can this aa_view be modified such that it queries only the table(using the t_auto_feeds ) which matches the id rather than the entire list.
    Kindly help me in this regard and let me know in case u need any further information from my side.

    >
    so do i need to put 10 unions or is there a better way to handle this stuff.
    >
    Yes - you need 10 unions
    Yes - there is a better way so that only one of the 10 queries does anything.
    You can use SYS_CONTEXT to control the query selection.
    Here is an example of using SYS_CONTEXT. Try this code in the SCOTT schema.
    create or replace context VIEW_CTX using SET_VIEW_FLAG;
    create or replace procedure SET_VIEW_FLAG ( p_table_name in varchar2 default 'EMP')
      as
      begin
          dbms_session.set_context( 'VIEW_CTX', 'TABLE_NAME', upper(p_table_name));
      end;
    select * from emp where 'EMP' = sys_context( 'VIEW_CTX', 'TABLE_NAME' );
    select * from emp1 where 'EMP1' = sys_context( 'VIEW_CTX', 'TABLE_NAME' );
    select * from emp2 where 'EMP2' =  sys_context( 'VIEW_CTX', 'TABLE_NAME' )
    exec set_view_flag( p_table_name => 'EMP' );
    exec set_view_flag( p_table_name => 'EMP1' );
    exec set_view_flag( p_table_name => 'EMP2');
    SELECT sys_context( 'VIEW_CTX', 'TABLE_NAME' ) FROM DUAL
    CREATE VIEW THREE_TABLE_EMP_VIEW AS
    select * from emp where 'EMP' = sys_context( 'VIEW_CTX', 'TABLE_NAME' )
    union all
    select * from emp1 where 'EMP1' = sys_context( 'VIEW_CTX', 'TABLE_NAME' )
    union all
    select * from emp2 where 'EMP2' =  sys_context( 'VIEW_CTX', 'TABLE_NAME' )
    SELECT * FROM THREE_TABLE_EMP_VIEWNote that you set the context for the table you want. This doesn't have to be a table name it could just be flag value
    -- use the emp table
    exec set_view_flag( p_table_name => 'EMP' );
    -- ue the emp1 table
    exec set_view_flag( p_table_name => 'EMP1' );
    -- use the emp2 table
    exec set_view_flag( p_table_name => 'EMP2');

  • Track names in score view?

    Hi,
    *Short question*: is it possible to see track names instead of instrument names in score view?
    *Long story & question*: I am setting up an orchestral template. All articulations of for instance the picolo are in the same instance of kontakt. I use tracks with the same instrument and different midi channels to address all articulations.
    In the arrange window I name all tracks appropriate. For instance pic-leg, pic-stac, ...
    The problem is I don't see these track names in the score view. I only see the instrument name PICOLO when I switch on +view instrument names+. This is very annoying, as I have 12 articulations for the picolo. I do a lot of editting in the score view and cannot see which staff belongs to which articulation.
    Is it possible to see the track names instead of the instrument names in score view? I know it can be done with using extra midi instruments, but I don't want to go that way, because then freezing isn't possible anymore. And importing tracks in another song isn't as easy anymore.
    Thanks, Wouter.

    composer123 wrote:
    Hi,
    Thanks for your explanation. Unfortunately, it still doesn't help me.
    What I mean:
    - start new song
    - Load a Channel strip setting, eg Pop Piano
    - track->new with next midi channel
    - rename new track to piano 2
    The score view now displays Pop Piano for both tracks.
    Ok.... we are getting closer!
    Track names do not appear to show up in the Score when using Multi-Timbral instances (1 instrument with several tracks assigned to the same instrument on different MIDI Channels.
    What I described in my earlier post does work for tracks assigned to different Instrument Channels.
    Time for some feedback to Apple!
    Your only solution seems to be to use the Score set method of naming/labelling staffs, and then working in Page view (ignoring the View:Instrument names).
    CCT

  • How to change the package name of View or Window

    Hi all,
    i have created the Webdynpro Application.i have some Views and Windows in the WebDynpro Peoject.i want to change the package Names of Views.is it possible???
    thanks in advance
    regards
    Naidu

    Hi Naidu
        Though you rename the package name, the view in that package refers to the old package and hence that view can be used in other views by including the old package name only. Renaming doesn't have significance that you expect. You can create a new package and views in it and copy the implementation of views from the old package to the views in the new package.
    Regards
    Vijayakhanna Raman

  • Changeip command? Trying to view or change the DNS name of a computer.

    Hey guys, I did a time machine on computer but it is still remembering the old DNS name.
    I looked it up and it looks like you can use the changeip command to change the DNS name but when i try and run the command it says changeip command not found.
    Any ideas?
    Thanks!

    Hi
    Apple have changed (sic) the changeip command. In 10.6 Server it now does not have the same functionality it used to have in previous versions. Reason being it was not always successful in doing what it was supposed to do. To change the hostname use scutil:
    sudo scutil --set HostName thenameyouwant
    The changeip command does not exist on the client OS.
    Tony

  • Finder changes the file name in Save/Save As dialogue box

    Whenever I save or save as a file, the dialogue box opens, but when I make the file list active when using a mouse, the file name I click to changes the file name I am saving. I simply want to activate the file list window so I can find the right folder. For example if I am looking for a folder called "Receipts" I want to be able to click on the file list window to activate it and then type the first 2 letters of the folder-- "re" and then save the file in that folder. The finder keeps changing the name of the current file whenever I click on one of the "greyed-out" file names? This doesn't make sense unless of course I want to replace that file.
    Is there a shortcut that makes the file list window in the dialogue box active while in the SAVE/SAVE AS dialogue box??

    Yes, this example of horrible UI design has been a problem since "Panther". It illustrates what happens when you try to copy UI behaviour from another OS, do it poorly, and end up with a mess. In 10.3 and 10.4, the combination of the renaming behaviour with the default "replace" selection in the resulting save can result in data loss.
    Compared to the old Mac OS where a tab would flip the focus between the text field for the file name and the file browser, the current behaviour either doesn't allow enough keyboard access to controls, or with "full access" enabled, too many to cycle through easily. The inability to switch focus to the file browser using the mouse (depending on the view) is a horrible productivity loss. Having to recheck the filename before saving is a horrible productivity loss. Since there is no "undo" for the renaming in most files, having to retype the name is again, a horrible productivity loss.
    If they had done it right (a simple change, like requiring a modifier to rename), users would probably welcome the "rename" feature as a useful addition. Instead, it has the feel of something a junior Windows-trained programmer slipped in past their supervisor.
    In short, I am not aware of any workaround or hack to avoid this "renaming" behaviour. I doubt it will do any good since people have been doing so since "Panther", but you could try submitting feedback:
    http://www.apple.com/feedback/macosx.html

  • Changing the vendor name

    Hi to all,
    I have question, I just wondering why there is no error in F110 when I change the vendor name.
    let say I change the vendor name on 10. 20.2008, then I submitted a proposal on 10.28.2008 the approved on 10.3.2008. then but still the vendor name is old name but no error prompt.
    can anyone give a reason why?

    Hi Deepa,
    As you said system will not prompt error because vendor code still the same right?
    I would like to know where I can go or which t-code should I use? in In my view when changing any vendor master or any changing vendor name should have control, I mean system should prompt msg or error so that payment won't continue in PF.

  • Changing the Chart Title in Graphic View in Interactive demand Planning

    Hi All,
    Is it possible to change the Chart title in Graphic View in interactive demand planning screen.
    When we go to interactive planning after loading the data we go to Univariate forecast then switch to graphic, the chart title shows the selection at which the planning is done. For eg; If I plan at die level and i select a particular sap material, the chart title displays Die value and not the material value.
    Is it possible to change the chart title such that it displays all the selections made in selection winodw, like in the above case both Die value as well as SAP Material Number.
    Thanks and Regards,
    Diana

    Dear Diana,
    unfortunately this is not possible.
    The chart title is build from the planning book name + the Show characteristic in the shuffler (+ available nav. attributes of the Show char).                                                           
    The functionality you requested doesn't exist in standard.            
    Regards,
    Tibor

  • Change the attachment name while sending PO as mail..

    Hi,
    I’m able to send PO Form through mail using NACE, configuration for output type.
    But my Attachment name is always showing as ‘Print Data‘.
    My requirement is to change the attachment name as below.
    Program: SAPFM06P
    Script: Z_SD_PORDER
    Please help on this issue.
    Thanks in advance.
    Regards,
    Kumar

    I didn't find any field with PACKING_LIST in program 'SAPFM06P'.
    If we create the copy of 'SAPFM06P' kindly let me know where I need to change the same..
    in form entry_neu using ent_retco ent_screen.
    the below is the code.
    *   INCLUDE FM06PE02                                                   *
    form entry_neu using ent_retco ent_screen.
       data: l_druvo like t166k-druvo,
             l_nast  like nast,
             l_from_memory,
             l_doc   type meein_purchase_doc_print.
       clear ent_retco.
       if nast-aende eq space.
         l_druvo = '1'.
       else.
         l_druvo = '2'.
       endif.
       call function 'ME_READ_PO_FOR_PRINTING'
            exporting
                 ix_nast        = nast
                 ix_screen      = ent_screen
            importing
                 ex_retco       = ent_retco
                 ex_nast        = l_nast
                 doc            = l_doc
            changing
                 cx_druvo       = l_druvo
                 cx_from_memory = l_from_memory.
       check ent_retco eq 0.
       call function 'ME_PRINT_PO'
            exporting
                 ix_nast        = l_nast
                 ix_druvo       = l_druvo
                 doc            = l_doc
                 ix_screen      = ent_screen
                 ix_from_memory = l_from_memory
                 ix_toa_dara    = toa_dara
                 ix_arc_params  = arc_params
                 ix_fonam       = tnapr-fonam          "HW 214570
            importing
                 ex_retco       = ent_retco.
    endform.
    Kindly give the clear view.

  • How to change the field name in SUS

    HI,
    In the section view all PO's, I want to change the field name  <b>document number</b> to <b>invoice number</b>.Please do let me know how to go about it.
    Thanks in advance ,
    Manu

    Hi,
    The text ID should be first identified in the BSP (BBP_SUS_UI/DOC_NUMBER?)
    Next execute SOTR_EDIT and use the FInd button. Enter the package of the BSP object (BBP_SUS_U?) and select the language as English. Execute the program and you will a complete list of text used in SUS screen. Locate the text ID as above and double click to change based on what you need.
    Regards.

  • Changing the label name

    Hi all,
    I am trying to change the label name and the text in text view, when i do the changes in development system its changing, but when i transport the changes to testing system the changes does not reflect, i tried resetting the OTR buffer, still it doesn't work for me.
    Help me in this.
    Thanks in advance.

    Hi Thomas,
    Yeah i do have a transport request, and the changes are captured by the request,
    it does not show any error in import log,
    but i solved it, i just deleted the label ui element and then created new, by doing this i got what i want,
    but i really dont know why its not changing when i change just the name.
    anyhow thankx for the mail.

  • Changing the column names displayed via an ODBC driver

    Hi we are just starting to used Crystal Reports to improve the reporting capabaility of a legacy application, we can access the data fine using an ODBC driver. What we want to do is change the column names that are displayed within Crystal Reports so they are more user friendly and not in techno speak,, so that the users can create their own reports. Do we need to used Business Objects to setup a Universe to do this, is their a simple cheaper method sorry if this post is in the wrong section

    Can you set up "views" in your database? That would probably be the easiest way to do this.
    -Dell
    - A computer only does what you told it to, not what you thought you told it to!</p>

  • How to Change the Visible names in JDBC IView ?

    While Creating a JDBC View, in one of the steps we select the column names from a schema which we want to view in a IView.While doing so in the next step there is a text field called <b>visible names</b> which is editable to change the column names.How to change the Column aliases or visibles names as is it not getting saved when we move onto the next screen ?.How to Configure the Visible Column names while configuring a JDBC IView ?.
    Can anybody please help me !.

    Hi Abhilash
    If I'm not wrong I saw something about this here (SDN), in a technical article about how to create a JDBC iView . I tried to get the link to the article but it seems there's a problem with the site, sorry...
    By the way, I had the same problem, and according to the   article this was not possible in the version EP6 SP2 but there was a plan to implement this in newer versions. I tried also to use a SQL command with the column names I wish to display but it didn't work either.
    Try to find this article in the EP Technical Article to confirm this info, ok ?
    Rgds,
    Fernando

  • How can I change the account name in iCloud.  My email has changed and I want to change it on iCloud.

    How can I change the account name in iCloud.  My email has changed and I want to change it on iCloud.

    To change your iCloud ID, go to Settings>iCloud, tap Delete Account, then sign back in with the new ID.  This deletes the account and your iCloud data from your device, but not from iCloud.  Provided you are signing back into the same account, your iCloud data will reappear on your device when you sign back in.
    To avoid losing photo stream photos, save them to your camera roll (if not already there) before deleting the account.  To do this, open your my photo stream album, tap Edit, tap the photos, tap Share, then tap Save to Camera Roll.
    To change the ID on your Mac, go to System Preferences>iCloud, sign out, choose Delete for all the prompts (your data will still be in iCloud), then sign back in with the changed ID.

  • How can I change the "Full Name" for my iCloud account?

    Hello,
    At some point in the past, iCloud started identifying me as someone else when I send emails. This incorrect name appears to be the "Full Name" setting of the email account, but when modifying the properties for the email account in Mail the field for modifying the "Full Name" setting is disabled, not allowing me to make any changes.
    Where is the correct place to change the "Full Name" setting for my iCloud account?
    Thanks,
    - Josh
    <Email Edited By Host>

    I believe it can be changed by going to https://appleid.apple.com/, click Manage your Apple ID, sign in with your iCloud ID, select "Name, ID and Email Addresses", then click "Edit" next to the name listed under "Your Name" and change it as desired.
    Also, if you are trying to change the sender name for your iCloud email account, you'll want to go to icloud.com, sign into your account, open Mail, click the gear shaped icon on the bottom left and choose Preferences, go to the Accounts tab and enter the name you want to use in the Full Name field and click Done.  Then quit Mail (Command-Q) on your Mac and re-open it.  Your new From name should now appear in the drop-down list when you compose a new email.
    (The image was removed in your post above because it showed your iCloud email address.)

Maybe you are looking for

  • BO Live Issue for MS Excel 2003

    I am  getting the following error while using the BO Live for MS Office 2003. Live Office version u2013 12.1.3.1028 An error occured while opening the report. The report does not exist;you have insufficient rights to open the report or you cannot mak

  • Jsp page does not open with firefox! plz help..urgent!!

    hi, i have a wierd problem... i am hosting my website currant.hos.ufl.edu/mutail/rahul/testing2.jsp if i open it in IE, it works fine... but it doesnt work if i open it in mozilla. it just shows me the java code (maybe it takes the jsp code as html t

  • Hard Drives won't sleep..

    I first installed Leopard on my machine in August 2008 and after about 15 minutes of no activity it would put my system/hard drives to sleep. I could walk in the room and wouldn't hear any sounds coming from the computer. Earlier this week, I had to

  • Error in Excel while exporting from SAP query.

    Hi Gurus, While exporting one SAP query to excel the last row/line of information lost partially. Means we get some information in the last line of excel but some information is not exported in that same line. Can you throw some light on this please.

  • Message-mapping: sort  with subnodes

    Hello everybody, as far as i know (and tested) the SORT-function sorts just the node. The subnodes are not sorted. Sample: <B> <BField_1> <BField_2> <A> <AField_1> <AField_2> <u>after using the SORT:</u> <A> <<b>B</b>Field_1> <<b>B</b>Field_2> <B> <<