Adjusting slide properties for multiple slides in question bank

Mar 09, 2018

Is there a way to adjust the slide properties for multiple slides at once in a question bank? For example, if I want to change the Player Features in multiple slides, do I have to go to each slide and adjust it or is there a way I can select multiple slides and adjust them in one pass?

6 Replies
Thorsten H.

Hi Allison, 

Thanks for your answer. I just don't want to click each question one by one. So obviously there is no feature like this yet. 

So I did it automatically by the free macro recorder Autohotkey. I deactivated the submit Button for 400 questions in 5 minutes.

For All Who want to automate it for themselves for free. Macros are one or many keystrokes/mouse clicks that are done by your Computer. What to click and do is listed on a Checklist, called Script file.

I downloaded Autohotkey, installed, downloaded attached file (or copy scriptcode that is below in a file with -ahk-extension).

Then I hit right mouse Button on ahk-file Choose "Run Script" and switched to SL. The automation did the rest.

BR,

Thorsten 

/*
Deactivation of "Submit" button in Slideproperties in SL3

*/

#SingleInstance Force

Sleep, 5000
Loop, 15
{
Send {LShift}s
Sleep, 200
Send, {Tab}
Sleep, 100
Send, {Tab}
Sleep, 100
Send, {Tab}
Sleep, 100
Send, {Tab}
Sleep, 100
Send, {Tab}
Sleep, 100
Send, {Tab}
Sleep, 100
Send, {Tab}
Sleep, 100
}

!x::ExitApp
!p::Pause

 

Thorsten H.

Hi there

you could automate even more than decribed above .

So the script will run 15 times. To change that number, just change the "15" that is bold marked in the code  to whatever you like.

And after the scipt has started by choosing "Run Script" you have 5 seconds time to swith to Storyline-window. If you want to change that to 10 seconds just change the "5000" to "10000" as these are milliseconds.

BR

Thorsten

This discussion is closed. You can start a new discussion or contact Articulate Support.