This is my first time posting, as well as my first foray into any substantial OSC scripting.  It's a bit convoluted, but here is a way to get your light board (an Ion in this example) to react to audio and mic cues in QLab if you don't have the resources to use the OSC/MIDI method posted in this group.  Some techniques were borrowed from the DiscOSC writeup in the QLab Cookbook.
Basically,  there is a set of OSC cues designed to send intensity levels to the Ion.  In this example, I used three submasters to which the LD had assigned certain effects.  Each submaster has its own set of cues affecting the intensity by multiples of 10, running from 20% to 100%.  The liveAverageLevel command is being used to take readings from a mic cue that has been replicated and adjusted with band passes to isolate high, mid, and low, like with the other methods of achieving this effect.  The difference here is that the level reading is then being applied to the target number of a start cue set to autofollow, and another start cue set to keep the whole thing looping every 0.1 seconds.
The problem I initially found with this method is that the liveAverageLevel command returns values to a precision of 6 decimal points.  To get a value that would correspond to the number of cues available to manipulate light levels, that meant my level-reading OSC cue looked like this:
/cue/123/cueTargetNumber #/cue/LO/liveAverageLevel/1 .000001 .000009#
When inserting the returned values into a cue target number, QLab converted them into scientific notation, so the numbers for my cues controlling the submasters end up being 1e-06, 2e-06, 3e-06, and so on.  When it's all running, it looks like what you can see in the following video.
Adjustments could be made to make more finely tuned submaster adjustments, and to increase the rate at which level readings are taken, but this seemed like a good starting point.  I imagine there are a number of other variable you could affect on your lighting console as well, but I didn't have time to dig through the Eos OSC dictionary any further.  As I said, it's a convoluted method, but it's what I could come with, given the tight schedule I was on and the fact that these are the first OSC cues I've used that weren't just hitting Go on another instance of Qlab.  Hopefully this post and cue file will save someone else the headache of figuring it out, or at least generate some responses that show me a better way to go about this.