Excuse me, I do not how to jump from one card to another card by click a button.
how to write the script? Thank you.
how to jump from one card to another card
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
-
- VIP Livecode Opensource Backer
- Posts: 10052
- Joined: Sat Apr 08, 2006 7:05 am
- Contact:
Re: how to jump from one card to another card
See the Go command in the Dictionary, e.g.:
go cd "SomeCardName"
or by number:
go cd 4
or by ID:
go cd id 1044
go cd "SomeCardName"
or by number:
go cd 4
or by ID:
go cd id 1044
Richard Gaskin
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn
Re: how to jump from one card to another card
Hi Tony,
Welcome to the forum!
As Richard said!
You mght want to take a look at these stacks to get the basics of Livecode:
http://www.hyperactivesw.com/revscriptc ... ences.html
Best
Klaus
Welcome to the forum!
As Richard said!

You mght want to take a look at these stacks to get the basics of Livecode:
http://www.hyperactivesw.com/revscriptc ... ences.html
Best
Klaus
-
- Posts: 3
- Joined: Tue Nov 05, 2013 6:28 pm
Re: how to jump from one card to another card
Thank you very much.