Search found 18 matches

by sx-74
Sat Apr 14, 2012 6:08 pm
Forum: iOS Deployment
Topic: The application "xxxx" already exists on the device..
Replies: 1
Views: 1925

Re: The application "xxxx" already exists on the device..

Follow up.. I changed the name in the Internal App Id from com.yourcompany.yourapp to something generic and I was able to save it.
by sx-74
Sat Apr 14, 2012 5:38 pm
Forum: iOS Deployment
Topic: The application "xxxx" already exists on the device..
Replies: 1
Views: 1925

The application "xxxx" already exists on the device..

Hey all, I am sure this is a simple one.. but I can't find the answer. Made one app, saved it as standalone, distributed onto devices. Worked great. Made another app, saved it as a different name, saved as standalone.. go to add it to my iPhone in XCode and get: "The application "(the name of the FI...
by sx-74
Mon Feb 27, 2012 10:40 pm
Forum: iOS Deployment
Topic: Deploying Without App Store
Replies: 31
Views: 26132

Re: Deploying Without App Store

Mark,
Many props!
That post should be a sticky when it comes to those of us that want to share without going through the store.
Excellent directions and worked perfectly.

Thanks again

- Jay
by sx-74
Sat Feb 25, 2012 12:00 am
Forum: iOS Deployment
Topic: Deploying Without App Store
Replies: 31
Views: 26132

Re: Deploying Without App Store

Greetings all. I have created a livecode project (livecode 5.02) and I have played it on the ios simulator. I also have the Apple Development license so I was able to make a provisioning profile, and connect my ipad as well as iphone to the Mac to "download" the app to the device. That process works...
by sx-74
Fri Feb 24, 2012 10:50 pm
Forum: iOS Deployment
Topic: depolyment to ipad & iphone?
Replies: 5
Views: 4126

Re: depolyment to ipad & iphone?

Thanks all.. the "for iphone only" was the ticket.. it is now centered in the screen when shown on an iPad.
by sx-74
Mon Dec 19, 2011 3:54 pm
Forum: iOS Deployment
Topic: ios4 - movie files on new card
Replies: 3
Views: 3039

Re: ios4 - movie files on new card

Stripped down the movie files to 3 megs and now they play as expected.
I have a feeling the file size was part of the issue.
by sx-74
Mon Dec 19, 2011 3:53 pm
Forum: iOS Deployment
Topic: depolyment to ipad & iphone?
Replies: 5
Views: 4126

Re: depolyment to ipad & iphone?

Hi Jay, Just make the app for iPhone only and it will appear centered on your iPad. If you make it for iPad, then LiveCode will draw a big window and place your app in the top-right. Yeah, this is what I expected, that it would center. I did make it for the iphone, and when loaded on the ipad, it d...
by sx-74
Fri Dec 16, 2011 11:01 pm
Forum: iOS Deployment
Topic: depolyment to ipad & iphone?
Replies: 5
Views: 4126

depolyment to ipad & iphone?

Greetings all, Couple of questions. First background. App was developed in 4.6.4 + Mobgui .27 OSX 10.6.8 X code for IOS 4. Deployed this to my 4.2 iphone, ran great .. no issues. Tried to deploy this to ipad 2, running iOS 5. xCodes says "nope, need to upgrade your iOS SDK to 5". So... I do that. Li...
by sx-74
Thu Dec 15, 2011 9:03 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: sending email with contents of fields.. and checkboxes?
Replies: 1
Views: 2019

Re: sending email with contents of fields.. and checkboxes?

This looks like a rather kludgy work around.. but what about..

Code: Select all

on mouseUp
   if the hilite of button "check1" then
      put "apple" into field "check1a"
end if
end mouseUp
Which I could then tie into the script that sends the email from above..

Thoughts?
by sx-74
Thu Dec 15, 2011 1:04 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: sending email with contents of fields.. and checkboxes?
Replies: 1
Views: 2019

sending email with contents of fields.. and checkboxes?

Hey all, I have used this script on a button for my iOS card. revMail "here@there.com",,"Instructor Contact Information", field "your_name" & cr & "Semester Teaching" & cr & field "semester_teaching" & cr & "The best way to reach me:" & field "how_to_reach" & cr & "Class Information:" & cr & field "...
by sx-74
Wed Dec 14, 2011 7:59 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: same fields two forms, enter data once?
Replies: 2
Views: 2810

Re: same fields two forms, enter data once?

THANK YOU so much!
Very excited to try this.

- Jay

(15 minutes later)
Awesome! This works perfectly!
So excited.
by sx-74
Tue Dec 13, 2011 8:21 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: same fields two forms, enter data once?
Replies: 2
Views: 2810

same fields two forms, enter data once?

Hey all, I am making a contact form as well as an equipment rental form for an IOS app. Both forms use the same information for some of the fields (name, email, phone) but are on different cards. Can one field populate the other field, even on different cards? Ex. "name" on card 1 populates "name" o...
by sx-74
Tue Dec 13, 2011 8:16 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: RunRev player plug in fails to work.
Replies: 1
Views: 1863

Re: RunRev player plug in fails to work.

which version of the MobGui are you using?
I am running into the same issue on OSX. version .27
by sx-74
Tue Dec 13, 2011 12:58 am
Forum: iOS Deployment
Topic: IOS layout / process question.. how would you do it?
Replies: 6
Views: 4842

Re: IOS layout / process question.. how would you do it?

OK, I have made a card with several fields in it so that when completed, it stuffs all of the data into the body of an email. I think I have that all figured out.. (very crude.. if there are better solutions I am all ears.. ) on mouseRelease revMail "demoemail@abc.xyz",,"Contact Information", field ...
by sx-74
Sat Dec 10, 2011 12:05 am
Forum: iOS Deployment
Topic: IOS layout / process question.. how would you do it?
Replies: 6
Views: 4842

Re: IOS layout / process question.. how would you do it?

I have not really had much experience, thus far, with actually coding apps, but I do plenty of weighing pro's and con's and troubleshooting ideas. If you build your form within the app then you have some options available. If the device does not have connectivity, you could create your form in such...