Multiple instances?

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: Klaus, FourthWorld, heatherlaine, kevinmiller

Post Reply
richmond62
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 10430
Joined: Fri Feb 19, 2010 10:17 am

Multiple instances?

Post by richmond62 »

Suppose I wish to open multiple instances of LiveCode on MacOS like this:

Code: Select all

open -n -a LiveCode
1. How can I send that command to the Mac Terminal app?

2. Is it possible for several instances of LiveCode to communicate with one another?
Klaus
Posts: 14325
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: Multiple instances?

Post by Klaus »

Hi Richmond,

1. from within LC?

Code: Select all

## Maybe you need to supply the full path to your LC installation
put "open -n -a LiveCode" into tShell
get shell(tShell)
2. No idea.

Best

Klaus
richmond62
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 10430
Joined: Fri Feb 19, 2010 10:17 am

Re: Multiple instances?

Post by richmond62 »

Indeed: Thanks Klaus: I did supply the full path to the app.

That is NOT the real problem: I just wonder if I can initiate multiple instances and communicate between them as a way of effecting multithreading.
Post Reply