Search found 16 matches

by CalmoSoft
Sun Nov 18, 2018 1:10 pm
Forum: General
Topic: Insert an image
Replies: 3
Views: 2999

Re: Insert an image

Hello pgimeno et All,

Thanks for your help
but I mean to insert an image in a post.

Greetings,
Gal Zsolt
(~ CalmoSoft ~)
by CalmoSoft
Sun Nov 18, 2018 10:05 am
Forum: General
Topic: Insert an image
Replies: 3
Views: 2999

Insert an image

Hello All,

How can I insert an image?
Please send an example.

Greetings,
Gal Zsolt
(~ CalmoSoft ~)
by CalmoSoft
Sun Jan 08, 2017 11:06 am
Forum: General
Topic: What code editor do you use ?
Replies: 195
Views: 296897

Re: What code editor do you use ?

Hello All,

I use Zerobrane Studio.

Greetings,
Gal Zsolt
(~ CalmoSoft ~)
by CalmoSoft
Wed Jan 04, 2017 8:01 pm
Forum: Libraries and Tools
Topic: sandsmas - A LÖVE Editor
Replies: 20
Views: 40522

Re: sandsmas - A LÖVE Editor

Hello EntranceJew ,

Thank you very much for your help.

Greetings,
Gal Zsolt
(~ CalmoSoft ~)
by CalmoSoft
Thu Dec 29, 2016 10:15 am
Forum: Games and Creations
Topic: CalmoSoft Fifteen Puzzle Game
Replies: 0
Views: 1804

CalmoSoft Fifteen Puzzle Game

Hello All, Here is the CalmoSoft Fifteen Puzzle Game. The program uses mouse. http://keptarhely.eu/view.php?file=20181118v00oxtbde.png Code: function love.load() love.graphics.setNewFont(30) button = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, "---", "Scramble", "Res...
by CalmoSoft
Wed Dec 28, 2016 3:57 pm
Forum: Libraries and Tools
Topic: sandsmas - A LÖVE Editor
Replies: 20
Views: 40522

Re: sandsmas - A LÖVE Editor

Hello EntranceJew and All,

I have downloaded the Sandsmas from the GitHub but I do not know ho to install it.
Maybe I am ignorant but there is no "exe" or "msi" file.
Thank you very much.

Greetings,
Gal Zsolt
(~ CalmoSoft ~)
by CalmoSoft
Mon Dec 26, 2016 5:35 pm
Forum: General
Topic: Convert a number to string
Replies: 8
Views: 8654

Re: Convert a number to string

Hello Raidho66,

You are right.
Excuse me.
Now I have attached my file.

Gretetings,
Gal Zsolt
(~ CalmoSoft ~)
by CalmoSoft
Mon Dec 26, 2016 5:25 pm
Forum: General
Topic: Convert a number to string
Replies: 8
Views: 8654

Re: Convert a number to string

Hello Davisdude, Now I have the next code and it works properly. Thank you very much for your help. Code: function love.load() love.graphics.setNewFont(30) button = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, "---", "Scramble", "Reset"} end function reset() love...
by CalmoSoft
Mon Dec 26, 2016 4:52 pm
Forum: General
Topic: Convert a number to string
Replies: 8
Views: 8654

Re: Convert a number to string

Hello Davisdude, Now I have the next code but it still does not work. Please send me a sample. Code: function love.draw() for row = 1, 4 do for col = 1, 4 do love.graphics.print(str, printx, printy) love.graphics.rectangle('line', row*40, col*40, 40, 40) love.graphics.print((row-1)*4+col, row*40, co...
by CalmoSoft
Mon Dec 26, 2016 4:06 pm
Forum: General
Topic: Convert a number to string
Replies: 8
Views: 8654

Re: Convert a number to string

Hello Zorg, I read the next in attached page: >>>Conversely, whenever it finds a number where it expects a string, Lua converts the number to a string<<< I have the next code but it does not work. What do I wrong? Code: function love.draw() for row = 1, 4 do for col = 1, 4 do love.graphics.print(nr,...