Questions tagged [livecode]

The LiveCode programming language (formerly the "Revolution" programming language) is a cross-platform rapid application development language.

LiveCode allows developers to create applications that run in any of the supported environments, using a compile-free workflow. The scripting language is based on the Hypertalk language originally developed by Apple for Hypercard. Since version 6 an open source version (GPL) is available.

644 questions
0
votes
1 answer

Can I create a video controller/ overlay in LiveCode

I have been using LiveCode for a couple of weeks now and have a question. I would like to create a custom video controller with play, stop, rewind etc with LiveCode that shows and hides at the bottom of the screen if you touch the video currently…
0
votes
0 answers

Creating and eMailing PDF within Livecode on iOS

My app (running on an iPad) is generating a PDF which is then attached to an email and sent to a client. However when I receive the PDF, Adobe will not open it. This is the error I get: Acrobat could not open 'Invoice 6020130304036.pdf' because…
0
votes
1 answer

android:windowSoftInputMode="adjustNothing" equivalent in livecode

Do you know the equivalent of eclipse code android:windowSoftInputMode="adjustNothing" in livecode? This prevents changing the layout when the keyboard shows up. Note: I created a web apps (html5 packed as android and ios apps) Thanks.
JunM
  • 7,040
  • 7
  • 37
  • 58
0
votes
1 answer

Http PUT to a JSON store

What is the LiveCode equivalent of the following JavaScript code snippet? var req = new XMLHttpRequest(); req.open("PUT", theURLoftheNoSQLstore, false); req.setRequestHeader('Content-Type', mimeType); …
z--
  • 2,186
  • 17
  • 33
0
votes
1 answer

How to upload images from phone and store in mysql database in livecode

I am working in a livecode app.In which i need to upload images from my phone and store their encoded form in Mysql database and be able to retrieve those images after decoding.Do Anyone Have some reference regarding this. Thanks
Rohit Bhardwaj
  • 269
  • 4
  • 20
0
votes
2 answers

Combo box not focusable

Is there any way we can set the combo box not focusable? Because every time I select an item from combo box (drop down list), the keyboard shows up and the text from drop down list can be edited. I can't find any property from property inspector to…
JunM
  • 7,040
  • 7
  • 37
  • 58
0
votes
1 answer

Is there a turtle graphic implementation for LC?

How can I do turtle graphics in LiveCode? I assume somebody probably already has some scripts. References This question is related to A script to draw, fill and group triangles in Livecode? https://en.wikipedia.org/wiki/Turtle_graphics
z--
  • 2,186
  • 17
  • 33
0
votes
1 answer

Cloud Base Sqlite Database in Livecode

I am working on a Livecode Aapplication. In this I need to use cloud base sqlite database. But I have not much knowledge about cloud base sqlite and how to implement it with Livecode Application. Could anyone explain to me, what is it and how can I…
Rohit Bhardwaj
  • 269
  • 4
  • 20
0
votes
1 answer

How do I add a field to a group?

I would like to create a group of fields by code. create group set the name of it to "myGroup" create field set the name of it to "myField" set the top of field "myField" to 10 set the width of field "myField" to 100 set the left of field…
z--
  • 2,186
  • 17
  • 33
0
votes
1 answer

How do I get the width of the label text of a button?

How can I set the width of a button created in a script to the one of its label text? on createButtonWithLabel aLabel create button set the label of it to aLabel -- set the width of the button to the space used by 'aLabel' -- ?? end…
z--
  • 2,186
  • 17
  • 33
0
votes
2 answers

Scrolling Effect inside a group and group contains control in live code

I put a button, label and an image in a group. I made 5 copies of that group. I want to make it scrollable . How can I do this? I cannot use a list field or a data grid field.
Vishal Nagra
  • 113
  • 2
  • 3
  • 8
0
votes
2 answers

How to add Listpicker to textbox in LiveCode

I want to add a list picker in Live code.When a user click on the Textbox the list picker should open with list of items.How can do that?
Rohit Bhardwaj
  • 269
  • 4
  • 20
0
votes
1 answer

How to give spacing between rows in Data grid(form view) in LiveCode

I am new in LiveCode,so facing lots of troubles.I am populating a data grid in LiveCode.so getting simultaneous Rows but i need some spacing between the rows.how can i achieve that, can any one help me in that ? thanks
Rohit Bhardwaj
  • 269
  • 4
  • 20
0
votes
1 answer

mergext mergDataGridScroller droptools location

Downloaded mergDataGridScroller from the mergExt site today. In the readme it says that Sons of Thunder 'DropTools' is required. It doesn't say that on the main site. Plus, I cannot seem to find DropTools on the SOT site.
Sean Cole
  • 3
  • 1
0
votes
1 answer

mergExt - mergAV show all the video while recording

It's possible to use the Video Gravity Mode AVLayerVideoGravityResizeAspect in preview? Currently I only can use the AVLayerVideoGravityResizeAspectFill which preserves the aspect ratio, but fills the available screen area, cropping the video. I…
Cue
  • 2,952
  • 3
  • 33
  • 54