I trying to open another stack that isn't loaded in memory. I thought I could just:
open stack "whatever"
and it would open. Then I tried :
open stack "E:\KP Docs\Hypercard\whatever"
and it still won't open.
Obviously a syntax problem but I haven't run in to it before. Would someone please set me straight.
Thanks
Glenn
Opening another stack
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
-
- VIP Livecode Opensource Backer
- Posts: 977
- Joined: Sat Apr 08, 2006 7:47 am
- Contact:
Hi Glenn,
Revolution works with Unix-style paths, so try replacing the "\" with "/" in your path. To help you figure out the correct path to a file, simply create a button with script and this will let you select the file and display the filepath according to Revolution standards.
HTH,
Jan Schenkel.
Revolution works with Unix-style paths, so try replacing the "\" with "/" in your path. To help you figure out the correct path to a file, simply create a button with script
Code: Select all
on mouseUp
answer file "Please select the file"
if it is not empty then answer it
end mouseUp
HTH,
Jan Schenkel.
Quartam Reports & PDF Library for LiveCode
www.quartam.com
www.quartam.com
-
- Posts: 137
- Joined: Thu Jul 24, 2008 11:22 pm