Custom control not showing parent properties

Override the methods that you can’t access in your Controls, then you can access them.

i obviously have the access via code, the problem is i can’t access them via the editor property window…

do this in your class that extends your main control

@Override
public void setParentClassProperty(String blah){
   super.setParentClassProperty(blah);
}

@Override
public String getParentClassProperty(){
  return super.getParentClassProperty();
}

where ParentClassProperty is the exact same name as your parent classes methods.

Edit: You can auto-create these methods by pressing Ctrl-Space and selecting the method in the popup menu btw

Oh yeah, i didn’t understood…sorry.
But…it doesn’t work :stuck_out_tongue: