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

Why size of stack not auto-fits on device screen? - Livecode

everyone I create stack size 768*1024.This's size for iPad or iPad Retina.My images have size 768*1024. I tested on emulator.My images not fits.Picture below. This code: on preOpenstack if the environment is "mobile" then set the…
KemChat
  • 151
  • 3
  • 11
0
votes
1 answer

mergExt: using merAV for audio recording only

is it possible to use LC ext mergAV to record just audio to save as AIFF or WAVE? if it is, where can i find examples about? tia. re.mu.
0
votes
1 answer

Stack window opens with incorrect size

My application has 2 stacks. Stack 1 is "main" and it opens stack 2. Stack 2 is "slideview" and shows an image like an e-book. My application is for iOS. I test on iPad. I save a standalone application to install on iOS. I use program "iExplorer" to…
KemChat
  • 151
  • 3
  • 11
0
votes
1 answer

Why size of stack is small when I use "go stack namestack" in iOS application? - Livecode

I have 2 stack. The first stack is for open the seconds stack by command : go stack namestack This command is for open the seconds stack.This's working fine.It's can open the seconds stack.But It's small after small it's original size. Here…
KemChat
  • 151
  • 3
  • 11
0
votes
1 answer

Why I can't use command "revZipOpenArchive" with mobile(IOS) ? - livecode

I download file to my path.My path is "documents". I test my code on runtime in pc.It's working.But when I test in emulator is not working and not error message. Here code: on mouseUp put specialFolderPath("documents") & "/testFile.zip" into…
KemChat
  • 151
  • 3
  • 11
0
votes
1 answer

I can't bundle app (IOS) - Livecode

I use IDE version 6.7(dp4). I create simple application for iPhone and I have certificate on apple.When I bundle app my screen has freeze. Here pricture:
KemChat
  • 151
  • 3
  • 11
0
votes
1 answer

Why the player hasn't show after hidden? - Livecode

I create the player and the button on my stack.The button is handle the player for hide or show. When I open stack the player has show normally.After I touch the button for hide and show again.The player has problem to picture below. Before…
KemChat
  • 151
  • 3
  • 11
0
votes
1 answer

How do I show the lists control by subtracting the group of list control? - livecode

How do I show the lists control by subtracting the group of list control? Here my code: on refreshlistoj idCardCur set the dgData of grp "dgG" of card "Main" of stack stackmain to get_elementtodg(idCardCur) end refreshlistoj function…
KemChat
  • 151
  • 3
  • 11
0
votes
1 answer

How do smooth when scrolling group? - livecode

I want to do smooth when scrolling group.In group have three image.I want to make slideshow. When I scrolling group and release it.I want it has smooth. Here my code: local sScrolling local sInitialMouseX, sInitialMouseY local sInitialHScroll,…
KemChat
  • 151
  • 3
  • 11
0
votes
2 answers

How to calculate the speed of slide screen? - Livecode

I have create image slideshow.By create group of image group.Like this image: Now I can do slide using the mouse to move.The example code like this. local sScrolling local sInitialMouseX, sInitialMouseY local sInitialHScroll, sInitialVScroll on…
KemChat
  • 151
  • 3
  • 11
0
votes
1 answer

native android scroller for 3-4 fields on 1 card does not work

I'd like to create a card with 3-4 text fields each having a native android scrollers. I followed the lesson here Creating a native scroller to scroll a field. I tried to use the same code for another card with 3 fields that I grouped together and…
mark
  • 222
  • 1
  • 9
0
votes
4 answers

Can't delete this stack? - Livecode

I create new stack from mainstack and after I want to delete mainstack. I can't it. Here my code: create stack "newstack" go to stack "newstack" delete stack "mainstack" How do I do? Thank you
KemChat
  • 151
  • 3
  • 11
0
votes
2 answers

How to export video file ? - livecode

I create player and I want to export video file form player to my folder. Here my code: put the long id of control crd of card ID namecurrent of stack stackname into longIDofVdoName export longIDofImageName to file (specialFolderPath("desktop") &…
KemChat
  • 151
  • 3
  • 11
0
votes
1 answer

Live Code Android Test: Installation of app failed: rm failed for

I created an app using the Live Code App Design Kit and I want to Test it on the Android device emulator using the Test button in Live Code. Eventually, I want to run it on my Nexus 7. I followed all of the instructions in the "How do I Become…
0
votes
2 answers

How to save project on runtime?

I want to save a project on runtime with extension type ".livecode". Is it possible? Here is an example: on mouseUp save stack "testStack" end mouseUp I tried this suggestion: In the "Standalone application settings" in LC under "Stacks"…
KemChat
  • 151
  • 3
  • 11