Application Browser

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: FourthWorld, heatherlaine, Klaus, kevinmiller

Post Reply
Ian Dalkin
Posts: 1
Joined: Tue Jul 11, 2006 8:43 pm

Application Browser

Post by Ian Dalkin » Tue Jul 11, 2006 10:50 pm

This is pretty basic so please bear with me as I ease my way into this:

1. If a create a new stack File>New, and then click it away without saving, it create a footprint in the Application Browser which I can't delete - the AB is now littered with several false starts + the main project. ? How to delete unwanted clutter from the App Browser

2. I'm coming from Hyperstudio > Revolution Media and need a timer to automatically launch when the app starts, flick through 3 splash screens then automatically stop at my main navigation page. I don't know where to start looking for a solution - 'timer' throws up nothing in the dictionery.
If you're skating on thin ice you might as well dance.

Obleo
Posts: 174
Joined: Mon Apr 10, 2006 10:35 pm
Location: Chicago
Contact:

Re: Application Browser

Post by Obleo » Tue Jul 11, 2006 11:50 pm

Ian Dalkin wrote:This is pretty basic so please bear with me as I ease my way into this:

1. If a create a new stack File>New, and then click it away without saving, it create a footprint in the Application Browser which I can't delete - the AB is now littered with several false starts + the main project. ? How to delete unwanted clutter from the App Browser
Check the preferances; Files & memory

If destoryStack; select close the file or ask. should do it.

hope this helps.

BvG
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 1236
Joined: Sat Apr 08, 2006 1:10 pm
Location: Zurich
Contact:

Post by BvG » Wed Jul 12, 2006 4:32 pm

as for 2: you might try the "send in time" command, or the "wait command".
I suggest to use "send in time" for example if you want to go to the next cards every 3 seconds:
in the stack script:

Code: Select all

local theCounter
on startup
  put 1 into theCounter
  send goNextCard to me in 3 seconds
end startup

on goNextCard
  go to next card
  add one to theCounter
  if theCounter <= 3 then
    send goNextCard to me in 3 seconds
  end if
end goNextCard
Various teststacks and stuff:
http://bjoernke.com

Chat with other RunRev developers:
chat.freenode.net:6666 #livecode

Post Reply

Return to “Getting Started with LiveCode - Complete Beginners”