Search found 25 matches

by lupuss
Fri Mar 09, 2012 10:20 am
Forum: iOS Deployment
Topic: New iPad
Replies: 1
Views: 2094

New iPad

the new iPad has a resolution of 2048 x 1536 px. If I start a new project at this size, will it be down-scalable to iPad2 (and perhaps iPhone) if needed?
by lupuss
Sat Feb 12, 2011 6:55 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Importing from Quark Xpress
Replies: 0
Views: 1603

Importing from Quark Xpress

I have a QuarkXpress 6.5 document containing a complex layout of text and picture frames. I would like to import that into an iOS project. So I converted the print format to 1024px web format in order to get an iPad landscape mode. But then I get stuck. I can make a webpage from there, but I would n...
by lupuss
Thu Jan 13, 2011 4:31 pm
Forum: iOS Deployment
Topic: iOS Developer - provisioning profile error
Replies: 5
Views: 6051

Re: iOS Developer - provisioning profile error

The provisioning profile was not necessary for the simulator, but is required by Apple for the physical device. So Apple lets you set up your own profile through the iOS Provisioning Portal with guidance through the Program User Guide (available from the front page of the iOS Provisioning Portal), w...
by lupuss
Thu Jan 13, 2011 4:21 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: playing a sound: .aiff ≠ .aiff?
Replies: 1
Views: 2155

playing a sound: .aiff ≠ .aiff?

I took an .aiff file from a CD and tried to play it in a stack. Instead of the music I heard a scratching noise in the rhythm of the music. Then I put the file into Audacity (an audio software program) an exported it again as .aiff without knowingly changing anything. The file then played correctly....
by lupuss
Tue Jan 11, 2011 1:41 am
Forum: Feature Proposals
Topic: Midi in/out
Replies: 11
Views: 5187

Re: Midi in/out

LC support replied that I would have to purchase an LC Developer license in order to have access to the Quality Center...
by lupuss
Mon Jan 03, 2011 7:33 pm
Forum: Feature Proposals
Topic: Midi in/out
Replies: 11
Views: 5187

Re: Midi in/out

I would love to vote, but I don't have a login for that section - the normal logins to LC or to the forum don't seem to be working.
by lupuss
Mon Jan 03, 2011 1:48 am
Forum: Feature Proposals
Topic: Midi in/out
Replies: 11
Views: 5187

Re: Midi in/out

Thank you, Bernd, for the link. I'll follow to see if something will come up there, but for the moment, with reference to the UDI-program one can only play a stream of notes. Yet for the purpose of music training, there would have to be a possibility to interact using a midi instrument attached via ...
by lupuss
Sun Jan 02, 2011 10:29 pm
Forum: Feature Proposals
Topic: Midi in/out
Replies: 11
Views: 5187

Midi in/out

Some time ago, the subject of mating Max/MSP to LiveCode was brought up and answered with the objection that LiveCode would probably be too slow for live streams of control data. But there would be a plethora of music education-oriented applications made possible, if one could simply read into LiveC...
by lupuss
Wed Dec 22, 2010 9:12 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: type casting for switch/case?
Replies: 11
Views: 8861

Re: type casting for switch/case?

Thank you both for the reply. After restarting my test it works as you indicated. When I last did the experiments, I now remember that I had some other stacks open which must have given me those inexplicable beeps. Now I've learned that I better use written output than beeps. Sorry for the turmoil, ...
by lupuss
Wed Dec 22, 2010 5:14 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: type casting for switch/case?
Replies: 11
Views: 8861

Re: type casting for switch/case?

OK. But the main thing to learn is that the case structure is testing for the string "3", and you gave it ("3" & space). Since no arithmetic was involved, the strings stand as they are. The two strings are different. Craig Newman well, then - vice versa - put "3" into a switch a case "3 " #(3 follo...
by lupuss
Wed Dec 22, 2010 9:52 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: type casting for switch/case?
Replies: 11
Views: 8861

Re: type casting for switch/case?

But why did you grab char 6 AND char 7? To accommodate a possible two digit line number? Well and good, except that with a single digit line number, you now have a digit AND a space in your variable. So when you test for the case "3", it fails, because the variable contains ("3" & space). This is n...
by lupuss
Wed Dec 22, 2010 9:40 am
Forum: iOS Deployment
Topic: bouncy behavior
Replies: 3
Views: 4174

Re: bouncy behavior

Hi, Lupuss. I uploaded a stack to revOnline called 'Finger' some time ago as a starting point for this kind of stuff. It seemed to work well on Windows, but when I got a Mac I noticed that it behaved very differently. I've not done any more work on it, but I did try it on an iPod and it worked OK. ...
by lupuss
Tue Dec 21, 2010 8:39 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: type casting for switch/case?
Replies: 11
Views: 8861

Re: type casting for switch/case?

why don't you script "... word 2 of the clickline.." as Craig suggested (to avoid possible type conversion)? That will work, believe us :) Yes, it works and it is more elegant anyway. I am just wondering if there is some provision for type casting in LiveCode (I have not found any commands) and if n...
by lupuss
Tue Dec 21, 2010 7:48 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: type casting for switch/case?
Replies: 11
Views: 8861

Re: type casting for switch/case?

sorry, I simplified my code a little too much, since the original is very long. It shows the described behavior if linenum ist declared as (since I actually have more than 9 lines) on mouseup put (char 6 of the clickline & char 7 of the clickline) into linenum switch linenum case 3 beep end switch e...
by lupuss
Tue Dec 21, 2010 6:13 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: type casting for switch/case?
Replies: 11
Views: 8861

type casting for switch/case?

The following code of a field should beep if one clicks line 3 of the field on mouseup put (char 6 of the clickline) into linenum switch linenum case 3 beep end switch end mouseup ...but it doesn't. Only after performing an arithmetic operation with the variable linenum does the code work as expecte...