in reply to Sharing variables between applications
Here's a suggestion, based on a wild guess about what you are trying to describe. If app2 will continue to be useful on its own as a GUI, and a particular subroutine in app2 does what is needed in app1, then the simplest thing would be to isolate that subroutine as a module (along with anything else it needs to do its job), so that both app1 and app2 can use it, without getting bogged down in IPC issues (which tend to be a little trickier when applied to scripts that have GUIs).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Sharing variables between applications
by fanticla (Scribe) on Jul 04, 2010 at 17:00 UTC |