Support
All support resources for our products. Here you can find answers to frequently asked questions, discuss with other users, recover a lost license code or file a support request.
Forum closed
This forum was closed and turned into an archive effective April 21, 2018. It is no longer possible to create new topics or reply to existing topics.

Thanks everyone for all the great questions and contributions over the years.

Please use the Contact form to get in touch.

Remote Buddy Forum

Overview 

AuthorThread
User

09.05.2007 18:56:01
Re: Re: maybe a bug, maybe not

This posting is older than 6 months and can contain outdated information.
AppleScript has it's own pitfalls when combing arrays. I.e. with

set sampleArray1 to { 1, 2, 3 } 
set sampleArray2 to { 4, 5, 6 }

set combinedArray to sampleArray1 & sampleArray2 
set encapsulatedArray to sampleArray1 & { sampleArray2 }

will give you

{ 1, 2, 3, 4, 5, 6 } for combinedArray

and

{ 1, 2, 3, { 4, 5, 6 } } for encapsulatedArray

That info itself may be helpful when creating hierarchical menus fit 
for "showmenu".

Regarding the execution of actions and the dismissal of Remote 
Buddy's main menu (the showmenu menu should always be dismissed upon 
a selection): 
absolutely true - unless an action exports a special flag that the 
menu should be closed. So the functionality is there - it's just 
currently not settable in the BCK. It will be, though.

Best regards, 
Felix 

Thread-display::