kaotkbliss Posted August 2, 2012 Author Share Posted August 2, 2012 First post updated with download for the last free version. 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy! Link to comment Share on other sites More sharing options...
kaotkbliss Posted August 31, 2012 Author Share Posted August 31, 2012 I've made the program free again, however, there is a donate button for those who like the program to show their appreciation Some major differences since the last free version are the changes in the looks and the ability to lock lists with a password. This encrypts the tab file so it can't be opened and read and also hides the list in the Gui so nosy siblings can't view items in your list. 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy! Link to comment Share on other sites More sharing options...
toddcbrf2 Posted August 31, 2012 Share Posted August 31, 2012 (edited) Hey Koat. I've tried to download the latest version but an error posts from the autoit location as well as the website download. "your Allin1 Launcher is not the correct size. it may have been modified. Please go to allin1.clanteam.com to download a correct and virus free version." Edited August 31, 2012 by toddcbrf2 “Anyone who has never made a mistake has never tried anything new.”― Albert Einstein Link to comment Share on other sites More sharing options...
kaotkbliss Posted August 31, 2012 Author Share Posted August 31, 2012 Try again. I re-checked the file size and re-recompiled it. 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy! Link to comment Share on other sites More sharing options...
toddcbrf2 Posted August 31, 2012 Share Posted August 31, 2012 additional error Key not installed, please re-run the installer “Anyone who has never made a mistake has never tried anything new.”― Albert Einstein Link to comment Share on other sites More sharing options...
kaotkbliss Posted August 31, 2012 Author Share Posted August 31, 2012 Thank you. I've uploaded a new copy. When removing the pay requirement I still had a key in my registry so this error was not triggering for me to fix. 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy! Link to comment Share on other sites More sharing options...
toddcbrf2 Posted August 31, 2012 Share Posted August 31, 2012 very nice Koat - I use this tool every day and interface is nice and intuitive. “Anyone who has never made a mistake has never tried anything new.”― Albert Einstein Link to comment Share on other sites More sharing options...
kaotkbliss Posted August 31, 2012 Author Share Posted August 31, 2012 Thank you if you notice any more problems or have any suggestions, let me know. 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy! Link to comment Share on other sites More sharing options...
kaotkbliss Posted August 31, 2012 Author Share Posted August 31, 2012 it was asked how I did the new gui for this program and thought that it would be good to post here as well. here is a small reproducer that shows how I did it. You will need a few of the images from the install for this to work expandcollapse popup#include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <WinAPI.au3> $omap = @ScriptDir & "Options.bmp" $omap2 = @ScriptDir & "Options2.bmp" $bmap = @ScriptDir & "Black.bmp" $numeProg = "Allin1_Program Launcher" $sW = 153 $sH = 170 $iTransp = 195 $hGUI = GUICreate($numeProg, $sW, $sH, -1, -1, $WS_POPUP, BitOR($WS_EX_LAYERED, $WS_EX_TOOLWINDOW, $WS_EX_ACCEPTFILES)) GUICtrlCreatePic($bmap, 0, 0, $sW-25, $sH, $WS_CLIPSIBLINGS) GUICtrlSetState($bmap, $GUI_DISABLE) $map = GUICtrlCreatePic($omap, $sW-25, 0, 25, 170, $WS_CLIPSIBLINGS) GUICtrlSetTip($map, "", "") GUICtrlSetState($map, $GUI_DISABLE) GUICtrlSetState($map, $GUI_HIDE) $map2 = GUICtrlCreatePic($omap2, $sW-25, 0, 25, 170, $WS_CLIPSIBLINGS) GUICtrlSetState($map2, $GUI_DISABLE) GUICtrlCreatePic($omap2, $sW-25, $sH-85, 25, 170, $WS_CLIPSIBLINGS) GUICtrlSetState($omap2, $GUI_DISABLE) _WinAPI_SetLayeredWindowAttributes($hGUI, 0xFF00FF, $iTransp) GUISetState(@SW_SHOW, $hGUI) $opflag = 0 While 1 $wpos = WinGetPos($hGUI) $mpos = MouseGetPos() If $mpos[0] > $wpos[0] And $mpos[0] < $wpos[0] + $wpos[2] _ And $mpos[1] > $wpos[1] And $mpos[1] < $wpos[1] + $wpos[3] _ And $opflag = 0 Then GUICtrlSetState($map2, $GUI_HIDE) GUICtrlSetState($map, $GUI_SHOW) $opflag = 1 ElseIf ($mpos[0] < $wpos[0] Or $mpos[0] > $wpos[0] + $wpos[2] _ Or $mpos[1] < $wpos[1] Or $mpos[1] > $wpos[1] + $wpos[3]) _ And $opflag = 1 Then GUICtrlSetState($map, $GUI_HIDE) GUICtrlSetState($map2, $GUI_SHOW) GUICtrlSetState($map2, $GUI_ONTOP) $opflag = 0 EndIf Switch GUIGetMsg() Case $GUI_EVENT_PRIMARYDOWN If $mpos[0] > $wpos[0] + $wpos[2] - 19 And $mpos[0] < $wpos[0] + $wpos[2] _ And $mpos[1] > $wpos[1] And $mpos[1] < $wpos[1] + 19 Then Exit EndIf EndSwitch WEnd 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy! Link to comment Share on other sites More sharing options...
kaotkbliss Posted October 23, 2012 Author Share Posted October 23, 2012 Some people are still trying to use the old "paid" version, Besides wanting to be able to keep this program in the example forums, there is a hassle with the ftp hosting site used to check login for installing/running the program. The site will block any attempt to access the ftp from an outside country until I change my location to that country. If you have an old version, please download the new version as this security check was removed. 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy! Link to comment Share on other sites More sharing options...
kaotkbliss Posted November 10, 2013 Author Share Posted November 10, 2013 Been a while since I've updated this post. Gone through a couple revisions now and I can't remember everything but I will list what I can remember. Added the ability to password protect different tabs (don't forget your passwords) A lot of bug fixing from adding the password option. also for some reason version 3.0.2.1 would always see itself as a newer version but that's been fixed. I had to remove .lnk files with optional parameters and it now just simply points to the .exe file. There were some issues with the new .cfg file format and trying to format the optional parameters correctly. As always, love to hear feedback and suggestions. 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now