Page 1 of 2

Clickies 4.1.3 not saving options?

PostPosted: Tue Dec 03, 2013 7:54 pm
by blockhead15
Every time I restart firefox, I need to turn off confirmations for clickies - is that happening to anyone else? Just started with latest release.

Re: Clickies 4.1.3 not saving options?

PostPosted: Tue Dec 03, 2013 8:49 pm
by Ninja Champion
every time I log in again I have the same problem

Re: Clickies 4.1.3 not saving options?

PostPosted: Tue Dec 03, 2013 9:07 pm
by mcshanester29
Same problem for me

Re: Clickies 4.1.3 not saving options?

PostPosted: Wed Dec 04, 2013 5:56 am
by Armandolas
it happened to me, but only once

Re: Clickies 4.1.3 not saving options?

PostPosted: Wed Dec 04, 2013 2:52 pm
by dhallmeyer
same for me.

Re: Clickies 4.1.3 not saving options?

PostPosted: Thu Dec 05, 2013 11:26 pm
by L M S
same here too

Re: Clickies 4.1.3 not saving options?

PostPosted: Sun Dec 08, 2013 12:47 pm
by snakedoctor
same for me...it's so annoying

Re: Clickies 4.1.3 not saving options?

PostPosted: Mon Dec 09, 2013 9:04 am
by trinicardinal
snakedoctor wrote:same for me...it's so annoying


+1

Re: Clickies 4.1.3 not saving options?

PostPosted: Tue Dec 17, 2013 9:19 am
by puppydog85
happening to me multiple times

Re: Clickies 4.1.3 not saving options?

PostPosted: Wed Dec 18, 2013 3:41 am
by Lancelot du Lac
I had the same problem. I think it is a problem of cookies. You must be in Private browsing.

Re: Clickies 4.1.3 not saving options?

PostPosted: Wed Dec 18, 2013 7:40 am
by trinicardinal
Lancelot du Lac wrote:I had the same problem. I think it is a problem of cookies. You must be in Private browsing.


I'm in private browsing also but it never happened to me before this update. Plus even when I do not close off ff I still get the problem every time I have to log back into CC... that should happen if it was just cookies

Re: Clickies 4.1.3 not saving options?

PostPosted: Thu Dec 19, 2013 6:06 am
by Lancelot du Lac
Maybe updates's Firfox. Try it.

Re: Clickies 4.1.3 not saving options?

PostPosted: Thu Dec 19, 2013 8:07 am
by puppydog85
It's the private browsing that did it. I even went back and tried an old version of clickies and that did not fix it. Switched off private and it works....which sucks.

Re: Clickies 4.1.3 not saving options?

PostPosted: Fri Jan 31, 2014 11:32 pm
by Frox333
yeah...I am confused with this....oh well, hopefully it will get cured soon

Re: Clickies 4.1.3 not saving options?

PostPosted: Sat Feb 01, 2014 11:10 am
by dgz345
clicky save its settings almost as cookies. so if you remove cookies or browse in private mode. the settings "cookies" will get deleted on close.
so it doesn't save in private browsing because that prevents everything from saving. and it will not work if you have settings to delete cookies/history on close

Re: Clickies 4.1.3 not saving options?

PostPosted: Sat Feb 01, 2014 11:12 am
by dhallmeyer
Any chance of changing the default settings to no confirmations?

Re: Clickies 4.1.3 not saving options?

PostPosted: Sat Feb 01, 2014 3:58 pm
by mcshanester29
dhallmeyer wrote:Any chance of changing the default settings to no confirmations?


This would be a great change!!!

Re: Clickies 4.1.3 not saving options?

PostPosted: Sat Feb 01, 2014 4:37 pm
by dgz345
im not the creator of the script. and ill not change the default for everyone. because its there to prevent missclicks for new users. in a sense of making script it would be wrong to have that as the default option.

you can change your own default in your script.
Code: Select all
      // set default preferences, then update userPrefs if necessary
      defaultPrefs = {
         actionMenu:'normal',
         mapBorder:'thin',
         showCrosshairs:'Y',
         showFromMarker:'Y',
         showAdvanceToMarker:'Y',
         showFloatingQuantity:'Y',
         showToolTips:'Y',
         confirmDeploy:'Y',
         confirmAssault:'N',
         'confirmAuto-Assault':'N',
         confirmAdvance:'Y',
         confirmFortify:'Y',
         confirmPhaseEnd:'Y',
         phaseEndHotkey:'e'.charCodeAt(0),
         nextGameHotkey:'n'.charCodeAt(0),
         jumpToMapHotkey:'m'.charCodeAt(0),
         refreshMapHotkey:'r'.charCodeAt(0),
         beginTurnHotkey:'b'.charCodeAt(0),
         increaseArmiesHotkey:'w'.charCodeAt(0),
         decreaseArmiesHotkey:'s'.charCodeAt(0),
         useMouseWheel:'Y',
         deploymentClicks:'Left-1 Right-Selected'
      };

this code is from line 1415 in Clickys 4.16
change the default settings here.
the confirms are 'Y' or 'N'

Re: Clickies 4.1.3 not saving options?

PostPosted: Sat Feb 01, 2014 6:50 pm
by dhallmeyer
Thanks. I'll give it a try next week.

Re: Clickies 4.1.3 not saving options?

PostPosted: Mon Feb 03, 2014 4:44 pm
by mcshanester29
dgz345 wrote:im not the creator of the script. and ill not change the default for everyone. because its there to prevent missclicks for new users. in a sense of making script it would be wrong to have that as the default option.

you can change your own default in your script.
Code: Select all
      // set default preferences, then update userPrefs if necessary
      defaultPrefs = {
         actionMenu:'normal',
         mapBorder:'thin',
         showCrosshairs:'Y',
         showFromMarker:'Y',
         showAdvanceToMarker:'Y',
         showFloatingQuantity:'Y',
         showToolTips:'Y',
         confirmDeploy:'Y',
         confirmAssault:'N',
         'confirmAuto-Assault':'N',
         confirmAdvance:'Y',
         confirmFortify:'Y',
         confirmPhaseEnd:'Y',
         phaseEndHotkey:'e'.charCodeAt(0),
         nextGameHotkey:'n'.charCodeAt(0),
         jumpToMapHotkey:'m'.charCodeAt(0),
         refreshMapHotkey:'r'.charCodeAt(0),
         beginTurnHotkey:'b'.charCodeAt(0),
         increaseArmiesHotkey:'w'.charCodeAt(0),
         decreaseArmiesHotkey:'s'.charCodeAt(0),
         useMouseWheel:'Y',
         deploymentClicks:'Left-1 Right-Selected'
      };

this code is from line 1415 in Clickys 4.16
change the default settings here.
the confirms are 'Y' or 'N'


Thanks mate it works perfect!!

Re: Clickies 4.1.3 not saving options?

PostPosted: Mon Apr 28, 2014 1:01 pm
by dhallmeyer
Ack! I upgraded to 4.17 and we're back to changing preferences every time. Now I can't find the older version I was using. Any ideas?

Re: Clickies 4.1.3 not saving options?

PostPosted: Mon Apr 28, 2014 2:00 pm
by mcshanester29
dhallmeyer wrote:Ack! I upgraded to 4.17 and we're back to changing preferences every time. Now I can't find the older version I was using. Any ideas?


You should be able to just edit it just like with 4.16...although dgz could tell you for sure

Re: Clickies 4.1.3 not saving options?

PostPosted: Mon Apr 28, 2014 4:39 pm
by dhallmeyer
Made the changes. It's moved down a bit, line 1424 or a bit later I think. Looks like it's working.

Re: Clickies 4.1.3 not saving options?

PostPosted: Mon Apr 28, 2014 6:28 pm
by dgz345
dgz345 wrote:im not the creator of the script. and ill not change the default for everyone. because its there to prevent missclicks for new users. in a sense of making script it would be wrong to have that as the default option.

you can change your own default in your script.
Code: Select all
      // set default preferences, then update userPrefs if necessary
      defaultPrefs = {
         actionMenu:'normal',
         mapBorder:'thin',
         showCrosshairs:'Y',
         showFromMarker:'Y',
         showAdvanceToMarker:'Y',
         showFloatingQuantity:'Y',
         showToolTips:'Y',
         confirmDeploy:'Y',
         confirmAssault:'N',
         'confirmAuto-Assault':'N',
         confirmAdvance:'Y',
         confirmFortify:'Y',
         confirmPhaseEnd:'Y',
         phaseEndHotkey:'e'.charCodeAt(0),
         nextGameHotkey:'n'.charCodeAt(0),
         jumpToMapHotkey:'m'.charCodeAt(0),
         refreshMapHotkey:'r'.charCodeAt(0),
         beginTurnHotkey:'b'.charCodeAt(0),
         increaseArmiesHotkey:'w'.charCodeAt(0),
         decreaseArmiesHotkey:'s'.charCodeAt(0),
         useMouseWheel:'Y',
         deploymentClicks:'Left-1 Right-Selected'
      };

this code is from line 1415 in Clickys 4.16
change the default settings here.
the confirms are 'Y' or 'N'


clickys are saving options. but not if you use private browsing. or delete the options when you close the browser.