I have a small problem.
When define shortcuts and icons the desklet locks and "done" ceases to functions and I can not go back to AveDock (i.e. turn the desklet around).
In the properties dialog I get the following error message:
-------------------------------
13 Microsoft JScript runtime error
Type mismatch Line:462 Column:4
-------------------------------
Any idea what the proble is?
Thanks
Ave Dock - final version
#22
Posted 30 May 2006 - 12:42 PM
Hi - sorry for the long delay, I was very busy the last two weeks... 
Regarding the problem with the shortcuts/icons - I changed the textfield so that you can enter values there. So you should be able to delete values now.
I also made the hotkey configurable, but I'm still having a problem to "delete" the old values before restarting AveDesk - once I solved that, there'll be the next release.
Also working on a "normal" version now (like a normal - tabbed - launchbar).
Regarding the Hide/show labels and tabs: This works fine for me, so its difficult to figure out the reason.
Hide Labels should hide the name/text for each shortcut + the background of the text that pops up in the middle of the ring once the mouse is over a shortcut/tab.
Hide Tabs should hide the symbols you use for switching between the 5 sets of icons - so there are only 10 icons left...
@szederjei:
I don't know the reason for the desklet locking up, but line 462 is the command for flipping back once you press the "done" button. If you go to the desklet's folder (...AveDeskDeskletsAveScripterAveDock), can you try to open the "main.js" with a text editor (e.g. windows "editor").
I can think of two possibilities right now - So can you try this and tell me if it works, please?
First:
------
Right at the top of the text (line 8) there is:
var side = ''; //side to return to
Try changing it to var side = '0';
If this doesn't work, maybe this'll help -
At about 2/3 of the text you'll find this:
function flipback(){
//back to last side
var fx = this.controls('FX').Value;
this.parameters('FX').Value = fx;
this.FlipTo(side);
this.Redraw(true);
}
Line 462 is "this.FlipTo(side);"
Change this.FlipTo(side); to this.FlipTo(0);
This s for the case your "computer" has a problem with the variable...
Regarding the problem with the shortcuts/icons - I changed the textfield so that you can enter values there. So you should be able to delete values now.
I also made the hotkey configurable, but I'm still having a problem to "delete" the old values before restarting AveDesk - once I solved that, there'll be the next release.
Also working on a "normal" version now (like a normal - tabbed - launchbar).
Regarding the Hide/show labels and tabs: This works fine for me, so its difficult to figure out the reason.
Hide Labels should hide the name/text for each shortcut + the background of the text that pops up in the middle of the ring once the mouse is over a shortcut/tab.
Hide Tabs should hide the symbols you use for switching between the 5 sets of icons - so there are only 10 icons left...
@szederjei:
I don't know the reason for the desklet locking up, but line 462 is the command for flipping back once you press the "done" button. If you go to the desklet's folder (...AveDeskDeskletsAveScripterAveDock), can you try to open the "main.js" with a text editor (e.g. windows "editor").
I can think of two possibilities right now - So can you try this and tell me if it works, please?
First:
------
Right at the top of the text (line 8) there is:
var side = ''; //side to return to
Try changing it to var side = '0';
If this doesn't work, maybe this'll help -
At about 2/3 of the text you'll find this:
function flipback(){
//back to last side
var fx = this.controls('FX').Value;
this.parameters('FX').Value = fx;
this.FlipTo(side);
this.Redraw(true);
}
Line 462 is "this.FlipTo(side);"
Change this.FlipTo(side); to this.FlipTo(0);
This s for the case your "computer" has a problem with the variable...
#23
Posted 30 May 2006 - 12:52 PM
var side = ''; //side to return to
Try changing it to var side = '0'
Why are you declaring the side variable as a string? You should declare it as a number. This could be the problem your having. FlipTo requires a number value not a string.
you should assigne it like this
var side = 0
Try changing it to var side = '0'
Why are you declaring the side variable as a string? You should declare it as a number. This could be the problem your having. FlipTo requires a number value not a string.
you should assigne it like this
var side = 0
#24
Posted 30 May 2006 - 02:20 PM
@thewer
Thank you for your help. I changed the two values to 0 and it works now. Although now I can not change the shortcut names, they switchback to "shortcut". Sorry, I really try not to be difficult..
Oh, and the error code changed to:
-------------------------------
424 Microsoft JScript runtime error
Object required Line:107 Column:1
-------------------------------
Thank you for your help. I changed the two values to 0 and it works now. Although now I can not change the shortcut names, they switchback to "shortcut". Sorry, I really try not to be difficult..
Oh, and the error code changed to:
-------------------------------
424 Microsoft JScript runtime error
Object required Line:107 Column:1
-------------------------------
#25
Posted 01 June 2006 - 08:33 AM
Hi szederjei -
Don't worry, you're not difficult
- programming is and I'm unfortunately no expert...
Does the error message appear after pressing Enter or when flipping back?
Line 107 would be this.parameters('pic').Value = this.parameters(iconpic).Value;
I don't see a reason for a bug there, but I'll look into it!
Don't worry, you're not difficult
Does the error message appear after pressing Enter or when flipping back?
Line 107 would be this.parameters('pic').Value = this.parameters(iconpic).Value;
I don't see a reason for a bug there, but I'll look into it!
#27
Posted 15 December 2008 - 02:20 PM
Hi there
-
First, welcome to Aqua-soft!
I already did a new version of AveDock/TabbedDock called MorphDock (as it's totally free-form, including the Orbit-like ring) and you can get it here:
http://spider4webdesign.deviantart.com/art...-1-0-7-45118777
and a skinpack for it here:
http://spider4webdesign.deviantart.com/art...h-Dock-56961051
It should have nearly all errors fixed, if anything goes wrong it's probably due to not having installed the latest AveScripter or problems with the MS scripting engine (not my fault at least) - see this thread here for more details:
http://www.aqua-soft...ead.php?t=40487
Hope this'll help!
First, welcome to Aqua-soft!
I already did a new version of AveDock/TabbedDock called MorphDock (as it's totally free-form, including the Orbit-like ring) and you can get it here:
http://spider4webdesign.deviantart.com/art...-1-0-7-45118777
and a skinpack for it here:
http://spider4webdesign.deviantart.com/art...h-Dock-56961051
It should have nearly all errors fixed, if anything goes wrong it's probably due to not having installed the latest AveScripter or problems with the MS scripting engine (not my fault at least) - see this thread here for more details:
http://www.aqua-soft...ead.php?t=40487
Hope this'll help!








Sign In »
Register Now!
Help


MultiQuote