Navigate in different cards
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Navigate in different cards
Hi everybody
i have to build a simple livecode app.
i have to put in a card some images, videos and text and i have to navigate in different card (like a book, pass with button to next and previous card).
can someone help me with a specific guide??
thank you
i have to build a simple livecode app.
i have to put in a card some images, videos and text and i have to navigate in different card (like a book, pass with button to next and previous card).
can someone help me with a specific guide??
thank you
Re: Navigate in different cards
Hi mauro,
1. welcome to the forum!
2. the basic command to GO to another card:
go cd "name of card here"
OR
go cd X ## where X = the number of the card. 1 = first card etc...
Check "go" in the dictionary!
cd = abrreviation for card, less typing
3. I highly recommend to work throgh these stacks to get the basics of Livecode:
http://www.hyperactivesw.com/revscriptc ... ences.html
Best
Klaus
1. welcome to the forum!

2. the basic command to GO to another card:
go cd "name of card here"
OR
go cd X ## where X = the number of the card. 1 = first card etc...
Check "go" in the dictionary!
cd = abrreviation for card, less typing

3. I highly recommend to work throgh these stacks to get the basics of Livecode:
http://www.hyperactivesw.com/revscriptc ... ences.html
Best
Klaus
Re: Navigate in different cards
thank you to help me so fast
i need just an application like the" LiveCode/Revolution Scripting Conferences" !!!!
I need to navigate with 2 menus (firts menu and second menus) and show in other windows text, imagen and videos.
What do you advise me?? Take an " LiveCode/Revolution Scripting Conferences", change the text and the image or make a new app?
it is for a little academic work


i need just an application like the" LiveCode/Revolution Scripting Conferences" !!!!
I need to navigate with 2 menus (firts menu and second menus) and show in other windows text, imagen and videos.
What do you advise me?? Take an " LiveCode/Revolution Scripting Conferences", change the text and the image or make a new app?
it is for a little academic work


Re: Navigate in different cards
Hiu Mauro,
I would advice to make you familiar with teh concepts of Livecode!
Start small:
Create a new stack, create new cards, add some images and some buttons for navigation.
Example
Not sure what you mean by "I need to navigate with 2 menus (first menu and second menus)"?
See above, I would recommend some buttons for navigation!
Best
Klaus
I would advice to make you familiar with teh concepts of Livecode!
Start small:
Create a new stack, create new cards, add some images and some buttons for navigation.
Example
Code: Select all
on mouseup
## Self explaining :
go next cd
## or the opposite:
## go prev cd
end mouseup
See above, I would recommend some buttons for navigation!
Best
Klaus
Re: Navigate in different cards
ok i did it.
i create 3 cards and i navigate on them with button (next and prev). it's run
i explain you better:
i need a menu (calls menu1), for example with a,b,c,d.
if i choose b, I enter in another menu (calls menu2), with 1,2,3,4,5,6
and then, if I choose 3, it appear a card (with image, text and a video) and I navigate with button next and pre (there are 5 or 6 card for each element of the menu2).
How can i do this??
thank you so much
i create 3 cards and i navigate on them with button (next and prev). it's run


i explain you better:
i need a menu (calls menu1), for example with a,b,c,d.
if i choose b, I enter in another menu (calls menu2), with 1,2,3,4,5,6
and then, if I choose 3, it appear a card (with image, text and a video) and I navigate with button next and pre (there are 5 or 6 card for each element of the menu2).
How can i do this??
thank you so much
Re: Navigate in different cards
Hi Mauro,
Best
Klaus
great!mauro1388 wrote:ok i did it.
i create 3 cards and i navigate on them with button (next and prev). it's run![]()
![]()

Sorry, don't have the slightest idea what you are trying to do!?mauro1388 wrote:i need a menu (calls menu1), for example with a,b,c,d.
if i choose b, I enter in another menu (calls menu2), with 1,2,3,4,5,6
and then, if I choose 3, it appear a card (with image, text and a video) and I navigate with button next and pre (there are 5 or 6 card for each element of the menu2).
Best
Klaus
Re: Navigate in different cards
ajajajaj im sorry for my bad english!!
no problem, it's something very similar to the LiveCode/Revolution Scripting Conferences
thanx for your help

no problem, it's something very similar to the LiveCode/Revolution Scripting Conferences
thanx for your help


Re: Navigate in different cards
Mauro.
When you choose "b" from the first menu, and then "3" from the second, how does that information ("b,3") tell you where to navigate? This should be simple to help you with, but it is not clear what you are doing with your menu choices. For example, does the "b" tell you which image to display, or which card to go to? And the "3"? Same question...
Craig Newman
When you choose "b" from the first menu, and then "3" from the second, how does that information ("b,3") tell you where to navigate? This should be simple to help you with, but it is not clear what you are doing with your menu choices. For example, does the "b" tell you which image to display, or which card to go to? And the "3"? Same question...
Craig Newman
Re: Navigate in different cards
Do you mean you want submenus? Like this?
Code: Select all
Item One
Sub one
Sub Two
Item Two
Sub Three
Sub Four
Item Three
Sub Five
Sub Six
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com