Как сделать переход по ссылке в LUA?

Maksim(Jake)

Участник
Автор темы
31
5
Здравствуйте, вот у нас есть к примеру окно, и там нужно сделать кнопку, на которую нажимаешь, и переходить сразу на сайт, как это сделать?
На MonetLoader
 
Решение
а:
 if imgui.BeginChild(u8'asd', imgui.ImVec2(190, 55), true) then
        imgui.Text(u8'Телеграм')
        if imgui.IsItemClicked() then os.execute('explorer https://t.me/wayfc') end
        imgui.SetCursorPos(imgui.ImVec2(123, 26))
        imgui.Text(u8'тг пупсика(кента)')
        if imgui.IsItemClicked() then os.execute('explorer https://t.me/wayfc') end
        imgui.EndChild()
    end
    imgui.End()
end)
крч вот главное - if imgui.IsItemClicked() then os.execute('explorer https://t.me/бластхактоп') end

Klimer

Активный
154
38
а:
 if imgui.BeginChild(u8'asd', imgui.ImVec2(190, 55), true) then
        imgui.Text(u8'Телеграм')
        if imgui.IsItemClicked() then os.execute('explorer https://t.me/wayfc') end
        imgui.SetCursorPos(imgui.ImVec2(123, 26))
        imgui.Text(u8'тг пупсика(кента)')
        if imgui.IsItemClicked() then os.execute('explorer https://t.me/wayfc') end
        imgui.EndChild()
    end
    imgui.End()
end)
крч вот главное - if imgui.IsItemClicked() then os.execute('explorer https://t.me/бластхактоп') end