I have 3 scenes setup in a ctc for 1 room and need to find a way to cycle or 'dim' my way through them. The reason i cant just dim the scene is due to insistance of the owner to have non dimmable led groups in the room. Also want to be able to have 1 button do it all, on, off and cycle ( hoping anyway) Now each of teh 3 scenes light on, lights mid and lights low work - but i havent been able to get any logic to run through them all. I found a thread about cycling scenes and that did not work, ive tried using the logic wizard and while its all compiled well, it does not work. Using a DLT set to dimmer i can turn the lights on and off but if i try to dim the scenes the lights flicker at the change point, and the slider on teh DLT will not slide up or down, just seems to get stuck at the limit of the scene. Copied this from the other thread on here and modified but i could not make it work [I]{once GetLightingState("B2 lights") then begin if SceneIsSet("Bed 2 Lights On Mid") then SetScene("Bed 2 Lights On") else if SceneIsSet("Bed 2 Lights On Low") then SetScene("Bed 2 Lights On Mid") else if SceneIsSet("Bed 2 Lights Off") then SetScene("Bed 2 Lights On Low") else if SceneIsSet("Bed 2 Lights On") then SetScene("Bed 2 Lights On Mid"); end;}[/I] What i have also tried so far ( i have edited out a little bit to see of that fixed it ) - also no deal. Also sorry for it not being in a box like others - i havent worked that one out yet. [I]{dim up and down for light scenes} once (GetLightingLevel("B2 Lights") > 67%){ and (GetLightingLevel("B2 Lights") <= 100%)}then begin SetScene("Bed 2 Lights On"); end; once (GetLightingLevel("B2 Lights") >= 37%)and (GetLightingLevel("B2 Lights") <= 66%)then begin SetScene("Bed 2 Lights On Mid"); end; once{ (GetLightingLevel("B2 Lights") >= 1%)and} (GetLightingLevel("B2 Lights") < 36%)then begin SetScene("Bed 2 Lights On Low"); end;[/I] Anyone see what ive missed?