cocoadialog-users Mailing List for CocoaDialog (Page 2)
Status: Beta
Brought to you by:
sporkstorms
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
(2) |
Mar
(4) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(5) |
Nov
|
Dec
|
2006 |
Jan
(2) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(15) |
2009 |
Jan
(7) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
(1) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2014 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
(1) |
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Mark A. S. <ma...@sp...> - 2008-12-02 17:17:55
|
There isn't such a flag. But if we look at this example: http://cocoadialog.sourceforge.net/examples/fileselect.sh.txt there's a 'while' loop in there that iterates over every line of $rv, each containing a file path. It would be trivial to add a counter variable in there to count the number of files. Surely there's some sort of shell trick to count the number of newline-separated entries in $rv if you don't want to loop over it. I'm not much of a shell coder though, so unfortunately I can't tell you how to do this (or confirm that it's definitely possible). In case it helps, in Perl you can just do: scalar( split /\n/, $rv ); to get the number of files listed in $rv (a return value from cocoadialog). - mark Thomas Patko wrote: > Is there a way to return the number of files selected when using the > filselect cocoadialog with --select-multiple option enabled? This would be > quite convenient and I am wondering if there is a flag to return this value > as perhaps the first return variable followed by all of the file paths > thereafter? > > Thanks, > > Thomas > > |
From: Thomas P. <tp...@gm...> - 2008-12-02 16:50:25
|
Is there a way to return the number of files selected when using the filselect cocoadialog with --select-multiple option enabled? This would be quite convenient and I am wondering if there is a flag to return this value as perhaps the first return variable followed by all of the file paths thereafter? Thanks, Thomas On Mon, Dec 1, 2008 at 5:53 AM, Thomas Patko <tp...@gm...> wrote: > Hello Bill: > > Thanks again for the alternate approach. I see how cut may be much faster > and more lightweight and fast solution. I just made a syntax error when > trying to implement it last time. My project is integrating CocoaDialog and > Platypus to create a simple drag and drop run application with the ability > to take graphical user input. At this point, I am not 100% sure that the > users want so I am just playing with the basics. You might wan to mention > the synergy between CocoaDialog and Platypus (both are open source) as it > has worked out well for me and might for others as well. > > Thanks again for the help. Once you get the details down, CocoaDialog is > a very simple way to add graphical input to such drag and drop application > as those that I am making. > > Cheers, > > Thomas > > > On Mon, Dec 1, 2008 at 3:13 AM, Bill Larson <wl...@sw...> wrote: > >> On Nov 30, 2008, at 11:44 PM, Thomas Patko wrote: >> >> Hello Bill: >>> >>> Thank you very much for the Bourne shell script code and concept. I >>> agree that it is not necessarily the most elegant approach but the >>> combination of --no-newline and the awk '{print $X}' code reliably script >>> out the multiple variables passed back by CocoaDialog. I have made it work >>> quite well for my application, wherein I was only really interested in the >>> second variable. >>> >> >> An alternative, without using "awk", and having a "case...esac" statement >> to display the selected answer: >> >> #!/bin/sh >> >> CD="/Applications/CocoaDialog.app/Contents/MacOS/CocoaDialog" >> >> result=`$CD dropdown \ >> --title "Preferred OS" \ >> --items "Mac OS X" "GNU/Linux" "Windows" \ >> --button1 "That one!" \ >> --button2 Nevermind` >> >> return=`echo $result | cut -d" " -f1` >> answer=`echo $result | cut -d" " -f2` >> >> if [ $return -eq 1 ]; then >> case $answer in >> 0) echo "Mac OS X";; >> 1) echo "GNU/Linux";; >> 2) echo "Windows";; >> esac >> else >> echo "Nevermind" >> fi >> >> The "--no-newline" really isn't necessary. I originally included it >> because the original Perl script had it there. I am using "cut" to parse >> the output rather than "awk". >> >> My complaint with using "awk" is that it is a fairly heavy handed approach >> to a problem. It is great when you need to do a lot of processing of the >> input but has a tremendous amount of overhead to use when the processing is >> quite simple. >> >> I'm actually very impressed to see that someone is USING this mailing >> list. The inactivity on this list implies that not much is happening with >> CocoaDialog, which I'm glad to see isn't totally correct. >> > |
From: Brad S. <sc...@ya...> - 2008-12-01 13:57:09
|
Unsubscribe Sent from my iPhone On Dec 1, 2008, at 6:08 AM, coc...@li... wrote: Send Cocoadialog-users mailing list submissions to coc...@li... To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/cocoadialog-users or, via email, send a message with subject or body 'help' to coc...@li... You can reach the person managing the list at coc...@li... When replying, please edit your Subject line so it is more specific than "Re: Contents of Cocoadialog-users digest..." Today's Topics: 1. Bourne Shell Script Equivalent to Perl Script Sample for CocoaDialog Dropdown (Thomas Patko) 2. Re: Bourne Shell Script Equivalent to Perl Script Sample for CocoaDialog Dropdown (Bill Larson) 3. Re: Bourne Shell Script Equivalent to Perl Script Sample for CocoaDialog Dropdown (Thomas Patko) 4. Re: Bourne Shell Script Equivalent to Perl Script Sample for CocoaDialog Dropdown (Bill Larson) ---------------------------------------------------------------------- Message: 1 Date: Sun, 30 Nov 2008 11:35:17 -0800 From: "Thomas Patko" <tp...@gm...> Subject: [Cocoadialog-users] Bourne Shell Script Equivalent to Perl Script Sample for CocoaDialog Dropdown To: coc...@li... Message-ID: <ae1...@ma...> Content-Type: text/plain; charset="iso-8859-1" Hello CocoaDialog Users: I am trying to integrate CocoaDialog with some drag and drop run applications that I am building with Platypus. I saw one of the Cocoa dialog that would be quite useful for such a purpose, the dropdown. I am however using Bourne shell script to build these little applications rather than Perl. Is there an example of a Bourne shell script equivalent to the perl scrip example provided? http://cocoadialog.sourceforge.net/examples/dropdown.pl.txt I would be appreciative of any assistance towards this end. Best Regards, Thomas Patko -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 2 Date: Sun, 30 Nov 2008 22:27:10 -0700 From: Bill Larson <wl...@sw...> Subject: Re: [Cocoadialog-users] Bourne Shell Script Equivalent to Perl Script Sample for CocoaDialog Dropdown To: Thomas Patko <tp...@gm...> Cc: coc...@li... Message-ID: <C04...@sw...> Content-Type: text/plain; charset="us-ascii" On Nov 30, 2008, at 12:35 PM, Thomas Patko wrote: Hello CocoaDialog Users: I am trying to integrate CocoaDialog with some drag and drop run applications that I am building with Platypus. I saw one of the Cocoa dialog that would be quite useful for such a purpose, the dropdown. I am however using Bourne shell script to build these little applications rather than Perl. Is there an example of a Bourne shell script equivalent to the perl scrip example provided? http://cocoadialog.sourceforge.net/examples/dropdown.pl.txt I would be appreciative of any assistance towards this end. Best Regards, You need to play around a little. There are examples provided of using CocoaDialog with shell scripts. Take these, along with the documentation for the dropdown function and put together a shell script and test it out. I tossed together the following script that duplicates the function of the Perl script that provides a dropdown menu. Use it as an example. #!/bin/sh CD="/Applications/CocoaDialog.app/Contents/MacOS/CocoaDialog" result=`$CD dropdown \ --title "Preferred OS" \ --no-newline \ --items "Mac OS X" "GNU/Linux" "Windows" \ --button1 'That one!' \ --button2 Nevermind` return=`echo $result | awk '{print $1}'` answer=`echo $result | awk '{print $2}'` if [ $return -eq 1 ]; then echo "Answer: $answer" fi if [ $return -eq 2 ]; then echo "Nevermind" fi Please note, I make NO claims that this is a "good" script, nor do I like using "awk" in this manner, but it does seem to work. -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 3 Date: Sun, 30 Nov 2008 22:44:04 -0800 From: "Thomas Patko" <tp...@gm...> Subject: Re: [Cocoadialog-users] Bourne Shell Script Equivalent to Perl Script Sample for CocoaDialog Dropdown To: "Bill Larson" <wl...@sw...> Cc: coc...@li... Message-ID: <ae1...@ma...> Content-Type: text/plain; charset="iso-8859-1" Hello Bill: Thank you very much for the Bourne shell script code and concept. I agree that it is not necessarily the most elegant approach but the combination of --no-newline and the awk '{print $X}' code reliably script out the multiple variables passed back by CocoaDialog. I have made it work quite well for my application, wherein I was only really interested in the second variable. Cheers, Thomas On Sun, Nov 30, 2008 at 9:27 PM, Bill Larson <wl...@sw...> wrote: On Nov 30, 2008, at 12:35 PM, Thomas Patko wrote: Hello CocoaDialog Users: I am trying to integrate CocoaDialog with some drag and drop run applications that I am building with Platypus. I saw one of the Cocoa dialog that would be quite useful for such a purpose, the dropdown. I am however using Bourne shell script to build these little applications rather than Perl. Is there an example of a Bourne shell script equivalent to the perl scrip example provided? http://cocoadialog.sourceforge.net/examples/dropdown.pl.txt I would be appreciative of any assistance towards this end. Best Regards, You need to play around a little. There are examples provided of using CocoaDialog with shell scripts. Take these, along with the documentation for the dropdown function and put together a shell script and test it out. I tossed together the following script that duplicates the function of the Perl script that provides a dropdown menu. Use it as an example. #!/bin/sh CD="/Applications/CocoaDialog.app/Contents/MacOS/CocoaDialog" result=`$CD dropdown \ --title "Preferred OS" \ --no-newline \ --items "Mac OS X" "GNU/Linux" "Windows" \ --button1 'That one!' \ --button2 Nevermind` return=`echo $result | awk '{print $1}'` answer=`echo $result | awk '{print $2}'` if [ $return -eq 1 ]; then echo "Answer: $answer" fi if [ $return -eq 2 ]; then echo "Nevermind" fi Please note, I make NO claims that this is a "good" script, nor do I like using "awk" in this manner, but it does seem to work. -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 4 Date: Mon, 1 Dec 2008 04:13:49 -0700 From: Bill Larson <wl...@sw...> Subject: Re: [Cocoadialog-users] Bourne Shell Script Equivalent to Perl Script Sample for CocoaDialog Dropdown To: "Thomas Patko" <tp...@gm...> Cc: coc...@li... Message-ID: <316...@sw...> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes On Nov 30, 2008, at 11:44 PM, Thomas Patko wrote: Hello Bill: Thank you very much for the Bourne shell script code and concept. I agree that it is not necessarily the most elegant approach but the combination of --no-newline and the awk '{print $X}' code reliably script out the multiple variables passed back by CocoaDialog. I have made it work quite well for my application, wherein I was only really interested in the second variable. An alternative, without using "awk", and having a "case...esac" statement to display the selected answer: #!/bin/sh CD="/Applications/CocoaDialog.app/Contents/MacOS/CocoaDialog" result=`$CD dropdown \ --title "Preferred OS" \ --items "Mac OS X" "GNU/Linux" "Windows" \ --button1 "That one!" \ --button2 Nevermind` return=`echo $result | cut -d" " -f1` answer=`echo $result | cut -d" " -f2` if [ $return -eq 1 ]; then case $answer in 0) echo "Mac OS X";; 1) echo "GNU/Linux";; 2) echo "Windows";; esac else echo "Nevermind" fi The "--no-newline" really isn't necessary. I originally included it because the original Perl script had it there. I am using "cut" to parse the output rather than "awk". My complaint with using "awk" is that it is a fairly heavy handed approach to a problem. It is great when you need to do a lot of processing of the input but has a tremendous amount of overhead to use when the processing is quite simple. I'm actually very impressed to see that someone is USING this mailing list. The inactivity on this list implies that not much is happening with CocoaDialog, which I'm glad to see isn't totally correct. ------------------------------ ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ ------------------------------ _______________________________________________ Cocoadialog-users mailing list Coc...@li... https://lists.sourceforge.net/lists/listinfo/cocoadialog-users End of Cocoadialog-users Digest, Vol 3, Issue 1 *********************************************** |
From: Thomas P. <tp...@gm...> - 2008-12-01 13:53:24
|
Hello Bill: Thanks again for the alternate approach. I see how cut may be much faster and more lightweight and fast solution. I just made a syntax error when trying to implement it last time. My project is integrating CocoaDialog and Platypus to create a simple drag and drop run application with the ability to take graphical user input. At this point, I am not 100% sure that the users want so I am just playing with the basics. You might wan to mention the synergy between CocoaDialog and Platypus (both are open source) as it has worked out well for me and might for others as well. Thanks again for the help. Once you get the details down, CocoaDialog is a very simple way to add graphical input to such drag and drop application as those that I am making. Cheers, Thomas On Mon, Dec 1, 2008 at 3:13 AM, Bill Larson <wl...@sw...> wrote: > On Nov 30, 2008, at 11:44 PM, Thomas Patko wrote: > > Hello Bill: >> >> Thank you very much for the Bourne shell script code and concept. I agree >> that it is not necessarily the most elegant approach but the combination of >> --no-newline and the awk '{print $X}' code reliably script out the multiple >> variables passed back by CocoaDialog. I have made it work quite well for my >> application, wherein I was only really interested in the second variable. >> > > An alternative, without using "awk", and having a "case...esac" statement > to display the selected answer: > > #!/bin/sh > > CD="/Applications/CocoaDialog.app/Contents/MacOS/CocoaDialog" > > result=`$CD dropdown \ > --title "Preferred OS" \ > --items "Mac OS X" "GNU/Linux" "Windows" \ > --button1 "That one!" \ > --button2 Nevermind` > > return=`echo $result | cut -d" " -f1` > answer=`echo $result | cut -d" " -f2` > > if [ $return -eq 1 ]; then > case $answer in > 0) echo "Mac OS X";; > 1) echo "GNU/Linux";; > 2) echo "Windows";; > esac > else > echo "Nevermind" > fi > > The "--no-newline" really isn't necessary. I originally included it > because the original Perl script had it there. I am using "cut" to parse > the output rather than "awk". > > My complaint with using "awk" is that it is a fairly heavy handed approach > to a problem. It is great when you need to do a lot of processing of the > input but has a tremendous amount of overhead to use when the processing is > quite simple. > > I'm actually very impressed to see that someone is USING this mailing list. > The inactivity on this list implies that not much is happening with > CocoaDialog, which I'm glad to see isn't totally correct. > |
From: Bill L. <wl...@sw...> - 2008-12-01 11:14:04
|
On Nov 30, 2008, at 11:44 PM, Thomas Patko wrote: > Hello Bill: > > Thank you very much for the Bourne shell script code and concept. I > agree that it is not necessarily the most elegant approach but the > combination of --no-newline and the awk '{print $X}' code reliably > script out the multiple variables passed back by CocoaDialog. I > have made it work quite well for my application, wherein I was only > really interested in the second variable. An alternative, without using "awk", and having a "case...esac" statement to display the selected answer: #!/bin/sh CD="/Applications/CocoaDialog.app/Contents/MacOS/CocoaDialog" result=`$CD dropdown \ --title "Preferred OS" \ --items "Mac OS X" "GNU/Linux" "Windows" \ --button1 "That one!" \ --button2 Nevermind` return=`echo $result | cut -d" " -f1` answer=`echo $result | cut -d" " -f2` if [ $return -eq 1 ]; then case $answer in 0) echo "Mac OS X";; 1) echo "GNU/Linux";; 2) echo "Windows";; esac else echo "Nevermind" fi The "--no-newline" really isn't necessary. I originally included it because the original Perl script had it there. I am using "cut" to parse the output rather than "awk". My complaint with using "awk" is that it is a fairly heavy handed approach to a problem. It is great when you need to do a lot of processing of the input but has a tremendous amount of overhead to use when the processing is quite simple. I'm actually very impressed to see that someone is USING this mailing list. The inactivity on this list implies that not much is happening with CocoaDialog, which I'm glad to see isn't totally correct. |
From: Thomas P. <tp...@gm...> - 2008-12-01 06:44:07
|
Hello Bill: Thank you very much for the Bourne shell script code and concept. I agree that it is not necessarily the most elegant approach but the combination of --no-newline and the awk '{print $X}' code reliably script out the multiple variables passed back by CocoaDialog. I have made it work quite well for my application, wherein I was only really interested in the second variable. Cheers, Thomas On Sun, Nov 30, 2008 at 9:27 PM, Bill Larson <wl...@sw...> wrote: > On Nov 30, 2008, at 12:35 PM, Thomas Patko wrote: > > Hello CocoaDialog Users: > > I am trying to integrate CocoaDialog with some drag and drop run > applications that I am building with Platypus. I saw one of the Cocoa > dialog that would be quite useful for such a purpose, the dropdown. I am > however using Bourne shell script to build these little applications rather > than Perl. Is there an example of a Bourne shell script equivalent to the > perl scrip example provided? > > http://cocoadialog.sourceforge.net/examples/dropdown.pl.txt > > I would be appreciative of any assistance towards this end. > > Best Regards, > > > You need to play around a little. There are examples provided of using > CocoaDialog with shell scripts. Take these, along with the documentation > for the dropdown function and put together a shell script and test it out. > > I tossed together the following script that duplicates the function of the > Perl script that provides a dropdown menu. Use it as an example. > > #!/bin/sh > > CD="/Applications/CocoaDialog.app/Contents/MacOS/CocoaDialog" > > result=`$CD dropdown \ > --title "Preferred OS" \ > --no-newline \ > --items "Mac OS X" "GNU/Linux" "Windows" \ > --button1 'That one!' \ > --button2 Nevermind` > > return=`echo $result | awk '{print $1}'` > answer=`echo $result | awk '{print $2}'` > > if [ $return -eq 1 ]; then > echo "Answer: $answer" > fi > if [ $return -eq 2 ]; then > echo "Nevermind" > fi > > > Please note, I make NO claims that this is a "good" script, nor do I like > using "awk" in this manner, but it does seem to work. > |
From: Bill L. <wl...@sw...> - 2008-12-01 05:43:52
|
On Nov 30, 2008, at 12:35 PM, Thomas Patko wrote: > Hello CocoaDialog Users: > > I am trying to integrate CocoaDialog with some drag and drop run > applications that I am building with Platypus. I saw one of the > Cocoa dialog that would be quite useful for such a purpose, the > dropdown. I am however using Bourne shell script to build these > little applications rather than Perl. Is there an example of a > Bourne shell script equivalent to the perl scrip example provided? > > http://cocoadialog.sourceforge.net/examples/dropdown.pl.txt > > I would be appreciative of any assistance towards this end. > > Best Regards, You need to play around a little. There are examples provided of using CocoaDialog with shell scripts. Take these, along with the documentation for the dropdown function and put together a shell script and test it out. I tossed together the following script that duplicates the function of the Perl script that provides a dropdown menu. Use it as an example. #!/bin/sh CD="/Applications/CocoaDialog.app/Contents/MacOS/CocoaDialog" result=`$CD dropdown \ --title "Preferred OS" \ --no-newline \ --items "Mac OS X" "GNU/Linux" "Windows" \ --button1 'That one!' \ --button2 Nevermind` return=`echo $result | awk '{print $1}'` answer=`echo $result | awk '{print $2}'` if [ $return -eq 1 ]; then echo "Answer: $answer" fi if [ $return -eq 2 ]; then echo "Nevermind" fi Please note, I make NO claims that this is a "good" script, nor do I like using "awk" in this manner, but it does seem to work. |
From: Thomas P. <tp...@gm...> - 2008-11-30 19:35:22
|
Hello CocoaDialog Users: I am trying to integrate CocoaDialog with some drag and drop run applications that I am building with Platypus. I saw one of the Cocoa dialog that would be quite useful for such a purpose, the dropdown. I am however using Bourne shell script to build these little applications rather than Perl. Is there an example of a Bourne shell script equivalent to the perl scrip example provided? http://cocoadialog.sourceforge.net/examples/dropdown.pl.txt I would be appreciative of any assistance towards this end. Best Regards, Thomas Patko |
From: Manuel D. <man...@pr...> - 2007-06-12 20:07:30
|
I made an inputbox dialog that has a --timeout of 30 seconds, how can I have that timeout countdown in the dialog window? My --informative text in the dialog window shows "this mac will launch a maintenance routine in 30 seconds", can I update that text so that the number of seconds counts down? Thanks for you great app Manuel Deschambault Senior Mac Tech St-Hyacinthe Schoolboard |
From: Mark A. S. <ma...@sp...> - 2007-05-17 21:05:11
|
Cocoadialog doesn't tie directly with any particular programming languages. It's just a command-line application, so you can run it from any application or script with system calls. Example: system("/bin/cocoadialog ok-msgbox --text 'Hello, world.'"); $rv = `/bin/cocoadialog ok-msgbox --text 'blah' --string-output`; echo "User pressed " . $rv; Hope this helps. -- Mark A. Stratman ma...@sp... On May 17, 2007, at 3:01 AM, Leon Liber wrote: > Hello everyone! > Is that possible to use PHP (and Platypus) with Cocoadialog? > If so, where can I get some more information and see some examples > on that? > Thanks. > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Cocoadialog-users mailing list > Coc...@li... > https://lists.sourceforge.net/lists/listinfo/cocoadialog-users |
From: Leon L. <leo...@gm...> - 2007-05-17 08:01:23
|
Hello everyone! Is that possible to use PHP (and Platypus) with Cocoadialog? If so, where can I get some more information and see some examples on that? Thanks. |
From: Mark A. S. <ma...@sp...> - 2006-03-07 23:04:35
|
Hi Angelo, That's definitely not a problem with CocoaDialog. What you need to do is diagnose and fix the script that's being =20 executed by your software, or contact the author of that software. To save you the hassle of doing so in case it's something simple ... =20 if the error you are getting is "bad interpreter: No such file or =20 directory", then edit the first line of the script to correctly point =20= to your installation of perl (run 'which perl' at the command line =20 (sans quotes) to find out where it is. It should be /usr/bin/perl) Otherwise, like i said, try contacting the author of the software. Alternatively, paste the exact errors you're getting and *maybe* i =20 can help. hth -- Mark A. Stratman ma...@sp... On Mar 7, 2006, at 9:12 AM, =C2ngelo Andrade Cirino wrote: > Hello list > > I'm trying to use a software that depends on CocoaDialog, but it =20 > complains that Perl isn't installed. But Perl is correctly =20 > installed and working. I tried to search the list archives, but the =20= > server is down for maintenance, since this question must have =20 > already been posted. I need a help urgently. > Thanx > > Angelo > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting =20 > language > that extends applications into web and mobile media. Attend the =20 > live webcast > and join the prime developer group breaking into this new coding =20 > territory! > http://sel.as-us.falkag.net/sel?=20 > cmd=3Dlnk&kid=3D110944&bid=3D241720&dat=3D121642 > _______________________________________________ > Cocoadialog-users mailing list > Coc...@li... > https://lists.sourceforge.net/lists/listinfo/cocoadialog-users > |
From: <aac...@co...> - 2006-03-07 15:12:52
|
Hello list I'm trying to use a software that depends on CocoaDialog, but it complains that Perl isn't installed. But Perl is correctly installed and working. I tried to search the list archives, but the server is down for maintenance, since this question must have already been posted. I need a help urgently. Thanx Angelo |
From: Mark A. S. <ma...@sp...> - 2006-01-02 12:18:23
|
It's been a while, but I just wanted to let you know that the newest =20 release should fix any issues you had with button resizing. You can download it at http://cocoadialog.sourceforge.net/download.html Thanks, Mark On Apr 18, 2005, at 3:12 AM, Aaron Madlon-Kay wrote: > Hello. I use CocoaDialog in an app of mine called iPodBackup =20 > (http://www.amake.us/software/ipodbackup.html). It's been working =20 > very well for me for quite a while, but I recently came across a =20 > small problem. > > I tried using the dropdown mode for the first time, and I found =20 > that the buttons do not resize properly to fit the text. For an =20 > example, see this screenshot: > http://www.amake.us/misc/cutoff.png > The full text of the leftmost button is "=E3=82=AD=E3=83=A3=E3=83=B3=E3=82= =BB=E3=83=AB". It =20 > doesn't seem to have anything to do with the fact that the text is =20 > Japanese. I use Japanese text in other modes and it always resizes =20= > correctly, and it will cut off English text in the same way in =20 > dropdown mode. > > If there's anything you can think of that I can do on my end to fix =20= > this, I'd love to hear it. > > Thanks, > Aaron Madlon-Kay > |
From: Mark A. S. <ma...@sp...> - 2006-01-02 12:14:23
|
I know it's been a long time since you wrote this, but I wanted to let you know that the newest release, 2.0.0 has support for secure inputboxes. http://cocoadialog.sourceforge.net/download.html Thanks for the feedback. Mark A. Stratman On Mar 3, 2005, at 7:35 PM, Brad Schwie wrote: > > Bitchin'. This is exactly what I was looking for. > Thanks Mark! > > One other question for you... > > If I'm working with a standard-inputbox, and I want > the entry field to be a password, is there anyway in > CocoaDialog to make the user entry scrambled (so it > just shows a black filled-in circle on the input line > each time the user presses a key)? |
From: <in...@hc...> - 2005-10-27 13:08:58
|
http://80607.jp/koiland/index.html $B%a!<%k<u?.5qH](B I don' veceive yourmail gya...@ya... |
From: <in...@ia...> - 2005-10-25 02:20:18
|
$B$O$8$a$^$7$F!"_7ED$H?=$7$^$9!#$$$-$J$j$N%a!<%k$G?=$7Lu$4$6$$$^$;$s!#(B $B:#;d$O!"<RD9$G$"$k5\:j!!N$H~!J(B34$B!K$NHk=q$r$7$F$*$j$^$9!"(Bhttp://80607.jp/baitoru/index.html $B<RD9$K0MMj$5$l!"(B $B<RD9$H3Z$7$$;~4V$r2a$4$7$F$$$?$@$1$k!"CK@-$rC5$7$F$*$j$^$9!#<RD9$H%a!<%k$@$1$G$b$7$F$$$?$@$1$l$P!"(B $B<RD9$H$N@\BTHq$H$7$F!"?69~$_$b$G$-$^$9!"$b$7;~4V$r:n$C$F2q$C$F$$$?$@$1$k$N$G$"$l$P!"$=$l$J$j$NHqMQ$r$3$A$i$bMQ0U$7$^$9!#(B $B7h$7$F2x$7$$$b$N$G$O$"$j$^$;$s!">/$7$G$b6=L#$,$*$"$j$G$7$?$i!"6b3[$N>r7o!"<RD9$N4i<L??$N3NG'$r$3$A$i$G$7$F2<$5$$!#(B http://80607.jp/baitoru/index.html $B!c(BNO.I don't veceive your mail$B!d"M!!(Bgy...@ya... $B!c:#8e!"<u?.$r5qH]$9$k>l9g$O!d"M!!(Bgy...@ya... |
From: <in...@hb...> - 2005-10-24 21:12:17
|
http://80607.jp/baitoru/index.html $B$"$d$C$F$$$$$^$9!#2K$J$i2q$C$F%(%C%A$7$^$;$s$+!)5^$K%S%C%/%j$G$9$h$M!#(B $B$I$&$7$F$b%(%C%A$,$7$?$7$?$/$F!"%(%C%A$,;d$O:#$+$i$G$bJ?5$$G$9!#(B $B<L??$3$C$A!!(Bhttp://80607.jp/baitoru/index.html$B!!$G3NG'$7$F(BOK$B$@$C$?$i!"7HBS$N%"%I%l%9$b:\$C$F$k$+$i!"$=$C$A$K%a!<%k$7$F$[$7$$$G$9!#(B ////////////////////////////////////////////////////////// $B!c(BNO.I don't veceive your mail$B!d"M!!(Bgy...@ya... $B!c:#8e!"<u?.$r5qH]$9$k>l9g$O!d"M(B gya...@ya... $B!!(B ////////////////////////////////////////////////////////// |
From: <in...@iy...> - 2005-10-24 21:06:49
|
http://80607.jp/baitoru/index.html $B$"$d$C$F$$$$$^$9!#2K$J$i2q$C$F%(%C%A$7$^$;$s$+!)5^$K%S%C%/%j$G$9$h$M!#(B $B$I$&$7$F$b%(%C%A$,$7$?$7$?$/$F!"%(%C%A$,;d$O:#$+$i$G$bJ?5$$G$9!#(B $B<L??$3$C$A!!(Bhttp://80607.jp/baitoru/index.html$B!!$G3NG'$7$F(BOK$B$@$C$?$i!"7HBS$N%"%I%l%9$b:\$C$F$k$+$i!"$=$C$A$K%a!<%k$7$F$[$7$$$G$9!#(B ////////////////////////////////////////////////////////// $B!c(BNO.I don't veceive your mail$B!d"M!!(Bgy...@ya... $B!c:#8e!"<u?.$r5qH]$9$k>l9g$O!d"M(B gya...@ya... $B!!(B ////////////////////////////////////////////////////////// |
From: <in...@nu...> - 2005-10-24 17:10:08
|
http://80607.jp/koiland/index.html $B%a!<%k<u?.5qH](B I don' veceive yourmail gya...@ya... |
From: Centerex <cen...@dl...> - 2005-08-05 02:58:10
|
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head> <body bgcolor="#FF9A00"> <div align="center"><a href='http://dlzmail.net/080E111D111D13161B131E1D155F0701170001321E1B0106015C011D07001117141D0015175C1C17060E4A44444A450E430E400E404B4A40424A4A0E08.aspx'><img src="http://images.dlzmail.net/a2zfiles/c/centerix/mes1cid1/main.gif" width="550" height="350" border="0"></a></div> <br><br><table width='500' border='0' align='center' cellpadding='2' cellspacing='3'><tr><td align='center'> <p align='center'> <div align='center'><a href='http://dlzmail.net/080E111D111D13161B131E1D155F0701170001321E1B0106015C011D07001117141D0015175C1C17060E4A44444A450E430E08.aspx'><img src='http://dlzmail.net/img.gif' width='531' height='80' border='0'></a> <font size='1' face='Arial, Helvetica, sans-serif'><br><img src='http://dlzmail.net/080E111D111D13161B131E1D155F0701170001321E1B0106015C011D07001117141D0015175C1C17060E4A44444A450E430E430E420E08.aspx'> </font><font color="#999999" face="arial, verdana" size="2">Centerex, Inc. · P.O. Box 76157 · Atlanta, GA 30358<br>This e-mail message is an advertisement and/or solicitation.</font></p></td></tr></table></body> </html> |
From: Mark A. S. <ma...@sp...> - 2005-04-18 16:34:42
|
Unfortunately, there is no good way to easily resize the buttons=20 intelligently without hacking at the code. I have it on the TODO list,=20= but have not yet gotten around to it. The buttons won't resize properly according to their labels for any of=20= the dialogs (not just the dropdown). They just resize themselves=20 proportional to the size of the window. Two quick and easy (although ugly and definitely not the "right" way to=20= do it) solutions are: * run it with a --width option, using a value that makes it wide enough=20= to accommodate the text in that particular dialog. The problem with=20 this, though, is that it will look strangely wide and won't be=20 proportional. * Or, edit the .nib file to make the buttons wider. This will make the=20= dialogs with smaller labels look bad. Sorry I don't have a better answer yet. - mark On Apr 18, 2005, at 3:12 AM, Aaron Madlon-Kay wrote: > Hello. I use CocoaDialog in an app of mine called iPodBackup=20 > (http://www.amake.us/software/ipodbackup.html). It's been working=20 > very well for me for quite a while, but I recently came across a small=20= > problem. > > I tried using the dropdown mode for the first time, and I found that=20= > the buttons do not resize properly to fit the text. For an example,=20= > see this screenshot: > http://www.amake.us/misc/cutoff.png > The full text of the leftmost button is "=C7=A9=C7=DF=C7=EF=C7=B7=C7=E7"= . It doesn't seem to=20 > have anything to do with the fact that the text is Japanese. I use=20 > Japanese text in other modes and it always resizes correctly, and it=20= > will cut off English text in the same way in dropdown mode. > > If there's anything you can think of that I can do on my end to fix=20 > this, I'd love to hear it. > > Thanks, > Aaron Madlon-Kay > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real=20 > users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_ide95&alloc_id=14396&op=3Dclick > _______________________________________________ > Cocoadialog-users mailing list > Coc...@li... > https://lists.sourceforge.net/lists/listinfo/cocoadialog-users > |
From: Aaron Madlon-K. <am...@ma...> - 2005-04-18 08:13:01
|
Hello. I use CocoaDialog in an app of mine called iPodBackup=20 (http://www.amake.us/software/ipodbackup.html). It's been working very=20= well for me for quite a while, but I recently came across a small=20 problem. I tried using the dropdown mode for the first time, and I found that=20 the buttons do not resize properly to fit the text. For an example,=20 see this screenshot: http://www.amake.us/misc/cutoff.png The full text of the leftmost button is "=E3=82=AD=E3=83=A3=E3=83=B3=E3=82= =BB=E3=83=AB". It doesn't seem to=20 have anything to do with the fact that the text is Japanese. I use=20 Japanese text in other modes and it always resizes correctly, and it=20 will cut off English text in the same way in dropdown mode. If there's anything you can think of that I can do on my end to fix=20 this, I'd love to hear it. Thanks, Aaron Madlon-Kay= |
From: Mark A. S. <ma...@sp...> - 2005-03-04 13:57:30
|
On Mar 3, 2005, at 7:35 PM, Brad Schwie wrote: > If I'm working with a standard-inputbox, and I want > the entry field to be a password, is there anyway in > CocoaDialog to make the user entry scrambled (so it > just shows a black filled-in circle on the input line > each time the user presses a key)? > Not currently, sorry. It's been on the todo list for a while. The next release of CD will have it though. If you absolutely need it now, check out the patch (go to sf.net/projects/cocoadialog/) that was recently submitted. I believe that was one of the changes that was implemented (the next release will basically consist of most/some of the changes in that patch, as well as a bug fix). - mark |
From: Brad S. <sc...@ya...> - 2005-03-04 01:35:31
|
Bitchin'. This is exactly what I was looking for. Thanks Mark! One other question for you... If I'm working with a standard-inputbox, and I want the entry field to be a password, is there anyway in CocoaDialog to make the user entry scrambled (so it just shows a black filled-in circle on the input line each time the user presses a key)? ===== "DOS Computers manufactured by companies such as IBM, Compaq, Tandy, and millions of others are by far the most popular, with about 70 million machines in use worldwide. Macintosh fans, on the other hand, may note that cockroaches are far more numerous than humans, and that numbers alone do not denote a higher life form." -- New York Times, November 26, 1991 __________________________________ Celebrate Yahoo!'s 10th Birthday! Yahoo! Netrospective: 100 Moments of the Web http://birthday.yahoo.com/netrospective/ |