Is there any version in the pipeline that will run itself on iOS or Android to allow live debugging of code between
if the environment is "mobile" then
-- blah
-- I want to debug this and step through logic that is not actually platform independent at the script level.
-- blah
end if
?
Search found 15 matches
- Tue Jul 28, 2015 7:58 pm
- Forum: Feature Proposals
- Topic: LiveCode Mobile
- Replies: 3
- Views: 2708
- Tue Jul 28, 2015 7:53 pm
- Forum: iOS Deployment
- Topic: clipboarddata object not supported
- Replies: 4
- Views: 3743
Re: clipboarddata object not supported
I have submitted a feature request for a "mobile text field" in the Objects/New Control fly out menu to allow these to be drawn on cards like other controls at the very least, and to be able to get and set the common properties using the prose form of the language. This is a bigger issue - but yes, ...
- Tue Jul 28, 2015 7:49 pm
- Forum: Feature Proposals
- Topic: Mobile Text Field
- Replies: 0
- Views: 1447
Mobile Text Field
In the fly-out menu from Object/New Control, I'd like to see "Mobile Text Field" as something that can be visually placed on a card and whose settings such as position, font, etc can be set from the property inspector. I wanted an app that could copy and paste like any other app with text fields tha...
- Fri Jul 24, 2015 1:56 am
- Forum: iOS Deployment
- Topic: clipboarddata object not supported
- Replies: 4
- Views: 3743
Re: clipboarddata object not supported
I was checking to see if there was a workaround or an upgrade by now. the post I saw that said it was not supported was from 2012 - that's a long time ago. What do Apple iOS products do? Is there another object that can get to whatever my iPad sees when I do copy and paste? Copy/Paste was one of the...
- Thu Jul 23, 2015 10:12 pm
- Forum: iOS Deployment
- Topic: clipboarddata object not supported
- Replies: 4
- Views: 3743
clipboarddata object not supported
I found an old thread that ended with someone saying that the clipboarddata object was not supported in iOS. (or Android) Is that still true? Is there another way? It seems to work in for OSX to set and retrieve the clipboarddata, text or rtf, but in iOS, it dies when touching the object ... put the...
- Tue Jul 21, 2015 7:50 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: bug in forum?
- Replies: 5
- Views: 3319
Re: bug in forum?
How do I post a screen shot?
Scrolled off the bottom of the browser was an option to "Attach a signature" that had been checked and not noticed before, so perhaps that's all it was - I am new to this forum and have not noticed all the possible options or behaviors.
Scrolled off the bottom of the browser was an option to "Attach a signature" that had been checked and not noticed before, so perhaps that's all it was - I am new to this forum and have not noticed all the possible options or behaviors.
- Mon Jul 20, 2015 7:32 pm
- Forum: Feature Proposals
- Topic: Edit and Continue
- Replies: 1
- Views: 1659
Re: Edit and Continue
In microsoft visual studio and in vba, it can stop and edit and re-run and move the execution point when the app is running and it is possible to write a significant amount of an app all when the app is running in debug mode - you can write an app in front of itself for quite a while. LC does not se...
- Mon Jul 20, 2015 7:29 pm
- Forum: Feature Proposals
- Topic: Edit and Continue
- Replies: 1
- Views: 1659
Edit and Continue
Is it possible for LiveCode to do edit and continue like Microsoft does?
- Mon Jul 20, 2015 7:27 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: bug in forum?
- Replies: 5
- Views: 3319
bug in forum?
I get the following error in red
"Your account does not have permission to post links or domain/page references."
when there are no links or domain references in the would be post. Is it possible for it to highlight and/remove things that offend it?
"Your account does not have permission to post links or domain/page references."
when there are no links or domain references in the would be post. Is it possible for it to highlight and/remove things that offend it?
- Mon Jul 20, 2015 7:07 pm
- Forum: Feature Proposals
- Topic: Fixing case when coding
- Replies: 4
- Views: 2716
Re: Fixing case when coding
I think Microsoft has done this correctly and the casing/autocomplete stuff is habit forming..
An option for this would be good..
An option for this would be good..
- Sat Jul 18, 2015 10:26 pm
- Forum: Feature Proposals
- Topic: Fixing case when coding
- Replies: 4
- Views: 2716
Re: Fixing case when coding
I know LiveCode doesnt care, but I do. I love how LC colorizes stuff, that's great. I am just used to Microsoft's habit of using case conventions and such and making them easy to keep for the same purpose. Things like CamelCase are very popular in Microsoft-land to look at because they are easier to...
- Sat Jul 18, 2015 6:24 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Best way to draw lines on a card
- Replies: 4
- Views: 4482
Re: Best way to draw lines on a card
What is the script way to do that? And once made, can these controls be moved around in script?
- Sat Jul 18, 2015 6:19 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Best way to draw lines on a card
- Replies: 4
- Views: 4482
Re: Best way to draw lines on a card
In Microsoft land, there is a "graphics" object that has Methods such as DrawRectangle and the like. A diamond to fit in a box in Microsoft looks like: Sub DrawDiamond(p As Graphics, c As String, X As Integer, Y As Integer, W As Integer, H As Integer) ' p is the Microsoft defined graphics object. Di...
- Sat Jul 18, 2015 5:53 pm
- Forum: Feature Proposals
- Topic: Fixing case when coding
- Replies: 4
- Views: 2716
Fixing case when coding
Would it be possible for LiveCode to have an option that would fix the case of keywords and local or global variables as you type? I have used Microsoft IDEs that do this for a long time and it is nice to be able to quickly see when a variable is misspelled after it stays all lower case after you ty...
- Sat Jul 18, 2015 5:50 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Best way to draw lines on a card
- Replies: 4
- Views: 4482
Best way to draw lines on a card
I want to draw a box by drawing points, and I found a web site that suggested something like the following (under the upper button): on mouseUp choose brush tool set the brush to 32 set the brushColor to brown set the dragSpeed to 0 drag from 250,0 to 500,250 -- cuts off part at the right drag from ...