I'm currently using the NSIS InstallOptions plugin to create some custom pages in my installer. When you set the location of controls you want to create, you have to specify the exact coordinates of where that control should be created. This is fine when your installer is truly static, but I'm making a move to internationalize the installer, and hence the locations and lengths of my strings and will vary depending on language.
Is there a way to set the location of strings / controls such that they are in reference to one another? I want to place string A in an exact set of coordinates, and then put string B after string A by essentially saying, "put string B after string A". Is this possible using either the InstallOptions of nsDialog plugins?