Jump to content

opmo

Administrators
  • Posts

    2,903
  • Joined

  • Last visited

Everything posted by opmo

  1. You can. check the text-map function.
  2. You don't need to use the make-socket function anymore, it was needed only in CCL. All you need is: Here we assign a name Reaktor to a remote-host: 127.0.0.1 and remote- port: 10000: (defparameter reaktor '(127.0.0.1 10000)) Here we assign an variable to our OSC thread object, this is important for sending the data with the thread and for ending the thread: (setf thd1 (create-osc-thread "thread1" reaktor)) To send OSC messages with the thread we call the SEND-OSC-DATA function: (send-osc-data thd1 '((0.0 1/2) (0.0 1/2) (0.08238555 2) (0.10876829 1) (0.12127061 11/2)))
  3. You can't use 2.2 and 3.0 on the same cpu - there are changes to the history structure and Opusmodus directory. The main change are made to the interface with new Notation, MIDI, Graph and Audio panels. Any dependency on CCL was ported to LW. The navigator is more like a Finder and will display aliases if found in the Workspace folder. 'Save As...' (Notation, MIDI and Graph) is part of the panel. - grid menu. You can drag midi files etc... into the window directly.
  4. (defparameter b-val (matrix-transpose '(((1 1) (1 2) (1 3) (1 4) (1 5)) ((1 2) (1 2 3 4 5 6 7 8) (1 2) (1 2 3 4 5 6 7 8) (1 2))))) (loop for i in b-val for j = (first i) collect (list (first j) (second j) (second i))) => ((1 1 (1 2)) (1 2 (1 2 3 4 5 6 7 8)) (1 3 (1 2)) (1 4 (1 2 3 4 5 6 7 8)) (1 5 (1 2)))
  5. The Trial expires after 30 days. 30 days should be sufficient for evaluation of the software.
  6. (get-beats (list (list 1 1 bts) '(1 2 (1 2 4 4 4 7 6 3))) omn-forum)
  7. 3.0.28470 – Fixed : Save As... in Notation, MIDI and Graphs panels in older macOS versions.
  8. In order to have accesses to your own function documents through the navigator you place them in the ~/Opusmodus/User Source/Functions Documentation directory. This way you can view them by pressing the (L) button in the Workspace Navigator. The 'User Source' directory is where you place your Extensions, Libraries and your functions documents.
  9. Same licence for mac and windows, no mater which OS you are using.
  10. If the file or folder is an alias than only the alias is deleted from the Workspace directory and not the original.
  11. If you want an alias instead of moving the file you should use alias shortcuts cmd-opt - like in the finder. The navigator behaves the same way as the Finder. Delete mean delete the file.
  12. It is not a OM problem, all depends on how the pdf file is written.
  13. 3.0.28462 – Fixed : Application crash when #| comment was used.
  14. This is not an error. The documents (pdf) are not really for text copy/past. You never know how pdf behaves. And if you copy you need to take some care of the code.
  15. (setf chord 'c4e4g4) (chord-inversion 1 chord) => (e4g4c5) Root position and 1st inversion together: (chord-inversion 1 chord :root t) => (c4e4g4 e4g4c5) However, requesting the third inversion with option :series T and :root T, will give us four chords, and so on. (chord-inversion 3 chord :root t :series t) => (c4e4g4 e4g4c5 g4c5e5 c5e5g5) We can also rotate the chords downwards in pitch, for example the rotation of the third order below: (chord-inversion -3 chord :root t :series t) => (c4e4g4 g3c4e4 e3g3c4 c3e3g3)
  16. You will need to create your own def-unfold-set file and add the function there. Just copy the unfold-set om code from the library, create a new file and add all the function there you would like to access in counterpoint methods function. Then save the file into the 'Extensions' folder - make sure the code is working. The best way to learn all this is to contact Stephane and apply for an hour tutorial. https://opusmodus.com/forums/lessons/
  17. opmo

    setf

    You need to assign voices to instruments. You do this with DEF-SCORE or PS.
  18. Update for Opusmodus 3.0 3.0.28450 – Additions: Notation Print - Copyright input added. – Fixed : Cursor (hide) when copying notation.
  19. opmo

    setf

    Your expression is not correct. cmd-1 (setf lh '((c2c3 g3c4e4) (g3 d4))) Please use text (code) and not images for question like that.
  20. Your PS score is not correct. : p (list (list prh) (list plh)) Images of score are not helpful. Next time please post the score as text.
  21. To use PS with ports you need to create your own def-instrument-set set. I would advise to use always DEF-SCORE. The PS is for quick preview mainly for GM instrument. The Audition setup is only for Snippets and dose nothing to PS or DEF-SCORE instance. In PS you need to place each of the instruments in a list: : p (list (list prh) (list plh)) Please read the PS document.
  22. The new keys are cmd-= which are working on all keyboards.
  23. This message 'Print improvements' and 'Debugger auto abort' are the last fixes to the version 3.0.
  24. Apple dose not change the display of contents of the pdf files.
×
×
  • Create New...

Important Information

Terms of Use Privacy Policy