Page 29 of 71

Re: ProGUI V1.22! User Interface Library (now just $30!)

Posted: Mon Jul 04, 2011 7:25 pm
by PrincieD
DoubleDutch wrote:Don't forget, when you get to 20+ 'likes' you can go into the page settings and pick a proper page name for the page, eg: Facebook.com\progui
cool, thanks mate! and cheers for "liking" the page so far guys! :D maybe a dedicated thread on the forums (or my own board) would still be a good idea though for posting code examples and such as electrochrisso suggested?

Re: ProGUI V1.22! User Interface Library (now just $30!)

Posted: Mon Jul 04, 2011 8:37 pm
by Poshu
... Facebook ... Nooooooo! This is like hell, but in an uncool way. A forum would have been much more usable T__T

Re: ProGUI V1.22! User Interface Library (now just $30!)

Posted: Mon Jul 04, 2011 9:26 pm
by PrincieD
Poshu wrote:... Facebook ... Nooooooo! This is like hell, but in an uncool way. A forum would have been much more usable T__T
haha lol I tend to agree (facebook = necessary evil ;)) but it's better to have more than one way to get in touch with me and the other users I suppose. I'll create a forum on the ProGUI site but it would be nice to have a topic on the PureBasic forums.

Chris.

P.s I'll answer your question soon, I agree it's a tricky one - I'll need to think about it for a while (getting old lol)

Re: ProGUI V1.22! User Interface Library (now just $30!)

Posted: Mon Jul 04, 2011 10:31 pm
by DoubleDutch
It's worth getting the 20 likes then you can get the \progui (before anyone else does) - the same with Twitter - you should get it before anyone else.

Re: ProGUI V1.22! User Interface Library (now just $30!)

Posted: Mon Jul 04, 2011 10:49 pm
by PrincieD
bah! somebody already has it :(

Re: ProGUI V1.22! User Interface Library (now just $30!)

Posted: Tue Jul 05, 2011 1:45 pm
by ruslanx
It's posible to make a submenu tooltip (or how to do ...) .. ? thx.
Image

Re: ProGUI V1.22! User Interface Library (now just $30!)

Posted: Tue Jul 05, 2011 2:49 pm
by PrincieD
ruslanx wrote:It's posible to make a submenu tooltip (or how to do ...) .. ? thx.
Image
Hi ruslanx, not currently but I'll add support for this in the next update (as well a hover notification for menu items).

Chris.

Re: ProGUI V1.22! User Interface Library (now just $30!)

Posted: Tue Jul 05, 2011 2:58 pm
by ruslanx
thanks PrincieD.

Re: ProGUI V1.22! User Interface Library (now just $30!)

Posted: Tue Jul 05, 2011 4:03 pm
by PrincieD
no problem :)

Re: ProGUI V1.22! User Interface Library (now just $30!)

Posted: Tue Jul 05, 2011 7:18 pm
by X
fyi, per instructions have the following:
Help File Installation

Copy this help file (ProGUI.chm) to your "PureBasic\Help\" directory for context hot-key help in your IDE.
There is no /help directory with Purebasic 4.51 64bit.

Re: ProGUI V1.22! User Interface Library (now just $30!)

Posted: Tue Jul 05, 2011 7:48 pm
by PrincieD
X wrote:fyi, per instructions have the following:
Help File Installation

Copy this help file (ProGUI.chm) to your "PureBasic\Help\" directory for context hot-key help in your IDE.
There is no /help directory with Purebasic 4.51 64bit.
oops sorry about that (I'll make sure the docs are corrected). If you place it in the PureBasic root directory with the other '.chm' files it should work fine.

Re: ProGUI V1.22! User Interface Library (now just $30!)

Posted: Tue Jul 05, 2011 7:54 pm
by ts-soft
X wrote:There is no /help directory with Purebasic 4.51 64bit.
Create the directory! There comes never a directory "Help" from pb installation.

Re: ProGUI V1.22! User Interface Library (now just $30!)

Posted: Tue Jul 05, 2011 8:07 pm
by X
Thank you!

Re: ProGUI V1.22! User Interface Library (now just $30!)

Posted: Wed Jul 06, 2011 5:33 am
by electrochrisso
Here is my tip to have your ProGUI key load from a separate file location such as Shared, so your key does not get accidentally displayed, when submitting code onto forums and the like.

Code: Select all

If FileSize("..\..\Shared\StartProGUI.pb") <> -1 ;Set your location here
  IncludeFile "..\..\Shared\StartProGUI.pb" ;and here
Else
  StartProGUI("", 0, 0, 0, 0, 0, 0, 0)
EndIf
The file StartProGUI.pb is where your 1 line key code is to be found, name it to your own preference.

Re: ProGUI V1.22! User Interface Library (new forums on site

Posted: Wed Jul 06, 2011 9:36 pm
by PrincieD
Hey guys!

I've created the new ProGUI forums: http://www.progui.co.uk/phpBB/index.php
electrochrisso wrote:Here is my tip to have your ProGUI key load from a separate file location such as Shared, so your key does not get accidentally displayed, when submitting code onto forums and the like.

Code: Select all

If FileSize("..\..\Shared\StartProGUI.pb") <> -1 ;Set your location here
  IncludeFile "..\..\Shared\StartProGUI.pb" ;and here
Else
  StartProGUI("", 0, 0, 0, 0, 0, 0, 0)
EndIf
The file StartProGUI.pb is where your 1 line key code is to be found, name it to your own preference.
electrochrisso: could you post your good tip on the ProGUI forums too? :D

Cheers!

Chris.