Search found 140 matches
- Wed Jan 13, 2016 11:42 pm
- Forum: Libraries and Tools
- Topic: Löve Frames - A GUI Library
- Replies: 406
- Views: 377958
Re: Löve Frames - A GUI Library
Anyone ever encounter a problem with buttons not being clickable? I checked the source code and by default a new object is clickable, enabled, etc. The hover works as intended, it changes color and all. In fact I CAN click on the button but it doesn't "un-click". Basically I click and it ...
- Mon Dec 14, 2015 8:54 pm
- Forum: Support and Development
- Topic: loveframes OnClick not working
- Replies: 2
- Views: 2939
Re: loveframes OnClick not working
The code you posted seems like should work, so I'm not quite sure what the problem is without more info. Can you post a .love of your project please? You could also send it to me in a pm if you aren't comfortable with posting it on the forums.
- Sat Sep 19, 2015 11:23 pm
- Forum: Libraries and Tools
- Topic: Löve Frames - A GUI Library
- Replies: 406
- Views: 377958
Re: Löve Frames - A GUI Library
Does anybody used Tree component? Can't figure out how to make it work. P.S. I'm getting an error about "iconwidth" var (nil value) when trying to add node. The tree object was never finished, so its likely to cause errors if you use it. What are the chances you could add a Resize callbac...
- Sat Apr 04, 2015 11:12 pm
- Forum: Libraries and Tools
- Topic: Löve Frames - A GUI Library
- Replies: 406
- Views: 377958
Re: Löve Frames - A GUI Library
The documentation is on github now: https://github.com/KennyShields/LoveFrames/wikischmirsich wrote:Your website and subsequently the documentation seems to be offline. I presume you are still continuing the project?
- Mon Mar 30, 2015 2:23 pm
- Forum: Libraries and Tools
- Topic: Löve Frames - A GUI Library
- Replies: 406
- Views: 377958
Re: Löve Frames - A GUI Library
Hello, I am greatly enjoying this library. It has saved me a lot of time. I believe I have encountered a bug or perhaps I'm not using it correctly. I have found that the SetAutoScroll method for a ColumnList does nothing. Looking at the code, it appears that the GetScrollBar method is returning not...
- Thu Mar 26, 2015 10:49 am
- Forum: Libraries and Tools
- Topic: Löve Frames - A GUI Library
- Replies: 406
- Views: 377958
Re: Löve Frames - A GUI Library
The documentation was move to github: https://github.com/KennyShields/LoveFrames/wiki. I have updated the link in the original post.
- Sun Feb 15, 2015 1:22 am
- Forum: Support and Development
- Topic: [LOVEFRAMES] Buttons don't draw!
- Replies: 8
- Views: 6312
Re: [LOVEFRAMES] Buttons don't draw!
They seem to draw correctly for me. Can you post a screenshot of the issue?
- Mon Jan 19, 2015 11:23 am
- Forum: Libraries and Tools
- Topic: Löve Frames - A GUI Library
- Replies: 406
- Views: 377958
Re: Löve Frames - A GUI Library
The current license is zlib/libpng.Guard13007 wrote:Question about the licensing on Love Frames:
On your website, it claims to be released under a CC BY 3.0 license.
In the repository, it claims to be released under the zlib/libpng license.
Which is it?
- Sat Jan 17, 2015 3:40 am
- Forum: Libraries and Tools
- Topic: Löve Frames - A GUI Library
- Replies: 406
- Views: 377958
Re: Löve Frames - A GUI Library
Hi, I have been using LoveFrames in a couple different projects, and I recently wanted to make a menu object that you can open by right-clicking anywhere on screen. (I think I am understanding that is what the menu object is for?) I have this currently: local menu = lf.Create("menu") menu...
- Tue Jan 06, 2015 1:26 pm
- Forum: Libraries and Tools
- Topic: Löve Frames - A GUI Library
- Replies: 406
- Views: 377958
Re: Löve Frames - A GUI Library
Is it possible to hide child content outside of a parents bounds? So something like: local frame = loveframes.Create("frame") frame:SetSize(100, 100) local panel = loveframes.Create("panel", frame) panel:SetSize(50, 50) panel:SetPos(25, 75) Wouldn't have a panel sticking out the...