This is a reply to a problem posted in the
Chronflow thread:
Basically what I have is a button that switches between Chronflow and Bubbleguuum's Coverflow (which I call Bubbleflow). So anyways, I had this code here:
CODE
$ifequal($getpvar(coverflow),1,
$ifequal($getpvar(setlyr),6,$panel(BubbleFlow,Cover flow,$eval($get(switchx)+1),$eval($get(switchy)+1),$eval($get(switchw)-2),$eval($get(switchh)-2),),)
,
$panel(ChronflowPanel,Chronflow,$eval($get(switchx)+1),$eval($get(switchy)+1),$eval($get(switchw)-2),$eval($get(switchh)-2),)
)
It would switch between the two just fine, but when I switched to Chronflow, it would be overtop of everything else even when the pvar I set WASN'T fitting what I thought was correct.
I had to add some more code to it, and I ended up with this:
CODE
$ifequal($getpvar(coverflow),1,
$ifequal($getpvar(setlyr),6,$panel(BubbleFlow,Cover flow,$eval($get(switchx)+1),$eval($get(switchy)+1),$eval($get(switchw)-2),$eval($get(switchh)-2),),)
,
$ifequal($getpvar(setlyr),6,$panel(ChronflowPanel,Chronflow,$eval($get(switchx)+1),$eval($get(switchy)+1),$eval($get(switchw)-2),$eval($get(switchh)-2),),)
)
I don't know how useful that is to you, but thats what fixed my problem.