Developing for big iPad on small laptop

Getting into LiveCode for iOS? Ask your questions here.

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

maxs
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 421
Joined: Sat Jun 24, 2006 12:02 am
Contact:

Re: Developing for big iPad on small laptop

Post by maxs » Fri Dec 28, 2012 9:00 pm

Thanks for asking about using laptops to develop for Retina Screen.

Will the app I made for an Ipad 1 works an the new retina ipads? Do they automatically scale like they do with iphone apps? Do I need to make my old app into a scalable version?

endernafi
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 296
Joined: Wed May 02, 2012 12:23 pm
Contact:

Re: Developing for big iPad on small laptop

Post by endernafi » Fri Dec 28, 2012 9:22 pm

Hi Max,

If you don't include this code in your script:

Code: Select all

iphoneUseDeviceResolution true, true
then it will scale automatically to fill the screen.
But, your app will seem pixelated / blurred.
In order to achieve a crisp view on iPad Retina, you have to design for it specifically and use the above line of code.
You can use substacks for different resolutions or a special resize script.

Best,

~ Ender Nafi
~... together, we're smarter ...~
__________________________________________

macOS Sierra • LiveCode 7 & xCode 8

Simon
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 3901
Joined: Sat Mar 24, 2007 2:54 am

Re: Developing for big iPad on small laptop

Post by Simon » Fri Dec 28, 2012 10:23 pm

It took me an hour to find this link again so I'll post it here:
http://runtime-revolution.278305.n4.nab ... 52555.html
It's for Chipp Walters libAltMobileResizer re-sizing plugin and will allow you to design on a small screen for high density displays.
The entire thread should be read as there is plenty of debate about the right way to do this.

Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!

Dixie
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 1336
Joined: Sun Jul 12, 2009 10:53 am

Re: Developing for big iPad on small laptop

Post by Dixie » Fri Dec 28, 2012 10:25 pm

I don't think that the different substack idea is the way to go... but hey, that is only my opinion... I think it is better to write your own scaling and positioning routines...

be well

Dixie

endernafi
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 296
Joined: Wed May 02, 2012 12:23 pm
Contact:

Re: Developing for big iPad on small laptop

Post by endernafi » Sat Dec 29, 2012 9:03 am

I've used both methods in the past.
My choice was also resizing script but recently I realized that it needs too much horsepower.
On low-end Androids and on iPods, my apps tend to crash because of scaling/positioning routine.
I was suspecting that my script isn't tuned well,
but that's before trying Chipp Walters' lib {thanks for the link, Simon}.
My code isn't that different from his, even simpler because I didn't aim public, so lesser control and checking code.

I'm re-thinking to use substacks method.
It's bulky and needs too much copy-paste on the development stage.
Yet, it doesn't need any cpu - ram power of the device.


Best,

~ Ender Nafi
~... together, we're smarter ...~
__________________________________________

macOS Sierra • LiveCode 7 & xCode 8

aliduri
Posts: 1
Joined: Wed Jun 26, 2013 8:37 am
Contact:

Re: Developing for big iPad on small laptop

Post by aliduri » Wed Jun 26, 2013 10:26 am

Or do you mean submit a ticket?
Rocks

keram
Posts: 340
Joined: Fri Nov 08, 2013 4:22 am

Re: Developing for big iPad on small laptop

Post by keram » Mon Feb 09, 2015 8:34 pm

Hi Dixie,
Thanks for your nice stack.
Dixie wrote: Open the attached Stack 'shuffleAbout'... Open another stack...click in the stack 'shuffleAbout', select the stack that you wish to move about the screen ( I have only accommodated up & down, but you could add left & right as well) click on the requisite button to move the stack upwards or downwards...
Dixie
I tried to use your stack and even added Move Right/Left and Scaling as well but the movement of the selected stack almost always gets jammed, stops after the first click. See my modified version here: http://forums.livecode.com/viewtopic.ph ... 15#p119486

Any idea how to correct the script?

keram
Using the latest stable version of LC Community 6.7.x on Win 7 Home Premium, 64bit

ekek
Posts: 51
Joined: Fri Sep 21, 2012 9:33 am

Re: Developing for big iPad on small laptop

Post by ekek » Wed Feb 11, 2015 12:33 am

Have you tried DUET DISPLAY App?

With this app you can connect an iPad Retina to your computer and instantly you have a retina screen in wich everything fits.

http://www.duetdisplay.com/

This is a very affordable solution, another one is to buy a 4K monitor

Regards!

Post Reply