[Pharo-users] Re: GTPlayground or STPlayground

2021-11-08 Thread mspgate
Thanks for your reply Guillermo! I think that the GTPlayground is already a good “minimal” solution for me. But I would like to make it appear without all the button icons on the upper right side Also, I will start reading the Spec2 book tonight. :0 peace. d

[Pharo-users] GTPlayground or STPlayground

2021-11-05 Thread mspgate
hello everybody! What are the difference between the GTPlayground(that I think is deprecated) and the STPlayground? for my live coding performance the GTPlayground looks better because it is more “stripped” down, but does it work fine as the STPlayground. also, if I would like to chance the ap

[Pharo-users] Re: Create keyboard shortcut

2021-10-20 Thread mspgate
thanks a lot Guille, this is a good tip!

[Pharo-users] Create keyboard shortcut

2021-10-20 Thread mspgate
Hello everybody, how would I create a keyboard shortcut for a method I have defined in my class or package? for example if I would like to have a keyboard shortcut for a method that opens the Transcript and display the “Hello I am the new shortcut” message? thanks for the help. peace.d

[Pharo-users] Share package

2021-07-21 Thread mspgate
Hello everybody, sorry for the newbie question. I would like to know what is the fastest, lightweight way to share a package with other Pharo users. the package can be downloaded from my GitHub. thanks. d

[Pharo-users] Process with higher priority then Processor timing priority

2021-07-06 Thread mspgate
Hello everybody, in my liveCoding package for Pharo I am sending out many OSC messages with a very tight timing within a Process. It works all fine if I don’t interact too much with the Pharo playground (for example highliting code or scrolling down). my question is, can my Process have an a

[Pharo-users] Re: change process variable while process is running

2021-03-27 Thread mspgate
thanks! I am now sure I am using the highest priority. one last question about this, maybe very newbie nut I would like to understand things. so, in your code example for the Process using the ShareQueue and in my running demo, the ShareQueues are not put between pipes ( | | ) before declaratio

[Pharo-users] Re: change process variable while process is running

2021-03-25 Thread mspgate
this is what I was able to put together thanks to your advice Richard. https://www.youtube.com/watch?v=NFaR3ZQfOUU&feature=youtu.be I am further developing this research on Pharo as a tool for live coding. I am sending many OSC messages and they sounds pretty on time if the Process is forked at

[Pharo-users] Re: change process variable while process is running

2021-03-02 Thread mspgate
thanks Sven and thanks Richard. I already thought it was not a good idea to change a variable inside the process as for OOP principles. but I dint find any solution to do what I want to do, that is a tool for live coding in which the process variables are values for a sequencer sendin OSC mes

[Pharo-users] change process variable while process is running

2021-03-02 Thread mspgate
Hello everybody, I am kind of new to Pharo so I apologise if my\ question is silly :)\ how can a change a variable in a process while the process is running?\ for example in:\ \[\[ | msg| msg := 'help me'. 100 timesRepeat: \[(Delay forSeconds: 0.5)\ wait. Transcript show: msg; cr\]\] fork.\ \ how d