Jump to content

Angelos58

Member
  • Posts

    206
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Angelos58's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. thank you very much brettcoppolo and thank you very much VallySoftware. Precious advices.
  2. So 31.25 is the second quarter of bar 31, isn't it?
  3. thanks for answer. I referred to possibility of entering quickly the fingering also for chords. I don't know if you have never used theSibelius plugin.
  4. Is there a plugin, like in Sibelius, that makes easy insert piano fingering into Score Editor? Alternatives, advices?
  5. I'm not a Scripter so for me would be an impossible mission, but I want to share my idea and listening your opinions. Who knows Synthesia' It is a little but good software that read midi file and you can follow different type of exercises with a connected midi keyboard. The greater limit is the scoring. Then I think that Logic has all the instrument for this goal. Would be not too difficult scripting a dedicate plug-in, also commercial.
  6. fuzzfilth, my opinion and your opinion are simply different! That's all! I am very happy to have met friends like volovicg and Dewdman and ValliSoftware in this forum.
  7. Excuse me but I did not appreciate the tone of your answer. This is one possible answer: //Prova IAC /* Filter Note On and Pitch */ var count = 0; function HandleMIDI(event) { if (event instanceof NoteOn && event.pitch == 68 && count < 1) { event.trace(); event.send(); //Pass MIDI events through the plug-in count++; } else if (event instanceof NoteOn && event.pitch == 68 && count >= 1) { count--; } } But ... other solutions will be possible. More efficient and more elegant, maybe.
  8. thank des99, but the playhead doesn't go to 0 0 0 0. I'd like that after the second time the var count would be 0 again. So I could move the playhead and obtaining always the repetition.
  9. /* loop counter */ var count = 0; function HandleMIDI(event) { if (event instanceof NoteOn && event.pitch == 68 && count < 1) { event.trace(); event.send(); //Pass MIDI events through the plug-in count++; } }
  10. The Scripter plugin button is turned on. the script works, but if I move, manually, the playhead backward to beginning, the script doesn't work more. I have hit the button run script and again it works.
  11. thank you very much for answer. But ... if i would sending to a specific beat? Maybe the beat number is absolute from beginning.
×
×
  • Create New...