I'm using the iphoneUseDeviceResolution true, true command in my apps.
Graphics are shown excellent, look and feel is fine.
However, visual effects are horrible.
If I prefer not to use iphoneUseDeviceResolution true, true command,
everything is smooth and works as expected, nothing's wrong.
Except

It's not crisp anymore, rather blurry and grainy.
Because of, you know, interpreting and interpolating 1 point as 2 px and blah blah...
It's like setting the screen resolution of a 1920*1200 monitor to 800*600

Well, below are some of issues on retina.
But beyond them,
all of my apps which use the above command crash constantly whenever a visual effect is to begin.
So, it crashes and crashes and crashes and...
I say "¡Hola, it didn't crash

but then again, one of the following issues

Please reply and comment and help

* Hiding a group and showing another one in the same card {with visual effect of course},
the effect occur only top 1/4th of the screen. I guess it thinks that it's operating in a non-retina display.
The rest of the screen, i.e 3/4th of it, keep the old group, which should have been hidden.
Voila, a scrambled screen

Code: Select all
lock screen for visual effect
hide group 1
hide group 2
show group 3
unlock screen with visual effect push left fast

Code: Select all
visual effect push right
go to card 2
for an image slide view, it's slow and chunky;
and most of the time only a portion of image change.
As a result, a weird mixture of two different images is shown.
Well, again, voila, a much more scrambled screen


Code: Select all
on userDidSwipeOnSlider
lock screen for visual effect
put gImageIndex into i
add 1 to i
set the filename of image "slider" to gFolderOfImages & slash & i & ".png"
put i into gImageIndex
unlock screen with visual effect dissolve fast
end userDidSwipeOnSlider
I use iPhone Scroller Control a lot.
For example,
there is a Latest News section on my homepage.
It's appr. 200px*300px; and user should be able to scroll it up & down.
Except, they cannot!
It's either too slow and jumpy or it doesn't work at all.
One can see the indicator going up & down but the content keep same.
Code: Select all
on scrollerDidScroll hOffset, vOffset
set the vScroll of group "latestNews" to vOffset
end scrollerDidScroll hOffset, vOffset
Any help, idea, comment, guess, anything much appreciated

Thanks....