Search found 94 matches
- Sat Nov 17, 2018 5:43 pm
- Forum: Feature Requests
- Topic: A darker Background editor ! Or more colors to the existing one.
- Replies: 83
- Views: 9513
Re: A darker Background editor ! Or more colors to the existing one.
Hi I would like LC just to operate the IDE in reverse colours. If you switch the colours to inverted on the Mac control panel, the IDE is lovely - except your software is inverted too. I would like a 'dark' mode (or inverted colours) for the IDE that did not invert the colours of my App. Thanks Matt
- Sat Nov 17, 2018 5:06 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Resetting IDE window
- Replies: 2
- Views: 227
Re: Resetting IDE window
Thanks Craig. It is so weird. It was just gone! No evidence of it left.
I decided to re-install. No luck
I reset all preferences back to default. That fixed it.
I decided to re-install. No luck
I reset all preferences back to default. That fixed it.
- Sat Nov 17, 2018 10:20 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Resetting IDE window
- Replies: 2
- Views: 227
Resetting IDE window
Hi All
My IDE script window has gone weird. I can still edit scripts but the bottom pane that normally shows variable, errors etc has just gone. I have just one massive code editor window.
Has anyone experienced this before and know how to get it back?
THanks
Matt
My IDE script window has gone weird. I can still edit scripts but the bottom pane that normally shows variable, errors etc has just gone. I have just one massive code editor window.
Has anyone experienced this before and know how to get it back?
THanks
Matt
- Fri Nov 02, 2018 11:51 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Moving an application to a web portal,
- Replies: 0
- Views: 448
Moving an application to a web portal,
HI all I have developed a couple of standalone apps that work quite well. They run on Windows, Mac and iOS no problem. It took me a number of years to go from terrible code into something that is maintainable, readable and reasonably well structured <Allegedly>. :D I need to move the concept into a ...
- Sun Oct 14, 2018 7:46 pm
- Forum: iOS Deployment
- Topic: Button highlite not switching icons on iOS
- Replies: 5
- Views: 427
Re: Button highlite not switching icons on iOS
Hi all Thanks for the comments. The thing I do not understand is that it worked for three years! (And still works on Windows and Mac)- it is only the iOS that has gone funny. I made some significant changes to other parts of the application (on the reporting engine) but nothing to this part of the G...
- Sun Oct 14, 2018 12:02 am
- Forum: iOS Deployment
- Topic: Remote debugger issue
- Replies: 6
- Views: 538
Re: Remote debugger issue
Hi I run VERY aggressive protection from the internet including additional firewalls, little nitch, DNS Crypt etc Is it that the communication is via the internet or LAN / WLAN (hinted at within your reply). I assumed it would connect via the lighting cable else how else would it know where to conne...
- Sat Oct 13, 2018 10:13 pm
- Forum: iOS Deployment
- Topic: Button highlite not switching icons on iOS
- Replies: 5
- Views: 427
Button highlite not switching icons on iOS
Hi For years now, I have been skinning my buttons but loading to images onto a page then referencing them within the button as 'Icon' and 'hilite icon'. I then switch between the two images by changing the hilite property depending on whether the button is pressed or not. This has worked well except...
- Sat Oct 13, 2018 8:52 pm
- Forum: iOS Deployment
- Topic: Remote debugger issue
- Replies: 6
- Views: 538
Re: Remote debugger issue
Thanks for the feedback. Duly noted about the inclusions. I was referring to the play icon in the TEST button. The documentation said it should turn green to indicate the debugger has been enabled. I placed a button on my card with a breakpoint in it and nothing happens when it is run on iOS. When r...
- Sat Oct 13, 2018 1:19 pm
- Forum: iOS Deployment
- Topic: Remote debugger issue
- Replies: 6
- Views: 538
Remote debugger issue
Hi I decided to try the remote debugger today. I added the inclusion and placed a strategic breakpoint to test and then deployed the app to iOS via the TEST button. The app deployed but the arrow colour did not change to green in the IDE as it should. The code stopped at the breakpoint but I had no ...
- Wed Oct 10, 2018 10:35 pm
- Forum: Windows
- Topic: Detecting popup keyboard on Windows 10
- Replies: 6
- Views: 607
Re: Detecting popup keyboard on Windows 10
Thanks I will try tying the openfield and 'effective workings screenrect' together as I have tried the openfield and closefield on their own. On there own it got a little weird in that it opened the field, the keyboard appeared, this caused the loss of focus on the field causing a closefield event. ...
- Mon Oct 08, 2018 10:17 pm
- Forum: Windows
- Topic: Detecting popup keyboard on Windows 10
- Replies: 6
- Views: 607
Detecting popup keyboard on Windows 10
Hi I have an app that works well on iOS that has code to detect when the popup keyboard is activated keyboardactivated and keyboarddeactivated I need to detect the same on a Windows 10 device when they are in tablet mode as the popup keyboard hides the bottom of the app.. The above mentioned command...
- Fri Sep 28, 2018 8:33 am
- Forum: iOS Deployment
- Topic: Damn pop up keyboard
- Replies: 12
- Views: 892
Re: Damn pop up keyboard
Hi Forthword I have to say I am not following the conversation. I dragged a text field from the toolbar, dropped it where I wanted it and there it is. I don't think I know what you are referring to as OS- Native field. I am aware of Mac Native fields however in all the software I have written, I hav...
- Wed Sep 26, 2018 10:57 pm
- Forum: iOS Deployment
- Topic: iOS wows - Screen not updating on a card
- Replies: 6
- Views: 463
Re: iOS wows - Screen not updating on a card
This was the Panos solution which worked.

Code: Select all
set the acceleratedRendering of this stack to true
- Wed Sep 26, 2018 10:54 pm
- Forum: iOS Deployment
- Topic: I can not test my app on my iPad anymore
- Replies: 2
- Views: 380
Re: I can not test my app on my iPad anymore
I had this today so I took the Dogbert approach and it fixed it.
- Wed Sep 26, 2018 7:16 pm
- Forum: iOS Deployment
- Topic: Damn pop up keyboard
- Replies: 12
- Views: 892
Re: Damn pop up keyboard
Ok. This worked. Thanks 8-) on preOpenCard set the traversalOn of fld "test" to false end preOpenCard on openCard send "resetFld" to me in 1 end openCard on resetFld set the traversalOn of fld "test" to true end resetFld I am still fascinated by why this did not move to the second card. on opencard ...