Search found 137 matches

by andresdt
Mon Sep 25, 2023 2:44 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: web widget
Replies: 2
Views: 1444

Re: web widget

Hello Samuele,
Maybe you have access to the website code. If so, try putting

Code: Select all

user-scalable=no
in the metadata of your website. Look at https://stackoverflow.com/questions/227 ... tribute-in

I hope this helps
by andresdt
Wed Apr 05, 2023 4:42 pm
Forum: Talking LiveCode
Topic: Something to remember when scripting substacks
Replies: 14
Views: 5987

Re: Something to remember when scripting substacks

Hi everyone, as @Klaus already said it's part of the flow. So it's not a mistake. If you don't want the substacks to execute the code you have in the preOpenStack of the mainstack. In the preOpenStack check that it is the mainstack otherwise pass the message and that's it. on preOpenStack if me is n...
by andresdt
Thu Nov 24, 2022 3:06 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Finding the Hilited Field or Button
Replies: 4
Views: 1672

Re: Finding the Hilited Field or Button

You can try with:

Code: Select all

on openCard
    // code
    focus on nothing
end openCard
by andresdt
Fri Oct 21, 2022 3:41 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: i18L how to use
Replies: 3
Views: 1372

Re: i18L how to use

Hi Does anyone have sample stack use i18L library? I just install the i18L library, but don't know how to use it. Regards Terry Ho In the Guide section of the IDE help search for i18n Library. https://i.postimg.cc/13Fs9VBP/Screenshot-3.png You can also look at the following post: https://livecode.c...
by andresdt
Tue Oct 04, 2022 11:31 am
Forum: Off-Topic
Topic: Newbie needs help, Buttons on rectangular graphic
Replies: 8
Views: 2912

Re: Newbie needs help, Buttons on rectangular graphic

Put a graphic and on top of it your buttons. Then group them and voila
by andresdt
Mon Sep 05, 2022 12:09 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: .............................................
Replies: 15
Views: 3612

Re: Hello, how do I make a button that counts my clicks

How would one make such an application, I am stuck Create an application where the user has to press a button. Each time the user presses the button, this must be registered in a script local variable. The values ​​in this must then be displayed on the screen as part of a text string. To add a valu...
by andresdt
Wed Jun 22, 2022 2:54 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: My code is not working anymore. but before it is working. (Solved Thanks)
Replies: 9
Views: 3475

Re: My code is not working anymore. but before it is working.

change your second line

Code: Select all

global tLineToEdit
by

Code: Select all

local tLineToEdit, tData
or in the script editor settings, disable the "Veriable checking" option.
by andresdt
Wed Jun 15, 2022 1:53 pm
Forum: Off-Topic
Topic: Ripple Effect Button
Replies: 35
Views: 10628

Re: Ripple Effect Button

ALTHOUGH (inevitable dig), I am interested to know how you manage to get away with multiple graphics with the same name. Instead of referring to the graphics by their name, I do so by the number they occupy within the group. I am beginning to feel very stupid indeed as an cannot find any mouseDown ...
by andresdt
Wed Jun 15, 2022 5:25 am
Forum: Off-Topic
Topic: Ripple Effect Button
Replies: 35
Views: 10628

Re: Ripple Effect Button

Some time ago I tried to do something like that. Here is what I achieved, I hope it helps you.
by andresdt
Wed Jun 01, 2022 5:06 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Grouped objects limit?
Replies: 5
Views: 2393

Re: Grouped objects limit?

Something similar has happened to me when I have the selectGroupedControls property active. So my suggestion is to check that the selectGroupedControls property is false. put the selectGroupedControls If you have a group on the card, check that it has the selectGroupedControls property set to false.
by andresdt
Fri May 27, 2022 5:07 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: shrink to center
Replies: 7
Views: 3534

Re: shrink to center

Sorry I didn't quite understand :roll: What do you mean with label of the image? Just to be clear I have a lot of different images and what I was trying to say is that I would have to double every one of the images (that aren't the same) to create this effect, 1 mage a bit bigger than the other. Th...
by andresdt
Thu May 26, 2022 12:21 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: shrink to center
Replies: 7
Views: 3534

Re: shrink to center

Remove the label from your images, it occurs to me that you can create two images for each button variant you use in your app. If all the buttons are the same style and size. You will only have to use two images. Set the images for the icon and the hiliteIcon properties of your buttons. Then set the...
by andresdt
Wed May 25, 2022 7:58 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: shrink to center
Replies: 7
Views: 3534

Re: shrink to center

@Richmond62, very interesting your example, just a little suggestion. If in the repeat where he sends to wait, he tells him to wait with messages. Everything doesn't freeze until the animation ends. Thanks for sharing this!
by andresdt
Wed May 25, 2022 7:57 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: shrink to center
Replies: 7
Views: 3534

Re: shrink to center

Hi @Samuele
Here I share an idea of how to achieve the same visual effect of the button. But without encoding, just create the two versions of the image to display. Normal and pressed and use a button.
by andresdt
Thu Apr 14, 2022 5:47 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How to put Hebrew text in my app?
Replies: 12
Views: 3716

Re: How to put Hebrew text in my app?

It may be that Android does not have the font used on the desktop. Try running the following code on desktop and Android to rule out font existence issue. code on a button on mouseUp local tFontName = "Linotype" --> tFontName is the name of the font you are using if tFontName is among the lines of (...

Go to advanced search