[unsolvable] Custom dialog close() on space/left_click

Discussion of Lua and LuaWML support, development, and ideas.

Moderator: Forum Moderators

Post Reply
User avatar
ZombieKnight
Posts: 180
Joined: June 27th, 2022, 2:26 pm
Location: Czech Republic

[unsolvable] Custom dialog close() on space/left_click

Post by ZombieKnight »

Hi,
How to close my custom dialog, when >space< or >left_mouse_button< is pressed?
Last edited by ZombieKnight on April 20th, 2024, 5:53 am, edited 2 times in total.
I had saurian in profile before, but I've merged my discord profile with forum one...
User avatar
Celtic_Minstrel
Developer
Posts: 2241
Joined: August 3rd, 2012, 11:26 pm
Location: Canada
Contact:

Re: Custom dialog close() on space/left_click

Post by Celtic_Minstrel »

I'm not quite sure if this will work, but you could try this:

Code: Select all

local function pre_show(dialog)
	dialog.on_left_click = function() dialog:close() end
end
Completely hypothetical and untested. I'm not even sure if a close() function exists.
Author of The Black Cross of Aleron campaign and Default++ era.
Former maintainer of Steelhive.
User avatar
ZombieKnight
Posts: 180
Joined: June 27th, 2022, 2:26 pm
Location: Czech Republic

Re: Custom dialog close() on space/left_click

Post by ZombieKnight »

close() exists,
Code doesn't work.(it runs like if dialog.on_left_click = "")
What about >space<?, that's more important to me
I had saurian in profile before, but I've merged my discord profile with forum one...
User avatar
Celtic_Minstrel
Developer
Posts: 2241
Joined: August 3rd, 2012, 11:26 pm
Location: Canada
Contact:

Re: Custom dialog close() on space/left_click

Post by Celtic_Minstrel »

Sorry, that one I'm not sure about.
Author of The Black Cross of Aleron campaign and Default++ era.
Former maintainer of Steelhive.
User avatar
ZombieKnight
Posts: 180
Joined: June 27th, 2022, 2:26 pm
Location: Czech Republic

Re: Custom dialog close() on space/left_click

Post by ZombieKnight »

I'm not good in lua enought ...
Any ideas?
I had saurian in profile before, but I've merged my discord profile with forum one...
Post Reply