greenbogey New Member Joined Jul 30, 2011 Messages 29 Reaction score 0 Apr 20, 2012 #1 is it possible to check what cc is active?
Inrego New Member Joined Feb 7, 2010 Messages 2,765 Reaction score 71 Apr 20, 2012 #2 Code: RoutineManager.Current.Name;
greenbogey New Member Joined Jul 30, 2011 Messages 29 Reaction score 0 Apr 20, 2012 #3 Inrego said: Code: RoutineManager.Current.Name; Click to expand... how i use this? i want to check in PB if a specific custom class is active my example: PHP: <If Condition="RoutineManager.Current.Name == Singular;" IgnoreCanRun="True"> <CustomAction Code="Log (Color.Orange,"Examlpe..",Color.LightYellow,"");" /> </If> dont work
Inrego said: Code: RoutineManager.Current.Name; Click to expand... how i use this? i want to check in PB if a specific custom class is active my example: PHP: <If Condition="RoutineManager.Current.Name == Singular;" IgnoreCanRun="True"> <CustomAction Code="Log (Color.Orange,"Examlpe..",Color.LightYellow,"");" /> </If> dont work
Inrego New Member Joined Feb 7, 2010 Messages 2,765 Reaction score 71 Apr 20, 2012 #4 Code: RoutineManager.Current.Name.Contains("Singular") then
greenbogey New Member Joined Jul 30, 2011 Messages 29 Reaction score 0 Apr 21, 2012 #5 this works! thank you