Reply to thread

... so I may be looking at something like this if the aMPed screensize is HD (1920x1080) from the SkinSettings.xml then the posY=1500, if not then posY=1000


<posY>#(iif(eq(#amped.screensize,"HD"),1500,1000))</posY>


... or the texture height of a control if HD then height=1500 else height=1000:


<height>#(iif(eq(#amped.screensize,"HD"),1500,1000))</height>


... or in a zoom animation if HD then center=1882,1097 else center=1255,730:


<center>#(iif(eq(#amped.screensize,"HD"),1882,1255)),#(iif(eq(#amped.screensize,"HD"),1097,730))</center>


yes? no?


Top Bottom