...= Stage.width/100
yPercentile = Stage.height/100
So for example, to reference 75% of the stage, you can just use something like this.
xPercentile*75
Doing the same thing with no variables will be done like this:
(Stage.width/100)*75
Anyways, that should do it for you, but you will have...