help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: zenity package from MacPorts?


From: CdeMills
Subject: Re: zenity package from MacPorts?
Date: Thu, 12 Aug 2010 09:18:31 -0700 (PDT)

Did you try zenity from a shell ? 

On linux machines, I use it as
    oper = [];
    while isempty(oper),
      [status, oper] = system(['zenity --list ' \
                               '--title="choisissez l''opération" ' \
                               '--column=Oper --column=Action '\
                               ' 1 "Analyser (simple) une acquisition" '\
                               ' 2 "Analyser (pause) une acquisition" '\
                               ' 3 "Faire une nouvelle acquisition" '\  
                               ' 4 "Quitter" ']);
      oper = deblank(oper);
    endwhile

So, as far as zenity is in the standard search path, it should be found. The
'path' you're modifying in .octaverc is used to find .m and .oct files, not
standard executables.

Regards

Pascal
-- 
View this message in context: 
http://octave.1599824.n4.nabble.com/zenity-package-from-MacPorts-tp2322820p2322959.html
Sent from the Octave - General mailing list archive at Nabble.com.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]