Free Developer Support

@idiot.dw,

I agree with dgaedcke. Corona doesn’t give you access to low level graphics adjustments. The only way to do it as you’re asking now is to do it the way dgaedcke says it. [import]uid: 49520 topic_id: 20965 reply_id: 104702[/import]

@ dgaedcke,

I cleaned up the code and ut it on github for everyone to download. https://github.com/jtcreative/Corona-SDK---Facebook-List-Sorter-. I ask that anyone who does add follow these twitter handles:

@jamesdagame
@OPStudios

On to the tutorial votes:
I see that three tutorials ideas so far:

  1. In-app purchasing tutorial
  2. Posting your high score to facebook
  3. Ad tutorial
    Let’s put this to a vote here. Which one would you like to see being done in a tutorial. This will go on for a week from this post before we come to a decision so let your vote be heard! [import]uid: 49520 topic_id: 20965 reply_id: 106916[/import]

I will follow you (the LEAST i and others can do!)

+1 for “In-app purchasing tutorial”

Mo
(LairdGames) [import]uid: 100814 topic_id: 20965 reply_id: 106924[/import]

Maybe another question for you guys. I am new subscriber and I did not really follow the all daily build thing before. Now I can see that there is a stable build 704b (includes the ipad retina I believe) and there all these daily builds after that. My question is: Which build would you recommend for the following conditions for my upcoming app:

1- Heavy use of graphics which cannot run on ipod 2 gen (cannot get constant 30 fps)

2- Want to use game center eventually (first upgrade after release)

3- using widget library (scroll view, buttons…)

My first thought is to limit my app to os 4.3+ so old device like ipod 2 gen will not be included. My app works fine of iphone 4 (4.2.7) and ipad 2 (4.3 and 5.0) Right now I am using build 790 without issue (other than i need to upgrade my iphone to at least 4.3 it seems with build 790)

The problem is that I picked 790 basically by accident. Is that a good build or should try a new build?

In any event thank you so much for being so helpful. I and many others here I am sure appreciate it very much!

Mo [import]uid: 100814 topic_id: 20965 reply_id: 106927[/import]

YET, another question!: Is it possible to upgrade an iphone 4 from 4.2.7 to 4.3 OR I can only upgrade my device to 5.1 or whatever the latest OS for iphone 4 is?

I usually avoid upgrading all my devices at the same time so I can use them as a test devices but I am not if I am forced to upgrade to the latest and greatest!

Thanks.

Mo [import]uid: 100814 topic_id: 20965 reply_id: 106930[/import]

@ LairdGames,

On the first question, I think you can just build using the latest SDK. The latest SDK should be using the newest iOS installment requirements and the latest installments don’t support 2nd gen devices ( Excluding the iPad gens).

On the second question, you can use itunes to upgrade your iphone if you have that version of itunes installed and restart the os on the phone from there, but it would be hard to do because apple is constantly upgrading their software to prevent downgrading. [import]uid: 49520 topic_id: 20965 reply_id: 106935[/import]

@James. Thank you Sir! Exactly what I wanted to know.

Mo [import]uid: 100814 topic_id: 20965 reply_id: 106942[/import]

My pleasure [import]uid: 49520 topic_id: 20965 reply_id: 106943[/import]

Please be advised that if you use the latest you will NOT pass submission on the Nook Color. Nook Tablet WILL pass submission. This is a known issue in Corona.

I realize you are only concerned with the iOS devices right now, but other people might read the above post and think they can safely use the latest.

More info on the issues here:

http://ramblingprogrammer.com/ [import]uid: 16734 topic_id: 20965 reply_id: 106944[/import]

Absolutely a great info Ken. My plan is to release on Android later so yes it is very useful to know. Thank you.

Mo [import]uid: 100814 topic_id: 20965 reply_id: 106960[/import]

+1 for “In-app purchasing tutorial”, including a consumable example. Not sure how “game tokens” are handled. I assume they are non transferable and would not be restored with a restore button if the app is deleted from the device.

Some info on the receipt would be great also. Where/how to store and possibly how to use it to verify the purchase was actually made and not pirated?

This would be much appreciated.

Nail [import]uid: 106779 topic_id: 20965 reply_id: 106979[/import]

Hi James & Ken ,

When I try this code :

local bg , Map --foreword declaration bg = display.newRect ( 0 , 0 , display.contentWidth , display.contentHeight) Map = native.newMapView( 0, 0, display.contentWidth, display.contentHeight\*0.66) Map.isZoomEnabled = true Map.isScrollEnabled = true Map.isLocationUpdating = true Map:setCenter( 26.3259555, 50.136312, true )

I get this error :

Warning : Map views are not supported in the simulator . Please build for device . Runtime error : lua:4 attempt to index upvalue 'Map' (a nil value)

and when I try to remove Map from foreword declaration I get this :
I get this error :

Warning : Map views are not supported in the simulator . Please build for device . Runtime error : lua:4 attempt to index global 'Map' (a nil value)

I know that map views are not supported by simulator and I didn’t build b\c I don’t have a device now .
But what is the wrong with my code in line 4 ? [import]uid: 95767 topic_id: 20965 reply_id: 108951[/import]

@iAZZoZiTTi,

The problem is that the call to native.newMapView is returning nil.

That means you are using a nil value to “try” and access the properties.

MapView is also not supported on Android. So the ONLY platform this will work on is iOS based devices.

You should put the following around your “map” functionality:

[lua]if ( system.getInfo( “environment” ) == “simulator” ) then
print( “Map code not supported” )
else
– put all your mapview code here.
end[/lua]

[import]uid: 16734 topic_id: 20965 reply_id: 108964[/import]

Thank you Ken [import]uid: 95767 topic_id: 20965 reply_id: 109132[/import]

Dear Ken ,

I’m using storyboard and I tried to implement your pagecurl module in app with a button on top of the pages allow the user to go to another scene , but I couldn’t figured it out .
All the ways I use , make the button dosen’t work or doesn’t appear on top of the pages !!

second thing , in there any way to be used to remove the pagecurl when exit or destroy the scene ??

thanks [import]uid: 95767 topic_id: 20965 reply_id: 109527[/import]

Regarding the tutorial decision, I’m making a tutorial for in-app purchasing. I will keep everyone updated on the progress and let you know when it’s ready. [import]uid: 49520 topic_id: 20965 reply_id: 109571[/import]

wise decision James :slight_smile: [import]uid: 95767 topic_id: 20965 reply_id: 109597[/import]

><
><
><
><

Knucks! [import]uid: 106779 topic_id: 20965 reply_id: 109620[/import]

Omg, I made the tutorial and forgot to post it on this thread. Here is the video link. So sorry for not posting it way sooner.

http://www.youtube.com/watch?v=CnXso6Wm67s
Let me know what you think. [import]uid: 49520 topic_id: 20965 reply_id: 117560[/import]

James:

I am having problems uploading IOS apps to ITunes. The apps build on my Mac-Mini but I don’t know how to provision them for testing on my IPAD Retina. Application loader does not allow me to select the file preventing an upload to ITunes. Any help would be appreciated.

Thanks in advance.

Ed
[import]uid: 139281 topic_id: 20965 reply_id: 117575[/import]