Page 1 of 2

Developing for big iPad on small laptop

Posted: Tue Aug 21, 2012 4:53 pm
by allengwinn
We are trying to figure out how to do component layout on a card for a Retina iPad (2048x1536) using 1024x768 or 1080p laptops as a development platform. Has anyone developed a good way to see the card you're working on developing? Seems like there should be an easy way to "zoom" the view but we can't find it.

Re: Developing for big iPad on small laptop

Posted: Wed Aug 22, 2012 12:39 pm
by Klaus
Hi Allen,

well, this is our problem unfortuntaly :cry:

The only trick I can think of is to group EVERYTHING on your cards, add a scrollbar to that group
and adjust the stack size so you can access otherwise "hidden" objects.

EDIT!
Another cool idea:
1. Create a little helperstack (palette) with only a scrollbar on it that lets you change the Y position of the stack! Know what I mean?
2. Set its startvalue to -512, endvalue to +512 or whatever suits your needs.
3. script like this (pseudocode)

Code: Select all

## Will center the stack on the screen but changes its Y axis
## Put whatever you need into the tX
on scrollbardrag tValue
  put item 1 of the screenloc into tX
  put item 2 of the screenloc into tNewY
  add tValue to tNewY
  set the loc of stack "the BIIIIGGGG one" to tX,tNewY
end scrollbardrag
This way you can also access all objects on the card without changing the stack height! :D

Best

Klaus

Re: Developing for big iPad on small laptop

Posted: Wed Aug 22, 2012 1:06 pm
by Dixie
Hi...

Maybe Klaus means something like this..
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...

It might help

Dixie

Re: Developing for big iPad on small laptop

Posted: Wed Aug 22, 2012 1:22 pm
by Klaus
Dixie wrote:Maybe Klaus means something like this..
Yes, maybe... :D

Re: Developing for big iPad on small laptop

Posted: Wed Aug 22, 2012 3:02 pm
by endernafi
left & right implemented...
http://cloud.keehuna.com/0Z0D3r2b1r0R

Thanks to Klaus & Dixie...


Regards,

~ Ender Nafi

Re: Developing for big iPad on small laptop

Posted: Wed Aug 22, 2012 7:42 pm
by allengwinn
Right. Here's my dilemma. I work for a University and am putting together course materials for exec types (CIO, CFO, VP's) who are trying to place app development in the enterprise. The majority are energy and large healthcare providers. The course objective not to teach them to program, but to steer them toward a reasonable management/costing strategy. The first two days, however, I want to lead them through developing a simple app for the iPads we're going to be giving them :) This is the best way I know to show them that things which seem simple, on the surface, aren't necessarily simple--and illustrate what they are getting into.

My plan, currently, is to spend part of the first day prototyping screens using Blueprint (great app, by the way). Then we're going to spend the balance of the time writing some rather trivial code in Corona and getting it on the iPad.

The thing I like about Livecode is that we might be able to incubate thinking toward updating/managing desktop experiences along with mobile. But this issue is a show-stopper for me. I'm disappointed this issue has been allowed to remain unaddressed for so long by Runrev.

Re: Developing for big iPad on small laptop

Posted: Wed Aug 22, 2012 7:47 pm
by Dixie
What issue ?

Dixie

Re: Developing for big iPad on small laptop

Posted: Wed Aug 22, 2012 8:30 pm
by allengwinn
This is a screenshot of my iMac (1920x1080) when we have a 1536x2048 card up. The only way to place gadgets on the card is to manually enter location values in order to see the whole card unless there's something I'm missing.

Re: Developing for big iPad on small laptop

Posted: Wed Aug 22, 2012 8:39 pm
by Dixie
Ok.. now I understand what you are talking about, apologies... I did not make the connection from your post that laying out objects on a card was the problem.. but perhaps even worse, I have no solution for you except perhaps to use the stack that was posted earlier so that you can shuffle you card around your Mac screen...

be well,

Dixie

Re: Developing for big iPad on small laptop

Posted: Wed Aug 22, 2012 8:51 pm
by allengwinn
Yeah, as I say, it's a killer issue for anyone realistically wanting to do development on the iPad. But since the cross-platform world seems to be trending Corona and Mono, that's likely what we should be putting in front of enterprises who are going to spend millions if not billions of dollars over the next few years on ... :) [you get the idea!]

Re: Developing for big iPad on small laptop

Posted: Tue Aug 28, 2012 9:00 pm
by programmerBUSLVMD
There are monitors that rotate offering both landscape and portrait modes. You might want to look into that as an external monitor option. Also some video drivers will let you specify landscape/portrait (they are assuming this kind of monitor I guess). With a laptop, and external keyboard and mouse, rotate the external monitor 90 degrees. Mountain lion on my MacBook pro has this software option under displays for my external monitor. Also some monitor wallmounts support this.

Re: Developing for big iPad on small laptop

Posted: Thu Aug 30, 2012 5:03 am
by paulsr
...but it would be even nicer if RunRev would implement a scaling option, like the one for the iOS simulator.

IMO, of course.

--paul

Re: Developing for big iPad on small laptop

Posted: Thu Aug 30, 2012 7:19 am
by snm
... or scrolling the content of window

Re: Developing for big iPad on small laptop

Posted: Thu Aug 30, 2012 11:54 am
by Klaus
... and universal peace 8)

Re: Developing for big iPad on small laptop

Posted: Mon Sep 03, 2012 10:39 am
by paulsr
endernafi wrote:left & right implemented...
http://cloud.keehuna.com/0Z0D3r2b1r0R

Thanks to Klaus & Dixie...


Regards,

~ Ender Nafi
Yes... thanks from me too. That's really helpful.

--paul