Edmedia presentations
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
- 
				marielle
 - Livecode Opensource Backer

 
Edmedia presentations
Two papers have been accepted for EdMedia, an important Education conference in Vancouver.
Runtime Revolution: An easy to learn programming software for educators
Judy Perry and Marielle Lange
Adventure Game Creator
Marielle Lange and Judy Perry
			
			
									
									
						Runtime Revolution: An easy to learn programming software for educators
Judy Perry and Marielle Lange
Adventure Game Creator
Marielle Lange and Judy Perry
- 
				marielle
 - Livecode Opensource Backer

 
I agree with the remote control and laser pointer, but wouldn't it make sense to use Rev instead of Keynote? :-)
Mark
			
			
									
									Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
						The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
- 
				marielle
 - Livecode Opensource Backer

 
Good point!xApple wrote:Use Keynote and it's stylish transition effects
Essential also is the remote control and laser pointer combined in one.
I mean; that's what Steve Jobs uses for his, so...
I have one of these keyspan thingy. I found it to be an excellent investment (during my academic years).
An issue is to practice it... takes a bit of time to get used to point with this with the remote rather than keyspan + you can page up/page down using a button on the right. Then you need to practice again... under stress conditions, because if you mess up with these buttons, this creates havoc
As I haven't used it for a while, I will need to make sure I have a spare battery
- 
				marielle
 - Livecode Opensource Backer

 
True, on a mac, I can use it to move the cursor around and click on any button on the screen.Mark wrote:I agree with the remote control and laser pointer, but wouldn't it make sense to use Rev instead of Keynote?
Any idea how you can capture the pageUp/pageDown signal from the remote to switch to the next card?
- 
				marielle
 - Livecode Opensource Backer

 
checking out the message watcher. It looks like an arrow key message is sent.
And the job is done 
. This works wonders.
			
			
									
									
						Code: Select all
on arrowkey pKey
  if pKey is "up" then 
    go next card
  else if pKey is "down" then
    go prev card
  end if
end arrowkey