Free thoughts and words

the decision wheel (software)

9 replies 2,471 views

Started by

ScalaQuaranta

Member

Member

Opening post by ScalaQuaranta

Posts
536
City
torino

hello everyone,

i am looking for software for a MacBook Pro of the type "DECISION WHEEL", i.e., a virtual wheel where different items or "labels" can be entered and, through a random rotation activated by pressing a "button", one is selected (only one label per rotation). I need it because, with PowerPoint, I am trying to invent a board game for my students to make the discussion of music theory less boring; and the decision wheel is needed, precisely, to select one topic at a time; I could find other solutions, certainly; but the wheel creates that minimum amount of suspense, especially if it is projected on a large screen. I have found several smartphone applications and they are all very good; but I would prefer to have software (even paid, if necessary) installed on the computer. thank you and happy music

ScalaQuaranta

Member

Reply 2 by Bit

Posts
225

If I'm not mistaken, you can do it directly in PowerPoint by inserting a button paired with the random function.

Member

Reply 3 by Bit

Posts
225

Anyway... Mac or PC?

(it could be nice to even use the "original" graphical interface... but you would need at least 37 (or 38) topics; perhaps classifying them into two "families" and pairing them with red and black. You would be left with green)

Member

Reply 4 by ScalaQuaranta

Posts
536
City
torino

interesting, Bit, thanks! I didn't know PowerPoint had this function... now I'll tinker with it a bit!

anyway, I use the MacBook Pro

P.S. what do you mean by original graphical interface?

Member

Reply 6 by ScalaQuaranta

Posts
536
City
torino

I've tinkered so much, God only knows how much.... but on PowerPoint, the random function, just, I couldn't find it!

Bit, I am eagerly awaiting another one of your tips! thanks 1000, for now!

Member

Reply 8 by DiesIrae

Posts
209
City
-

http://www.pptalchemy.co.uk/vbasamples.html

This is the code to jump to a random slide within a given range. Give an action button an action of Run > Macro > randjump to use it.

To generate the random number use this formula:

Number =Int((highest number in range - one less that lowest number)*rnd + lowest number in range)

eg For a number between 4 and 10

number = Int(10-3)*rnd+4) ---OR -- Int(7*rnd +4)

So here's the code to jump to a random slide between 4 and 10

Sub randjump()

randomize

Dim Inum As Integer

Inum = Int(7 * Rnd + 4)

ActivePresentation.SlideShowWindow.View.GotoSlide (Inum)

End Sub

http://www.pptalchemy.co.uk/vbasamples.html
Log in to participate