[Csnd] CsoundApp
Date | 2011-11-12 18:32 |
From | k_o_m_p |
Subject | [Csnd] CsoundApp |
Hello, I'm trying to build for the first time a standalone application with the CsoundApp and the Interface Builder. The problem I have, is that I can't find out how to pass a string to a text-object - or to the correct text object. Could someone point me out a good tutorial on Interface Builder? Thanks, Luis |
Date | 2011-11-12 21:49 |
From | Victor Lazzarini |
Subject | Re: [Csnd] CsoundApp |
How's your Objective-C? You'll need that. http://www.insanelymac.com/forum/index.php?showtopic=91735 Victor On 12 Nov 2011, at 18:32, k_o_m_p wrote: > Hello, > > I'm trying to build for the first time a standalone application with > the CsoundApp and the Interface Builder. The problem I have, is that > I can't find out how to pass a string to a text-object - or to the > correct text object. Could someone point me out a good tutorial on > Interface Builder? > > Thanks, > > Luis > > -- > http://luisantunespena.eu > > > Send bugs reports to the Sourceforge bug tracker > https://sourceforge.net/tracker/?group_id=81968&atid=564599 > Discussions of bugs and features can be posted here > To unsubscribe, send email sympa@lists.bath.ac.uk with body > "unsubscribe csound" > Dr Victor Lazzarini Senior Lecturer Dept. of Music NUI Maynooth Ireland tel.: +353 1 708 3545 Victor dot Lazzarini AT nuim dot ie Send bugs reports to the Sourceforge bug tracker https://sourceforge.net/tracker/?group_id=81968&atid=564599 Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2011-11-13 03:27 |
From | matt ingalls |
Subject | Re: [Csnd] CsoundApp |
it is actually really easy to hook up gui stuff, especially in XCode 4 (you just control drag from the widget into your header file and the code is plopped in and everything is hooked up) apple does have some newbie stuff http://developer.apple.com/library/mac/#documentation/General/Conceptual/Mac101/Articles/00_Introduction.html#//apple_ref/doc/uid/TP40010611 but even in this day and age, i think the best thing is to get a book to help you wrap your head around how everything works. the "Big nerd ranch" ones are good. http://www.bignerdranch.com/books On Nov 12, 2011, at 1:49 PM, Victor Lazzarini wrote: > How's your Objective-C? You'll need that. http://www.insanelymac.com/forum/index.php?showtopic=91735 > > Victor > On 12 Nov 2011, at 18:32, k_o_m_p wrote: > >> Hello, >> >> I'm trying to build for the first time a standalone application with the CsoundApp and the Interface Builder. The problem I have, is that I can't find out how to pass a string to a text-object - or to the correct text object. Could someone point me out a good tutorial on Interface Builder? >> >> Thanks, >> >> Luis >> >> -- >> http://luisantunespena.eu >> >> >> Send bugs reports to the Sourceforge bug tracker >> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >> Discussions of bugs and features can be posted here >> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >> > > Dr Victor Lazzarini > Senior Lecturer > Dept. of Music > NUI Maynooth Ireland > tel.: +353 1 708 3545 > Victor dot Lazzarini AT nuim dot ie > > > > > > Send bugs reports to the Sourceforge bug tracker > https://sourceforge.net/tracker/?group_id=81968&atid=564599 > Discussions of bugs and features can be posted here > To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" > Send bugs reports to the Sourceforge bug tracker https://sourceforge.net/tracker/?group_id=81968&atid=564599 Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2011-11-13 10:19 |
From | k_o_m_p |
Subject | Re: [Csnd] CsoundApp |
Victor and Matt, thank you for your help. This is what I'm looking for. Bets, Luis Am 13.11.11 04:27, schrieb matt ingalls: > it is actually really easy to hook up gui stuff, especially in XCode 4 (you just control drag from the widget into your header file and the code is plopped in and everything is hooked up) > > apple does have some newbie stuff > http://developer.apple.com/library/mac/#documentation/General/Conceptual/Mac101/Articles/00_Introduction.html#//apple_ref/doc/uid/TP40010611 > > but even in this day and age, i think the best thing is to get a book to help you wrap your head around how everything works. the "Big nerd ranch" ones are good. > > http://www.bignerdranch.com/books > > > On Nov 12, 2011, at 1:49 PM, Victor Lazzarini wrote: > >> How's your Objective-C? You'll need that. http://www.insanelymac.com/forum/index.php?showtopic=91735 >> >> Victor >> On 12 Nov 2011, at 18:32, k_o_m_p wrote: >> >>> Hello, >>> >>> I'm trying to build for the first time a standalone application with the CsoundApp and the Interface Builder. The problem I have, is that I can't find out how to pass a string to a text-object - or to the correct text object. Could someone point me out a good tutorial on Interface Builder? >>> >>> Thanks, >>> >>> Luis >>> >>> -- >>> http://luisantunespena.eu >>> >>> >>> Send bugs reports to the Sourceforge bug tracker >>> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >>> Discussions of bugs and features can be posted here >>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >>> >> Dr Victor Lazzarini >> Senior Lecturer >> Dept. of Music >> NUI Maynooth Ireland >> tel.: +353 1 708 3545 >> Victor dot Lazzarini AT nuim dot ie >> >> >> |
Date | 2011-11-13 16:36 |
From | k_o_m_p |
Subject | Re: [Csnd] CsoundApp |
I just bought the Objective C book you mentioned. Looking forward to start creating applications with csound. In the meanwhile, if there is someone with experience with the CsoundApp that could help would be great. In the CsoundApp to send a number to an object LABEL via outvalue its no problem. But what do I have to do so that it accepts a string? in csound it would be this: outvalue 14, "blablabla" but I still couldn't find out how to set the label to receive a string. Any help appreciated. Thanks, Luis Am 13.11.11 04:27, schrieb matt ingalls: > it is actually really easy to hook up gui stuff, especially in XCode 4 (you just control drag from the widget into your header file and the code is plopped in and everything is hooked up) > > apple does have some newbie stuff > http://developer.apple.com/library/mac/#documentation/General/Conceptual/Mac101/Articles/00_Introduction.html#//apple_ref/doc/uid/TP40010611 > > but even in this day and age, i think the best thing is to get a book to help you wrap your head around how everything works. the "Big nerd ranch" ones are good. > > http://www.bignerdranch.com/books > > > On Nov 12, 2011, at 1:49 PM, Victor Lazzarini wrote: > >> How's your Objective-C? You'll need that. http://www.insanelymac.com/forum/index.php?showtopic=91735 >> >> Victor >> On 12 Nov 2011, at 18:32, k_o_m_p wrote: >> >>> Hello, >>> >>> I'm trying to build for the first time a standalone application with the CsoundApp and the Interface Builder. The problem I have, is that I can't find out how to pass a string to a text-object - or to the correct text object. Could someone point me out a good tutorial on Interface Builder? >>> >>> Thanks, >>> >>> Luis >>> >>> -- >>> http://luisantunespena.eu >>> >>> >>> Send bugs reports to the Sourceforge bug tracker >>> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >>> Discussions of bugs and features can be posted here >>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >>> >> Dr Victor Lazzarini >> Senior Lecturer >> Dept. of Music >> NUI Maynooth Ireland >> tel.: +353 1 708 3545 >> Victor dot Lazzarini AT nuim dot ie >> >> >> >> >> >> Send bugs reports to the Sourceforge bug tracker >> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >> Discussions of bugs and features can be posted here >> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >> > > > Send bugs reports to the Sourceforge bug tracker > https://sourceforge.net/tracker/?group_id=81968&atid=564599 > Discussions of bugs and features can be posted here > To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" > > |
Date | 2011-11-13 19:16 |
From | matt ingalls |
Subject | Re: [Csnd] CsoundApp |
oh wait, are you using *my* CsoundApp? On Nov 13, 2011, at 8:36 AM, k_o_m_p wrote: > I just bought the Objective C book you mentioned. Looking forward to start creating applications with csound. In the meanwhile, if there is someone with experience with the CsoundApp that could help would be great. > > In the CsoundApp to send a number to an object LABEL via outvalue its no problem. But what do I have to do so that it accepts a string? > > in csound it would be this: > > outvalue 14, "blablabla" > > but I still couldn't find out how to set the label to receive a string. > > Any help appreciated. > > Thanks, > > Luis > > > Am 13.11.11 04:27, schrieb matt ingalls: >> it is actually really easy to hook up gui stuff, especially in XCode 4 (you just control drag from the widget into your header file and the code is plopped in and everything is hooked up) >> >> apple does have some newbie stuff >> http://developer.apple.com/library/mac/#documentation/General/Conceptual/Mac101/Articles/00_Introduction.html#//apple_ref/doc/uid/TP40010611 >> >> but even in this day and age, i think the best thing is to get a book to help you wrap your head around how everything works. the "Big nerd ranch" ones are good. >> >> http://www.bignerdranch.com/books >> >> >> On Nov 12, 2011, at 1:49 PM, Victor Lazzarini wrote: >> >>> How's your Objective-C? You'll need that. http://www.insanelymac.com/forum/index.php?showtopic=91735 >>> >>> Victor >>> On 12 Nov 2011, at 18:32, k_o_m_p wrote: >>> >>>> Hello, >>>> >>>> I'm trying to build for the first time a standalone application with the CsoundApp and the Interface Builder. The problem I have, is that I can't find out how to pass a string to a text-object - or to the correct text object. Could someone point me out a good tutorial on Interface Builder? >>>> >>>> Thanks, >>>> >>>> Luis >>>> >>>> -- >>>> http://luisantunespena.eu >>>> >>>> >>>> Send bugs reports to the Sourceforge bug tracker >>>> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >>>> Discussions of bugs and features can be posted here >>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >>>> >>> Dr Victor Lazzarini >>> Senior Lecturer >>> Dept. of Music >>> NUI Maynooth Ireland >>> tel.: +353 1 708 3545 >>> Victor dot Lazzarini AT nuim dot ie >>> >>> >>> >>> >>> >>> Send bugs reports to the Sourceforge bug tracker >>> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >>> Discussions of bugs and features can be posted here >>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >>> >> >> >> Send bugs reports to the Sourceforge bug tracker >> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >> Discussions of bugs and features can be posted here >> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >> >> > > > -- > -- > http://luisantunespena.eu > > > > Send bugs reports to the Sourceforge bug tracker > https://sourceforge.net/tracker/?group_id=81968&atid=564599 > Discussions of bugs and features can be posted here > To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" > Send bugs reports to the Sourceforge bug tracker https://sourceforge.net/tracker/?group_id=81968&atid=564599 Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2011-11-13 20:09 |
From | k_o_m_p |
Subject | Re: [Csnd] CsoundApp |
yes! Am 13.11.11 20:16, schrieb matt ingalls: > oh wait, are you using *my* CsoundApp? > > On Nov 13, 2011, at 8:36 AM, k_o_m_p wrote: > >> I just bought the Objective C book you mentioned. Looking forward to start creating applications with csound. In the meanwhile, if there is someone with experience with the CsoundApp that could help would be great. >> >> In the CsoundApp to send a number to an object LABEL via outvalue its no problem. But what do I have to do so that it accepts a string? >> >> in csound it would be this: >> >> outvalue 14, "blablabla" >> >> but I still couldn't find out how to set the label to receive a string. >> >> Any help appreciated. >> >> Thanks, >> >> Luis >> >> >> Am 13.11.11 04:27, schrieb matt ingalls: >>> it is actually really easy to hook up gui stuff, especially in XCode 4 (you just control drag from the widget into your header file and the code is plopped in and everything is hooked up) >>> >>> apple does have some newbie stuff >>> http://developer.apple.com/library/mac/#documentation/General/Conceptual/Mac101/Articles/00_Introduction.html#//apple_ref/doc/uid/TP40010611 >>> >>> but even in this day and age, i think the best thing is to get a book to help you wrap your head around how everything works. the "Big nerd ranch" ones are good. >>> >>> http://www.bignerdranch.com/books >>> >>> >>> On Nov 12, 2011, at 1:49 PM, Victor Lazzarini wrote: >>> >>>> How's your Objective-C? You'll need that. http://www.insanelymac.com/forum/index.php?showtopic=91735 >>>> >>>> Victor >>>> On 12 Nov 2011, at 18:32, k_o_m_p wrote: >>>> >>>>> Hello, >>>>> >>>>> I'm trying to build for the first time a standalone application with the CsoundApp and the Interface Builder. The problem I have, is that I can't find out how to pass a string to a text-object - or to the correct text object. Could someone point me out a good tutorial on Interface Builder? >>>>> >>>>> Thanks, >>>>> >>>>> Luis >>>>> >>>>> -- >>>>> http://luisantunespena.eu >>>>> >>>>> >>>>> Send bugs reports to the Sourceforge bug tracker >>>>> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >>>>> Discussions of bugs and features can be posted here >>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >>>>> >>>> Dr Victor Lazzarini >>>> Senior Lecturer >>>> Dept. of Music >>>> NUI Maynooth Ireland >>>> tel.: +353 1 708 3545 >>>> Victor dot Lazzarini AT nuim dot ie >>>> >>>> >>>> >>>> >>>> >>>> Send bugs reports to the Sourceforge bug tracker >>>> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >>>> Discussions of bugs and features can be posted here >>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >>>> >>> >>> Send bugs reports to the Sourceforge bug tracker >>> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >>> Discussions of bugs and features can be posted here >>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >>> >>> >> >> -- >> -- >> http://luisantunespena.eu >> >> >> >> Send bugs reports to the Sourceforge bug tracker >> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >> Discussions of bugs and features can be posted here >> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >> > > > Send bugs reports to the Sourceforge bug tracker > https://sourceforge.net/tracker/?group_id=81968&atid=564599 > Discussions of bugs and features can be posted here > To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" > > |
Date | 2011-11-15 06:02 |
From | matt ingalls |
Subject | Re: [Csnd] CsoundApp |
ah, ok, looking at the code i did not add support for strings in invalue/outvalue i only call "setFloatValue" and "getFloatValue" on the Cocoa widgets. maybe the string widget you are using supports those. but no way will you be able to send/receive ascii! -m On Nov 13, 2011, at 12:09 PM, k_o_m_p wrote: > yes! > > Am 13.11.11 20:16, schrieb matt ingalls: >> oh wait, are you using *my* CsoundApp? >> >> On Nov 13, 2011, at 8:36 AM, k_o_m_p wrote: >> >>> I just bought the Objective C book you mentioned. Looking forward to start creating applications with csound. In the meanwhile, if there is someone with experience with the CsoundApp that could help would be great. >>> >>> In the CsoundApp to send a number to an object LABEL via outvalue its no problem. But what do I have to do so that it accepts a string? >>> >>> in csound it would be this: >>> >>> outvalue 14, "blablabla" >>> >>> but I still couldn't find out how to set the label to receive a string. >>> >>> Any help appreciated. >>> >>> Thanks, >>> >>> Luis >>> >>> >>> Am 13.11.11 04:27, schrieb matt ingalls: >>>> it is actually really easy to hook up gui stuff, especially in XCode 4 (you just control drag from the widget into your header file and the code is plopped in and everything is hooked up) >>>> >>>> apple does have some newbie stuff >>>> http://developer.apple.com/library/mac/#documentation/General/Conceptual/Mac101/Articles/00_Introduction.html#//apple_ref/doc/uid/TP40010611 >>>> >>>> but even in this day and age, i think the best thing is to get a book to help you wrap your head around how everything works. the "Big nerd ranch" ones are good. >>>> >>>> http://www.bignerdranch.com/books >>>> >>>> >>>> On Nov 12, 2011, at 1:49 PM, Victor Lazzarini wrote: >>>> >>>>> How's your Objective-C? You'll need that. http://www.insanelymac.com/forum/index.php?showtopic=91735 >>>>> >>>>> Victor >>>>> On 12 Nov 2011, at 18:32, k_o_m_p wrote: >>>>> >>>>>> Hello, >>>>>> >>>>>> I'm trying to build for the first time a standalone application with the CsoundApp and the Interface Builder. The problem I have, is that I can't find out how to pass a string to a text-object - or to the correct text object. Could someone point me out a good tutorial on Interface Builder? >>>>>> >>>>>> Thanks, >>>>>> >>>>>> Luis >>>>>> >>>>>> -- >>>>>> http://luisantunespena.eu >>>>>> >>>>>> >>>>>> Send bugs reports to the Sourceforge bug tracker >>>>>> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >>>>>> Discussions of bugs and features can be posted here >>>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >>>>>> >>>>> Dr Victor Lazzarini >>>>> Senior Lecturer >>>>> Dept. of Music >>>>> NUI Maynooth Ireland >>>>> tel.: +353 1 708 3545 >>>>> Victor dot Lazzarini AT nuim dot ie >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> Send bugs reports to the Sourceforge bug tracker >>>>> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >>>>> Discussions of bugs and features can be posted here >>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >>>>> >>>> >>>> Send bugs reports to the Sourceforge bug tracker >>>> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >>>> Discussions of bugs and features can be posted here >>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >>>> >>>> >>> >>> -- >>> -- >>> http://luisantunespena.eu >>> >>> >>> >>> Send bugs reports to the Sourceforge bug tracker >>> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >>> Discussions of bugs and features can be posted here >>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >>> >> >> >> Send bugs reports to the Sourceforge bug tracker >> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >> Discussions of bugs and features can be posted here >> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >> >> > > > -- > -- > http://luisantunespena.eu > > > > Send bugs reports to the Sourceforge bug tracker > https://sourceforge.net/tracker/?group_id=81968&atid=564599 > Discussions of bugs and features can be posted here > To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" > Send bugs reports to the Sourceforge bug tracker https://sourceforge.net/tracker/?group_id=81968&atid=564599 Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2011-11-16 15:30 |
From | Enrico Francioni |
Subject | [Csnd] Re: CsoundApp |
Hi, you've already made some patches with CsoundApp? it is possible to see something? e -- View this message in context: http://csound.1045644.n5.nabble.com/CsoundApp-tp4987397p4998066.html Sent from the Csound - General mailing list archive at Nabble.com. Send bugs reports to the Sourceforge bug tracker https://sourceforge.net/tracker/?group_id=81968&atid=564599 Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2011-11-16 18:41 |
From | k_o_m_p |
Subject | Re: [Csnd] Re: CsoundApp |
Hi, the CsoundApp was created by Matt Ingals. Take a look at his email from July. There's also link to a video with an example. I have no exemples yet. But tt's very easy to edit the existing csd and change it to adapt your needs.
Am 16.11.11 16:30, schrieb Enrico Francioni: Hi, you've already made ​​some patches with CsoundApp? it is possible to see something? e -- View this message in context: http://csound.1045644.n5.nabble.com/CsoundApp-tp4987397p4998066.html Sent from the Csound - General mailing list archive at Nabble.com. Send bugs reports to the Sourceforge bug tracker https://sourceforge.net/tracker/?group_id=81968&atid=564599 Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" -- -- http://luisantunespena.eu |