Finale SmartMusic
  Home | Log In | Register | Search | Help
   
MakeMusic Forum > Public Forums > FinaleScript - FORUM HAS MOVED! > Changing instrument names/abbreviations  Forum Quick Jump
 
You cannot post new topics in this forum. You cannot reply to topics in this forum. Printable Version
[ << Previous Thread | Next Thread >> | Show Newest Post First ]

rbeavers
Registered Member

Email Address Not AvailablePersonal Homepage Not AvailableSend a Private Message to rbeaversAIM Not AvailableICQ Not AvailableY! Not AvailableMSN Not Available
Date Joined Oct 2009
Total Posts : 29
 
   Posted 8/20/2011 10:00 PM (GMT -6)    Quote This PostAlert An Admin About This Post.
Hi,

I'm using Finale 2011 (Mac), and attempting to write a script that combs through a score and changes all the instrument names and abbreviations. I created this score by pulling in parts using Score Merger; it works pretty well, but for some reason, it doesn't pull in all instrument names...only about half of them. So my goal is to wipe out any existing names (if applicable) and replace them.

Here's the script:


Staff tool

// Reed 1
select stave 1
menu item "Staff/Edit Staff Attributes..."
press "edit" near "Full Name"
clear all 
type raw " reed 1"
button "ok"
wait 1 second
press "edit" near "Abbr. Name"
clear all
type raw " rd. 1"
button "ok"
button "ok"


I'm having two issues with this script:

1. For some mac-related reason which I don't quite understand, I have to use 'type raw' instead of 'type' (which ends up inserting nothing). This works, but instead of 'Reed 1'/'Rd. 1' being inserted, I get 'REed 1'/RD. 1'. Does anyone know why this would happen, and how to fix it?

2. When there *is* an existing name, I want to erase it before inserting a different instrument name - or else I end up with two names. I've tried many variations - Select all, Triple click, Clear all (used in the script above) - and none of them work. In fact, it causes the script to go into some strange loop, where the names are continuously pushed down, as if I were inserting a carriage return. Any ideas?

Thanks,
Ryan
Back to Top

James L
Registered Member

Email Address Not AvailablePersonal Homepage Not AvailableSend a Private Message to James LAIM Not AvailableICQ Not AvailableY! Not AvailableMSN Not Available
Date Joined Oct 2009
Total Posts : 46
 
   Posted 8/21/2011 8:47 PM (GMT -6)    Quote This PostAlert An Admin About This Post.
I played around a bit and I'm also getting the first issue that you've listed. I even tried a hack by writing:

type raw "R"
type raw "eed 1"

and it still produced REed 1. So I'm at a loss there. sad

As for the second issue. If you select all the text and then delete it, you can avoid that loop issue. i.e.:

Staff tool
// Reed 1
select stave 1
menu item "Staff/Edit Staff Attributes..."
press "edit" near "Full Name"
press command + "A"
delete key

type raw "Reed 1"
button "ok"
wait 1 second
press "edit" near "Abbr. Name"
press command + "A"
delete key

type raw "Rd. 1"
button "ok"
button "ok"


Finale 2000, 2004-2011c.r1
Dual 2.0GHz Power PC G5, 3.5GB RAM, OS 10.4.11
MacBook Pro, 2.8GHz, 4GB RAM, OS 10.6.6
Sibelius 5.0-6.1

Back to Top

James L
Registered Member

Email Address Not AvailablePersonal Homepage Not AvailableSend a Private Message to James LAIM Not AvailableICQ Not AvailableY! Not AvailableMSN Not Available
Date Joined Oct 2009
Total Posts : 46
 
   Posted 8/21/2011 10:18 PM (GMT -6)    Quote This PostAlert An Admin About This Post.
ok, so here's a fiddly workaround for the first issue. :p

It seems that the Finalescript has a sticky "shift" key when it types the name in. I even tried capitalising the whole name, as a test, and instead of REED 1, it wrote REED !. The exclamation mark is surely a sign that it's somehow holding down the shift key for too long.

So below is my clunky workaround. The problem is that this workaround going to make your script rather long if every instrument name needs three lines of script.

Anyway, this worked on my system. I'd be keen to hear of any other possible workarounds that might be neater.


Staff tool

// Reed 1
select stave 1
menu item "Staff/Edit Staff Attributes..."
press "edit" near "Full Name"
press command + "A"
delete key
type raw "R"
press shift
type raw "eed 1"

button "ok"
wait 1 second
press "edit" near "Abbr. Name"
press command + "A"
delete key
type raw "R"
press shift
type raw "d. 1"

button "ok"
button "ok"


Finale 2000, 2004-2011c.r1
Dual 2.0GHz Power PC G5, 3.5GB RAM, OS 10.4.11
MacBook Pro, 2.8GHz, 4GB RAM, OS 10.6.8
Sibelius 5.0-6.2

Back to Top

rbeavers
Registered Member

Email Address Not AvailablePersonal Homepage Not AvailableSend a Private Message to rbeaversAIM Not AvailableICQ Not AvailableY! Not AvailableMSN Not Available
Date Joined Oct 2009
Total Posts : 29
 
   Posted 8/22/2011 7:26 AM (GMT -6)    Quote This PostAlert An Admin About This Post.
Wow...thanks! That 'press command + "A" ' line did the trick. I wish Finale would come up with a definitive list of what commands work when and where. That would be very helpful. Too many combinations to choose from, and it's never certain which ones are the right ones.

I actually came up with a different workaround for the capitalization - adding a 'search and replace' at the end of the block:

search "reed 1" replace "Reed 1"
search "rd. 1" replace "Rd. 1"


This works fine, but I think I'm going to use yours, just in case there happens to be text somewhere else in the score that uses an instrument name.
Back to Top

KennethKen
Registered Member



Email Address Not AvailableClick to visit KennethKen's website.Send a Private Message to KennethKenAIM Not AvailableICQ Not AvailableY! Not AvailableMSN Not Available
Date Joined Dec 1998
Total Posts : 2570
 
   Posted 8/24/2011 7:58 AM (GMT -6)    Quote This PostAlert An Admin About This Post.
rbeavers said...
I actually came up with a different workaround for the capitalization - adding a 'search and replace' at the end of the block:

search "reed 1" replace "Reed 1"
search "rd. 1" replace "Rd. 1"
A benefit of this approach is that it will catch any cue names that have been entered using the Expression tool.
 
Ken


Windows 7 Pro (64 bit), Finale 2011, Core i7 920@2.67Ghz, 6GB Ram
Brass music, Woodwind Music, Concert Band Music, CDs, etc.

Back to Top
You cannot post new topics in this forum. You cannot reply to topics in this forum. Printable Version
   
Forum Information
Currently it is Tuesday, December 19, 2023 6:23 PM (GMT -6)
There are a total of 403,820 posts in 58,165 threads.
In the last 3 days there were 0 new threads and 0 reply posts. View Active Threads