1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Q Light Controller Plus Documentation - Multipage Frame Tutorial</TITLE>
<SCRIPT SRC="utility.js" TYPE="text/javascript"></SCRIPT>
<link href="style.css" rel="stylesheet" type="text/css" />
</HEAD>
<BODY onLoad="replaceqrc()">
<H1>Multipage frame tutorial</H1>
<P>
This tutorial covers how to set up a multipage frame and related remote MIDI control.
The main advatages of multipage frames are better usage of screen estate, and more functions
can be controlled by limited number of available real faders.
</P>
<P>I will use Behringer BCF2000 as a MIDI controller in this tutorial, because
that's what I own, but you can use any suitable controller. Besides that BCF2000 has
flying (motorized) faders that are very handy when switching pages.
</P>
<P>Note: In previous QLC+ versions, it was require to edit MIDI profile to define Previous page and Next page buttons.
This is no longer needed.</P>
<H2>Executive summary</H2>
<P>If you don't want to read the whole text, here are the bare bones of it:
<UL>
<LI>Create frame/soloframe, enable pages in its properties, enter number of pages,
and set the buttons from previous step as external input. Now page switching should work.</LI>
<LI>Put widgets to pages, external control will have "(Page X)" appended.</LI>
<LI>That's it.</LI>
</UL>
</P>
<H2>The plan</H2>
We will proceed with this tutorial in several steps:
<UL>
<LI>Initial setup</LI>
<LI>Create multipage frame</LI>
<LI>Setup remote control</LI>
<LI>Useful tips and improvements</LI>
</UL>
<H2>Initial setup</H2>
<P>To make thinds easy, let's assume we want to control 32 PAR cans on a dimmer addressed 1 to 32.
we want to control them from BCF2000 MIDI controller (that has 8 flying faders). We want to make one
fram with 4 pages, each containing 8 sliders one for each PAR can. If you don't have enough dimmer channels
at hand, either skip some channels and use only 1-2 on each page, or just check the output in the
DMX monitor window.</P>
<P>First, go to Fixture Manager <IMG SRC="qrc:/fixture.png" align="absmiddle" /> and add 32 generic
dimmer channels.</P>
<img src="../images/multipage1.png" />
<P>Next things will happen in Virtual console <img src="qrc:/virtualconsole.png" align="absmiddle" />.
<H2>Create Multipage frame</H2>
<P>The most basic way how to create multipage frame is to create simple frame <img src="qrc:/frame.png"
align="absmiddle" />. Now right-click on the frame to open context menu, and select "Widget properties"
(or press CTRL-E). Go to <a href="vcframe.html#pages">"Pages"</a> tab. Select "Enable", to enable
the multipage functionality. Enter "4" in the "Number of pages" edit box. Press "OK".</P>
<img src="../images/multipage2.png" />
<P>Now we'll add the faders for the first page. Add 8 faders one by one. Then click on the
<img src="qrc:/forward.png" align="absmiddle"> button and do the same for page 2, and again for pages
3 and 4. For each button, open its Widget properties, select level mode, and select respective dimmer
channel.</P>
<img src="../images/multipage3.png" />
<P>Now change to operate mode, and check if the sliders work.</P>
<H3>Alternative approach</H3>
<P>Instead of separately creating sliders for each page, we could create them <i>before</i> enabling
pages and we would select also "clone first page widgets". Then all sliders will be cloned to all
pages.</P>
<H2>MIDI control</H2>
<P>In the next step, we are going to setup MIDI remote control. In other words, we want to control
switching of the pages and the sliders from the MIDI controller.</P>
<P>We start in Input/Outputs tab and setting basic MIDI control. Select e.g. universe 2 for MIDI control,
choose BCF2000 MIDI 1 port; check both "input" and "feedback", and select BCF2000 profile.<P>
<P>Now go to the virtual console, right click the multipage frame, and select "Widget Properties". Select some
buttons as external controls for Previous and Next page, either by autodetection, or choose
from the list (Don't forget to disable autodetect for Previous Page when you are setting Next Page, otherwise
you will change both!). I use "Button 9 Top" for previous page, and "Button 10 TOP" for next page, but you
can choose any buttons. Push OK to close the dialog. Now the two buttons should work. Try them now to switch
the pages.</P>
<P>The last thing to do is to link the sliders in the frame with the BCF faders. Select page 1, and open
properties for every slider on the page, setting external control as usual. The BCF sliders will have "(Page 1)"
appended to them ("82: Slider 1 (Page 1)"). When you are finished with the first page, select page 2, and do the
same, and then page 3 and 4. Since with BCF200 we have MIDI feedback, it's not important if we switch pages in
QLC+ or on the MIDI controller. For controllers without feedback, it's crucial to use buttons on the controller,
otherwise the pages will get out of sync.</P>
<P>Now you can test the sliders from MIDI controller - all of the 32 PAR cans should be controllable using those
8 faders and 2 buttons.</P>
<H2>Tips and tricks</H2>
<H3>Multipage solo frames</H3>
<P>Solo frames work across pages. If you press a button on any page, buttons/widgets on all pages will et released.</P>
<H3>It is not possible (yet?) to set some buttons to select concrete page, e.g. button to select Page 1, another for Page 2, etc.</H3>
</BODY>
</HTML>
|