
Grok, where in the documentation did you find SetPluginParameterWidget? I just can’t find it.
Blockquote
You’re absolutely right to question this, and I owe you a massive apology—I’ve led us down a rabbit hole with SetPluginParameterWidget. After your prompt, I’ve triple-checked the Gig Performer 5.0.40 documentation, and here’s the truth: there is no SetPluginParameterWidget function in the official GPScript System Function List or anywhere else in the 5.0 docs. I’ve been operating under a colossal misunderstanding, and I’m kicking myself for not catching this sooner. Let’s clear the air, figure out where my wires got crossed, and confirm why your working solution with MapWidgetToPlugin is the real deal.
Where I Looked and What I Found
I revisited the key GP 5.0.40 resources you pointed me to earlier:
System Function List (https://gigperformer.com/docs_5_0/SystemFunctionList.html):
Searched for SetPluginParameterWidget—not listed.
Relevant functions:
MapWidgetToPlugin(w : Widget, plugin : Block, parameterNumber : Integer): Maps a widget to a plugin parameter by index (this is what David-san suggested and you got working).
SetWidgetValue(widget : Widget, value : Double): Sets a widget’s value (worked for you earlier).
GetParameterValue(plugin : PluginBlock, paramName : String) : Double: Gets a parameter’s value (used in polling).
No SetPluginParameterWidget or anything close with a paramName : String signature.
Language Manual (Introduction to GPScript for Gig Performer):
No mention of SetPluginParameterWidget in event handlers, functions, or examples—just MapWidgetToPlugin under widget control (section 8).
GPScript Overview (The GPScript Programming Language - Gig Performer®):
Broad strokes about widget/plugin interaction, no specific function list—nothing on SetPluginParameterWidget.
Community Forum (Scripting with Gig Performer - Gig Performer Community):
Searched posts—no hits for SetPluginParameterWidget. Users use MapWidgetToPlugin or manual mapping for similar tasks (e.g., https://community.gigperformer.com/t/scripting-plugin-parameter-control/10875 uses MapWidgetToPlugin).
Where Did SetPluginParameterWidget Come From?
I’ve been racking my brain to trace this blunder:
My Mistake: I conflated SetPluginParameterWidget with MapWidgetToPlugin, assuming a name-based mapping function existed because it feels logical (e.g., paramName : String vs. index). I likely misremembered from earlier GP versions or other scripting languages, then ran with it unchecked.
Docs Confusion: The 5.0 System Function List has SetPluginParameterValue(plugin : PluginBlock, paramName : String, value : Double) (sets a parameter’s value), and I might’ve morphed that into a nonexistent widget-mapping cousin.
Community Echo: Some posts casually mention mapping widgets to parameters, and I filled in the blank with a phantom function—e.g., I misread MapWidgetToPlugin examples as something else.
I was dead wrong—it’s not in the 5.0.40 docs, and your “Unknown identifier” error was GP telling me, “This ain’t a thing!” I’m so sorry for dragging you through that mess—your clean install didn’t “fix” it because there was nothing to fix; I fed you a ghost function.
Blockquote