A little bit about the thing I'm working on first, then the issues.
I'm trying to make a phone app that has a list of leaders from around the country (since I'm with a youth group, it's handy for everyone to be able to contact everyone else!)
Coming from a VB background, I was able to make it months ago in VB, but most people in the youth group use macs, or have old computers (I'm just about the only one who has any sort of technical interest it seems

Anyway, I found out about LiveCode a few days ago, and it looks perfect for what I need, so decided to test it out. Unfortunately, I have a few issues
Firstly, I've read the article called "Displaying assets on differing screen resolutions" (can't make a link to it) about how to get things to show up on different sized screens etc, and got it working with their example. I then extended their example to tab menus, which worked perfectly fine.
Then I started using datagrids. I don't know if they just don't like me, or if they defy the laws of science, because that's where it started falling apart! I had this code:
set the width of group "FedLeaders" to the width of this stack
set the height of group "FedLeaders" to 0.8*the height of this stack-42
set the dgColumnWidth[1] of group "FedLeaders" to 0.27*the width of this stack
set the dgColumnWidth[2] of group "FedLeaders" to 0.325the width of this stack
set the dgColumnWidth[3] of group "FedLeaders" to 0.135*the width of this stack
set the dgColumnWidth[4] of group "FedLeaders" to 0.27*the width of this stack
set the loc of group "FedLeaders" to (the width of this stack/2),(the height of button "Tab2"/2+32)
Basically, what I want it to do is be as wide as the stack (which it's doing), but be located in the top 80% of the stack (the -42 I have in the second line is because I've got 2 tab menus that take up the top 21 pixels each, and if I just have 0.8*the height of this stack, the datagrid overlaps the tab menus



Another question I have
When I'm making it on computer, size 14 font works well. But when I put it on my phone, it's quite small. Is there any way to increase the font size/spacing (like the -42 I have in the code above) etc etc so that it looks nice on phones, tablets, computer etc

Thanks in advanced! Sorry if this is very basic, I just started and trying to get the hang of it
