Search found 78 matches

by thinkitsimple
Mon Dec 19, 2016 8:39 pm
Forum: Announcement
Topic: PureBasic 5.51 is out
Replies: 20
Views: 12926

Re: PureBasic 5.51 is out

Just updated to 5.51 (x64) on macOS 10.12.2 and PureBasic crashes every time i close a project or the PureBasic IDE itself.

Is this a known bug or is it already reported?
by thinkitsimple
Thu Jan 14, 2016 12:46 pm
Forum: Coding Questions
Topic: Tutorial for using XML Dialog?
Replies: 11
Views: 3853

Tutorial for using XML Dialog?

Hi, i love the idea of separating code and UI using the XML based Dialog library. The PureBasic help explains the commands, but is there a tutorial for people like me who are used to code the UI in PureBasic directly? I would be nice, if someone who has already earned some experience in using the Di...
by thinkitsimple
Wed Dec 16, 2015 8:37 pm
Forum: Applications - Feedback and Discussion
Topic: plistTool for OS X
Replies: 40
Views: 55175

Re: plistTool for OS X

It must be itunesconnect. There are several posts on the internet regarding this issue:

e.g.: http://stackoverflow.com/questions/2637 ... es-connect
by thinkitsimple
Mon Dec 14, 2015 8:02 am
Forum: Applications - Feedback and Discussion
Topic: plistTool for OS X
Replies: 40
Views: 55175

Re: plistTool for OS X

Thanks for your help. I will try it with Icon.icns.

Another thing:

My App-Version still says 2.0.0, although i changed it to 2.0.3 or 2.0.4 in the plist.info.

Any ideas, why this is not updating?
by thinkitsimple
Sun Dec 13, 2015 9:41 pm
Forum: Applications - Feedback and Discussion
Topic: plistTool for OS X
Replies: 40
Views: 55175

Re: plistTool for OS X

Thats what my plist.info looks like: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDevelopmentRegion</key> <stri...
by thinkitsimple
Sun Dec 13, 2015 6:11 pm
Forum: Applications - Feedback and Discussion
Topic: plistTool for OS X
Replies: 40
Views: 55175

Re: plistTool for OS X

Hi, Apple only refers to the App Distribution Guidelines. I'm sure i made all like described there. Can you describe, what exactly your plist.file looks like and how you placed your app icon there and in your code? As i said, the compiled app runs fine, but after uploading to itunesconnect, the buil...
by thinkitsimple
Thu Dec 10, 2015 10:09 pm
Forum: Applications - Feedback and Discussion
Topic: plistTool for OS X
Replies: 40
Views: 55175

Re: plistTool for OS X

Hi again. I'm now trying to upload my first PureBasic app to itunesconnect using the Apple Applicationloader. All went fine, but there is no app icon displayed on my builds in itunesconnect. I have places the iconname.icns in the app/resources, and it is displayed when i start the app, but not after...
by thinkitsimple
Thu Dec 03, 2015 9:40 pm
Forum: Mac OSX
Topic: [5.40LTS] OpenFileRequester title missing
Replies: 16
Views: 6085

Re: [5.40LTS] OpenFileRequester title missing

Just to be sure that my bug is also noticed by Fred:

It is not just the OpenFileRequester, the PathRequester has the same problem.
by thinkitsimple
Thu Dec 03, 2015 5:51 pm
Forum: Mac OSX
Topic: [5.40LTS] OpenFileRequester title missing
Replies: 16
Views: 6085

Re: [5.40LTS] OpenFileRequester title missing

Next time i will post such things in the bug forum.

But before it is confirmed by another user, i thought it was a good place to post in the os x forum.
by thinkitsimple
Thu Dec 03, 2015 3:44 pm
Forum: Mac OSX
Topic: [5.40LTS] OpenFileRequester title missing
Replies: 16
Views: 6085

Re: [5.40LTS] OpenFileRequester title missing

Well, as William and i said, this happens on OS X 10.11.x
by thinkitsimple
Thu Dec 03, 2015 9:20 am
Forum: Mac OSX
Topic: [5.40LTS] OpenFileRequester title missing
Replies: 16
Views: 6085

Re: [5.40LTS] OpenFileRequester title missing

Thats what i posted already here, but i did not get an answer...

http://www.purebasic.fr/english/viewtop ... 19&t=63854
by thinkitsimple
Fri Nov 27, 2015 6:09 pm
Forum: Coding Questions
Topic: Calling URL with registered program
Replies: 1
Views: 615

Re: Calling URL with registered program

Ok, found this solution:

Code: Select all

RunProgram("open", "sip:01738126606@sipgate.de", "")
by thinkitsimple
Fri Nov 27, 2015 5:59 pm
Forum: Coding Questions
Topic: Calling URL with registered program
Replies: 1
Views: 615

Calling URL with registered program

Hi, i want ot call a URL, or some kind of: sip:01738126606@sipgate.de. After calling this, the app on my mac which is registered to handle the sip-protocol, does a phone call. In other languages i simple can realize this by calling the sip-url like a normal url and the voip-app on my system opens th...
by thinkitsimple
Wed Nov 25, 2015 9:17 am
Forum: Coding Questions
Topic: Switch multiple StringGadgets from ReadOnly to editable
Replies: 22
Views: 1788

Re: Switch multiple StringGadgets from ReadOnly to editable

When i use #PB_String_ReadOnly on Mac, the StringGadget will be readonly and the text stays the same color (back). Thats what i want. Is there a way to switch only the flag #PB_String_ReadOnly of a StringGadget? In other words: can i change a flag (#PB_String_ReadOnly) after the StringGadget is crea...
by thinkitsimple
Tue Nov 24, 2015 10:13 pm
Forum: Coding Questions
Topic: Switch multiple StringGadgets from ReadOnly to editable
Replies: 22
Views: 1788

Re: Switch multiple StringGadgets from ReadOnly to editable

As you can see in my signature, i use Mac OS X.

The only way i works correct, is to enable and disable each StringGadget. But then the StringGadget uses the default "greytext" for the disabled Gadgets which is not good to read.