On Wed, 7 Nov 2007 23:44:49 +, Dave wrote:
> Thought I'd share this one! If you have a number of function calls
> that can fail by returning a value and you need to check but also
> save the result, here's a neat trick:
Nice one, Dave! I can see that coming in handy..
Hi All,
Thought I'd share this one! If you have a number of function calls
that can fail by returning a value and you need to check but also
save the result, here's a neat trick:
repeat forever
put empty into myErrorMessage
if somefunction(Inputparam1, Inputparam2,myResult1,myEr
On Fri, 9 Mar 2007 15:36:04 +, Dave wrote:
> Hi All,
>
> I was trying to make a Generic Menubar Stack, but had the old problem
> that the text changes depending on the name of the application, e.g.
> "About thisApp", "About thatApp", ""About theOtherApp". Anyway, I
> tried the following c
Hi Dave,
you can always do this too:
on mousedown
put "About" && the short name of this stack into last line of me
pass mousedown
end mousedown
This way you always have the right about menu ;)
Cheers
-=-
Xavier Bury
[EMAIL PROTECTED] wrote on 09/03/2
Hi All,
I was trying to make a Generic Menubar Stack, but had the old problem
that the text changes depending on the name of the application, e.g.
"About thisApp", "About thatApp", ""About theOtherApp". Anyway, I
tried the following code and it worked! I hadn't realized before that
a par