|
Oct 26, 2007
|
Topic: Script development / editing problem. maybe Greasemonkey isn't finding the editor... you can try to uninstall greasemonkey and install it again... so when you click edit it will ask you what editor to use... |
|
Oct 26, 2007
|
Topic: Script development / editing problem. yeah, it just does not open. |
|
Oct 26, 2007
|
Topic: Script development / editing problem. the editor won't open? |
|
Oct 26, 2007
|
Topic: Userscripts.org discussion / Where are my favorite scripts? I need to provide a better link to them - they are visible from a link on the home page when you login ... The navigation to that needs to be improved. Jesse |
|
Oct 26, 2007
|
Topic: Userscripts.org discussion / Where are my favorite scripts? As an option, you can check a script you like as your favorite, but where is the menu in which I can find all my checked favorites? That's the whole reason of making them a "favorite"... |
|
Oct 26, 2007
|
Topic: Script development / editing problem. i dont no what going on. but i cannot edit scripts at all. |
|
Oct 26, 2007
|
Topic: Ideas and script requests / Auto Stop? Ahh. I don't know anything about scripts, just looking for one that just stopped every couple seconds. Is that all I need to put in the script? |
|
Oct 26, 2007
|
Topic: Ideas and script requests / Auto Stop? Guess what it is: http://developer.mozilla.org/en/docs/DOM:window...
|
|
Oct 26, 2007
|
Topic: Script development / Scope of Input Field -- Please Help! See this: http://wiki.greasespot.net/Global_object and maybe better is: http://wiki.greasespot.net/Greasemonkey_Manual:... First off; "window" seems kinda pointless to me, I think about using it sometimes but in Greasemonkey it doesn't really exist, so I guess it is simply ignored.
The problem is the function reference in the setInterval(), where you are passing the actual function, which should be in quotes if it did work, as it's written it runs immediately and returns "undefined" probably. You need to pass a reference to the function...
Also I think you should stop the timer interval by giving it a name then clearing it when it hits 0...
Or it my be easier to use setTimeout() within the function. |
|
Oct 26, 2007
|
Topic: Ideas and script requests / Auto Stop? I was looking for a script that pretty much just acted like I was clicking the stop button or pressing escape every few seconds. Any help would be appriciated. |
|
Oct 26, 2007
|
Topic: Script development / Multi-language script (do you want to translate?) For ogame.jp 1. 技術数
I'm brasilian. Soooo it may have some mistakes.
|
|
Oct 25, 2007
|
Topic: Ideas and script requests / SOMEBODY HELP!!! Myspace Play Increaser Script
|
|
Oct 25, 2007
|
Topic: Script development / Scope of Input Field -- Please Help! Hello all, I am trying to assign an input value to a variable. Please look at my
This works outside of greasemonkey
//BEGIN Script
else if (time == "0:00"){
}
|
|
Oct 25, 2007
|
Topic: Ideas and script requests / IMDB ---> Library search link I currently use a script that, when looking at a book at Amazon, will place a link to my local library for said book. (http://userscripts.org/scripts/show/618) I would like to have the same functionality when looking at movies on IMDB. Thanks! Mark |
|
Oct 25, 2007
|
Topic: Script development / einfügen |
|
Oct 25, 2007
|
Topic: Script development / einfügen Wie kann ich das staemme script runterladen und einfügen ??? |
|
Oct 25, 2007
|
Topic: Script development / Putting html code into a script or at least appending it to the page Thanks for your help so far, but I got it figured out. And by seperate library I meant:
This fixed the problem I was having:
document.body.appendChild(element);
Thanks for your help though. Finished my script :).
|
|
Oct 25, 2007
|
Topic: Script development / Putting html code into a script or at least appending it to the page What do you mean by separate library? Can you copy that function and add it to your script so that you can edit it?
|
|
Oct 24, 2007
|
Topic: Script development / Putting html code into a script or at least appending it to the page Yeah, its an id.
But you see.
GetQuickAddContactDetail() Now if I I simply call that script it will spit out an error saying addQuickInput is not defined.
---input type="hidden" id="addQuickInput" value="vff"/---- if the site that I'm on happens to have the code above then my script works perfect,
|
|
Oct 24, 2007
|
Topic: Ideas and script requests / Need script, please help This code didn't work... I included the site, and pasted your code, but it won't work... |
|
Oct 24, 2007
|
Topic: Ideas and script requests / Need script, please help I'm assuming, by pop-up, you mean alert-box, which will prevent re-direction? This will also make your window flash on the taskbar, I think. You need to start a new script, set the appropriate include site, and then paste the following into your script source:
window.setInterval(checkTimers, 500);
function checkTimers() {
for(var i=0; i < timera.length; i++){
if(timera[i] < 2) alert ("Time's Up!");
}
}
|
|
Oct 24, 2007
|
Topic: Ideas and script requests / Remove the annoying messages above the script list. I take from thi that you want to remove the "Site News" from the front page? If this is the case, then maybe you can simply bookmark http://userscripts.org/?page=1 instead of http://userscripts.org/. This does the trick for me. |
|
Oct 24, 2007
|
Topic: Script development / Putting html code into a script or at least appending it to the page "addQuickInput" above is a document element id, not a JavaScript variable. Form data is submitted to the server, and adding a hidden form input won't help your client-side script at all.
|
|
Oct 24, 2007
|
Topic: Script development / Setting the doctype with DOM methods document.doctype : read-only - DOM level 2 doesn't support editing the document type declaration.
|
|
Oct 24, 2007
|
Topic: Script development / Putting html code into a script or at least appending it to the page I've been making this annoying script.
I've never touched javascript before so I really have no idea how
---input type="hidden" id="addQuickInput" value="vff"/---- It says I need to define "addQuickInput." And shows some error.
Thanks :) |