Hi Erik,
Windows 10 doesn't require any tweaking. However, if you have a slightly older version of Animation Engine and a recent version of LiveCode, you may need to update AE or use an older version of LC.
Kind regards,
Mark
Search found 5099 matches
- Sun Jun 26, 2016 12:00 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: animationEngine.livecode with Windows 10
- Replies: 2
- Views: 1179
- Sat Apr 16, 2016 8:25 pm
- Forum: Internet
- Topic: Facebook integration
- Replies: 8
- Views: 4323
Re: Facebook integration
- Do I have to register the app on Facebook and get an appID. Yes - Does the app then need to be submitted to Facebook for approval? Yes, but usually this isn't a big deal if you're just sharing something simple like a picture or a link. - Should I register the app as the developer or should that b...
- Sat Apr 16, 2016 8:18 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Text Field Problem
- Replies: 1
- Views: 911
Re: Text Field Problem
Jamie,
Can you be more specific? If I click on a text field in an otherwise empty stack, nothing happens. Do you have any scripts? Can you post a picture that shows the problem?
Kind regards,
Mark
Can you be more specific? If I click on a text field in an otherwise empty stack, nothing happens. Do you have any scripts? Can you post a picture that shows the problem?
Kind regards,
Mark
- Sat Apr 09, 2016 10:36 pm
- Forum: Bug Triage
- Topic: LC-problems on Windows
- Replies: 7
- Views: 3588
Re: LC-problems on Windows
AxWald,
I have a plug-in with the following handler in the front script:
That kills it for every LiveCode version without a need to change the dictionary.
Kind regards,
Mark
I have a plug-in with the following handler in the front script:
Code: Select all
on checkForAltKey
end checkForAltKey
Kind regards,
Mark
- Sat Apr 09, 2016 10:32 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Don't "do" it
- Replies: 4
- Views: 1049
Re: Don't "do" it
Craig,
I don't see proof that it is machine dependent. At least not yet.
Mark
I don't see proof that it is machine dependent. At least not yet.
Mark
- Sat Apr 09, 2016 10:23 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Count # of Unique Two-Word Phrases (Strings/Items)
- Replies: 23
- Views: 4646
Re: Count # of Unique Two-Word Phrases (Strings/Items)
hh,
Why do you use 3 repeat loops and even a nested repeat loop? That seems superfluous to me.
Mark
Why do you use 3 repeat loops and even a nested repeat loop? That seems superfluous to me.
Mark
- Sat Apr 09, 2016 9:02 am
- Forum: Windows
- Topic: How can I do update of my app?
- Replies: 3
- Views: 2449
Re: How can I do update of my app?
Hi Razvan, A good way is to use installer maker to build an installer containing the files that needs to be updated. Use http to download the file to the user's computer, not ftp. Use the launch command to start the installer and then quit your app. Have the installer open the app when it finishes. ...
- Sat Apr 09, 2016 8:56 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Repeat Help
- Replies: 1
- Views: 559
Re: Repeat Help
Can you post your XML file here?
Mark
Mark
- Sat Apr 09, 2016 8:54 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Don't "do" it
- Replies: 4
- Views: 1049
Re: Don't "do" it
Hi Craig,
Perhaps the clickChunk is flushed before the line gets executed. Your syntax in line A works fine on my Windows 10 machine. I expect there is something odd going on on the machines where it doesn't work for you.
Mark
Perhaps the clickChunk is flushed before the line gets executed. Your syntax in line A works fine on my Windows 10 machine. I expect there is something odd going on on the machines where it doesn't work for you.
Mark
- Sat Apr 09, 2016 8:47 am
- Forum: Android Deployment
- Topic: Eficient way to compress video file without using third part
- Replies: 1
- Views: 947
Re: Eficient way to compress video file without using third
The efficient way is to use a third-party library.
If you have QuickTime available, you can useto choose the most compact format, mov or avi.
Mark
If you have QuickTime available, you can use
Code: Select all
revInitializeVideoGrabber
Mark
- Sat Apr 09, 2016 8:41 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Count # of Unique Two-Word Phrases (Strings/Items)
- Replies: 23
- Views: 4646
Re: Count # of Unique Two-Word Phrases (Strings/Items)
I made a text analysis tool, a long time ago. Here's how I count the words: repeat for each word myWord in myText if myArray[myWord] is empty then put 1 into myArray[myWord] else add 1 to myArray[myWord] end if end repeat Before starting the count, you might want to remove all non-alphanumeric chara...
- Sat Apr 09, 2016 8:37 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: detecting if a switch is connected
- Replies: 4
- Views: 2058
Re: detecting if a switch is connected
Perhaps you should give a little more information, e.g. about how you communicate with the switch.
Mark
Mark
- Sat Dec 26, 2015 1:18 pm
- Forum: Building Externals
- Topic: looking to display analog voltmeters in livecode
- Replies: 1
- Views: 2976
Re: looking to display analog voltmeters in livecode
Hi,
Do you mean something like this?
http://www3.economy-x-talk.com/file.php?node=gauge

Kind regards,
Mark
Do you mean something like this?
http://www3.economy-x-talk.com/file.php?node=gauge

Kind regards,
Mark
- Wed Dec 23, 2015 1:03 pm
- Forum: Talking LiveCode
- Topic: Licenses - Livecode Community
- Replies: 6
- Views: 2050
Re: Licenses - Livecode Community
Hi,
The license doesn't say that you need to add comments. It would probably clarify a lot if you just read the license once.
Please, don't cite the entire message you're replying to, if that message is the previous message.
Kind regards,
Mark
The license doesn't say that you need to add comments. It would probably clarify a lot if you just read the license once.
Please, don't cite the entire message you're replying to, if that message is the previous message.
Kind regards,
Mark
- Wed Dec 23, 2015 12:47 pm
- Forum: Talking LiveCode
- Topic: Licenses - Livecode Community
- Replies: 6
- Views: 2050
Re: Licenses - Livecode Community
Hi, No, it is not mandatory to share your code, but if you use the open-source (community) version of LiveCode, it is mandatory to offer your. That's a subtle but important difference. In many cases, people have no need for the source code. Companies who ask for an in-house solution and individuals ...