Hello,
please can you add https://highlightjs.org/ to the forum style? It's a syntax highlighting that support livecode.
It would make this forum code more readable.
Search found 1573 matches
- Wed Sep 30, 2020 6:44 am
- Forum: Off-Topic
- Topic: Please add highlight.js to this forum syle
- Replies: 3
- Views: 1802
- Fri May 22, 2020 9:25 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Strange error (fork?)
- Replies: 0
- Views: 1179
Strange error (fork?)
Hello,
I got this strange error:
this is is the guilty line:
Any idea?
I got this strange error:
Code: Select all
button "Button": execution error at line n/a (System error: function) near "fork"
Code: Select all
put shell("cp temp.pdf '" & myPath &"/"& tLine &"'")
- Tue Feb 18, 2020 6:12 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Telnet
- Replies: 1
- Views: 990
Re: Telnet
Probably this is the code you need: ########CODE to copy and paste with your mouse####### open socket to "192.168.1.5:23" with message "clientConnected" on clientConnected pSocket 20 write "hello world! I'm talking to the server" & return to socket pSocket 20 read from socket pSocket until return 20...
- Mon Apr 22, 2019 11:18 pm
- Forum: Linux
- Topic: 64 bit browser not working
- Replies: 3
- Views: 3376
Re: 64 bit browser not working
Well, it isn't totally true.
Just create the standalone with livecode 8 and this:
Just create the standalone with livecode 8 and this:
Code: Select all
#! /bin/bash
export LC_ALL= LC_NUMERIC=C
export LIBGL_DRI3_DISABLE=1
/opt/livecode/livecodecommunity-8.1.10.x86_64/livecodecommunity.x86_64
- Mon Apr 22, 2019 11:08 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Saving Files to SQL Database
- Replies: 5
- Views: 1725
Re: Saving Files to SQL Database
There a PRO and cons.
The PRO are:
The PRO are:
- it's more easy manage files, it's all on the DB
- backup, you just need to backup the DB
- it's very easy to delete files
- Mon Apr 22, 2019 10:57 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Passing a variable between events
- Replies: 6
- Views: 1840
Re: Passing a variable between events
I suggest you to study the custom properties: https://livecode.fandom.com/wiki/Custom_properties
- Mon Apr 22, 2019 10:55 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Script only Stacks
- Replies: 22
- Views: 5723
- Mon Apr 22, 2019 10:49 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: BMI Calculator
- Replies: 8
- Views: 2486
Re: BMI Calculator
I agree with Craig , Here is the BMI formula. Have fun..... BMI_Formula.png Yes, so the code would be: ########CODE to copy and paste with your mouse####### function getBMI pHeight, pWeight 20 #if pHeight is in cm, then 20 put pHeight / 100 into pHeight 20 put pWeight / ((pHeight)^ 2 ) into temp 20...
- Mon Apr 22, 2019 10:30 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Creating a installer
- Replies: 38
- Views: 8149
Re: Creating a installer
Did you try this? https://www.software.trevix.it/piccolo_installer/
- Mon Apr 22, 2019 10:27 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: how can I load a website url into an image control
- Replies: 11
- Views: 2985
Re: how can I load a website url into an image control
Code: Select all
put URL "http://www.runrev.com/images/logo.jpg" into image "web"
- Thu Apr 11, 2019 1:00 am
- Forum: Talking LiveCode
- Topic: Using the ComboBox
- Replies: 8
- Views: 4632
Re: Using the ComboBox
It's a hack, but try this in the combobox button script: on keydown pkey -- set up the filtered content before the list is displayed put the cText of me into tText -- grab the original list put the label of me & pkey into tLabel filter tText with (tLabel & "*") lock screen put tText into me click a...
- Mon Apr 01, 2019 5:55 am
- Forum: LiveCode Builder
- Topic: Browser Widget usage examples
- Replies: 49
- Views: 41517
Re: Browser Widget usage examples
Widget usage example #9: hhTextEditBasic (Close to a basic TextEdit widget) Uses a browser widget as "text field" extending by that LC's htmltext of fields to a larger set of text styling (e.g. justified textAlign), transforms/3D-rotations and filters (blur, sepia etc.). Of course you can edit the ...
- Fri Mar 15, 2019 7:41 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: ANN: New player
- Replies: 2
- Views: 1287
Re: ANN: New player
Here a video: https://youtu.be/jiRh2AS916Q
It's like the Livecode player, but it works. At the present the Livecode player don't change file, can't be paused and so on.
This on the other side works.
It's like the Livecode player, but it works. At the present the Livecode player don't change file, can't be paused and so on.
This on the other side works.
- Thu Mar 14, 2019 7:22 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: ANN: New player
- Replies: 2
- Views: 1287
ANN: New player
Hello,
since player on Linux from LC8 and up is affected of bugs, I made another player. You can download here: https://github.com/angerangel/playerwidget/tree/master
It use MPlayer, so wherever mplayer works, it can work.
It's a very early stage, but it's very promising.
since player on Linux from LC8 and up is affected of bugs, I made another player. You can download here: https://github.com/angerangel/playerwidget/tree/master
It use MPlayer, so wherever mplayer works, it can work.
It's a very early stage, but it's very promising.

- Mon Mar 04, 2019 7:11 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: DataGrid Fourm
- Replies: 1
- Views: 1068