Hello pgimeno et All,
Thanks for your help
but I mean to insert an image in a post.
Greetings,
Gal Zsolt
(~ CalmoSoft ~)
Search found 16 matches
- Sun Nov 18, 2018 1:10 pm
- Forum: General
- Topic: Insert an image
- Replies: 3
- Views: 3095
- Sun Nov 18, 2018 10:05 am
- Forum: General
- Topic: Insert an image
- Replies: 3
- Views: 3095
Insert an image
Hello All,
How can I insert an image?
Please send an example.
Greetings,
Gal Zsolt
(~ CalmoSoft ~)
How can I insert an image?
Please send an example.
Greetings,
Gal Zsolt
(~ CalmoSoft ~)
- Sun Jan 08, 2017 11:06 am
- Forum: General
- Topic: What code editor do you use ?
- Replies: 195
- Views: 319404
Re: What code editor do you use ?
Hello All,
I use Zerobrane Studio.
Greetings,
Gal Zsolt
(~ CalmoSoft ~)
I use Zerobrane Studio.
Greetings,
Gal Zsolt
(~ CalmoSoft ~)
- Wed Jan 04, 2017 8:01 pm
- Forum: Libraries and Tools
- Topic: sandsmas - A LÖVE Editor
- Replies: 20
- Views: 42869
Re: sandsmas - A LÖVE Editor
Hello EntranceJew ,
Thank you very much for your help.
Greetings,
Gal Zsolt
(~ CalmoSoft ~)
Thank you very much for your help.
Greetings,
Gal Zsolt
(~ CalmoSoft ~)
- Thu Dec 29, 2016 10:15 am
- Forum: Games and Creations
- Topic: CalmoSoft Fifteen Puzzle Game
- Replies: 0
- Views: 1864
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...
- Wed Dec 28, 2016 3:57 pm
- Forum: Libraries and Tools
- Topic: sandsmas - A LÖVE Editor
- Replies: 20
- Views: 42869
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 ~)
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 ~)
- Mon Dec 26, 2016 5:35 pm
- Forum: General
- Topic: Convert a number to string
- Replies: 8
- Views: 9572
Re: Convert a number to string
Hello Raidho66,
You are right.
Excuse me.
Now I have attached my file.
Gretetings,
Gal Zsolt
(~ CalmoSoft ~)
You are right.
Excuse me.
Now I have attached my file.
Gretetings,
Gal Zsolt
(~ CalmoSoft ~)
- Mon Dec 26, 2016 5:25 pm
- Forum: General
- Topic: Convert a number to string
- Replies: 8
- Views: 9572
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...
- Mon Dec 26, 2016 4:52 pm
- Forum: General
- Topic: Convert a number to string
- Replies: 8
- Views: 9572
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...
- Mon Dec 26, 2016 4:06 pm
- Forum: General
- Topic: Convert a number to string
- Replies: 8
- Views: 9572
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,...