webDOM DownloadsWebsite Plugins - ordered by last updatewebDOMinator is the ONLY Friend Adder and Mass Messenger with support for over 70 social networking sites. Expand your Social Media Marketing Campaign and do it all on auto pilot. |  |
| Mixx is a perfect small-mid sized community. There are currently no bots for Mixx, so you'll have an advantage. I've also included an auto voter script that will vote up the top 10 things on whoever's profile you send it to. |
|
| General Social Bookmarking |
Profile Last updated: 06/26/2010 6:43 PM |
Featured Scripts and Actions for Mixx.com
To use any of these scripts in webDOM, just click "View Code..." then click the "Copy" icon below the script code.
Mixx Auto Voter
This script allows you to vote up the top submissions on whoever's on your info list
navigateQuick Reference for "navigate" Click on command to see examples & comments Browser Level Commands Usage: navigate:url Description: Makes the browser navigate to the URL specified.:www.mixx.com/users/^ wd.curinfoQuick Reference for "wd.curinfo" Click on command to see examples & comments WebDOM Program Variables Description: Returns the value of the currently selected User ID or item from the info list.
varQuick Reference for "var" Click on command to see examples & comments Variable Setting Commands Usage: var:variable-name = expression Description: Sets the variable specified variable-name to expression. Expression can be any concatenated string, literal text, or Mathematical expression, and can include other variables, DOM elements, or webDOM settings.:i=1
loopQuick Reference for "loop" Click on command to see examples & comments Control Operators and Clauses Usage: loop:condition;loop-condition;command Description: Starts a loop block which will loop until loop-condition is no longer satisfied. This is much like while loops in most standard programming languges. The first condition can be set to (true or false), and the loop-condition uses the conditional operators (<<, >>, ==, !=, <=, >=, , and ) to satisfy the condition. command is the command that's carried out at the end of the loop. Often times loops include incrementing a variable as the command at the end of the loop. An example loop would be "loop:true;var.i<<30;var:i=var.i+1" which would loop until the variable "i" was over 30. When inside of a loop, the variable being used can be referenced by using "[]" brackets i.e: "dom.a.[var:i].innerhtml=foo" would set all of the link names in the loop range to "foo". All loops must include an endloop call afterwards at risk of looping infinitely. :true;var.i<<10; varQuick Reference for "var" Click on command to see examples & comments Variable Setting Commands Usage: var:variable-name = expression Description: Sets the variable specified variable-name to expression. Expression can be any concatenated string, literal text, or Mathematical expression, and can include other variables, DOM elements, or webDOM settings.:i=var.i+1
wait:1
ifQuick Reference for "if" Click on command to see examples & comments Control Operators and Clauses Usage: if:condition1:condition2 Description: Starts an IF block. condition1 can be either (true, false, exists, !exists, empty, or !empty) where !exists and !empty mean "doesn't exist" and "isn't empty". condition2 is a condition specified by conditional operators (<<, >>, ==, !=, <=, >=, , and ) if condition1 is set to true or false. If condition1 is set to empty, or exists, condition2 need only include a DOM element property or variable. An example would be: "if:exists:dom.a.1" or "if:true:dom.a.1.innerhtml==foo" or even "if:false:foodom.a.1.innerhtml". There are many ways to use the two conditional statements to specify the condition needed. All if statements must come with a following endif statement. :true:dom.button.[ varQuick Reference for "var" Click on command to see examples & comments Variable Setting Commands Usage: var:variable-name = expression Description: Sets the variable specified variable-name to expression. Expression can be any concatenated string, literal text, or Mathematical expression, and can include other variables, DOM elements, or webDOM settings.:i].title==Vote for
clickQuick Reference for "click" Click on command to see examples & comments DOM Level Commands Usage: click:element Description: Clicks a DOM element specified by element.:dom.button.[ varQuick Reference for "var" Click on command to see examples & comments Variable Setting Commands Usage: var:variable-name = expression Description: Sets the variable specified variable-name to expression. Expression can be any concatenated string, literal text, or Mathematical expression, and can include other variables, DOM elements, or webDOM settings.:i]
endifQuick Reference for "endif" Click on command to see examples & comments Control Operators and Clauses Usage: endif Description: Ends an If block. All endif statements must come with an If statement before it.
endloopQuick Reference for "endloop" Click on command to see examples & comments Control Operators and Clauses Usage: endloop Description: Ends a loop block. All endloop commands must come after an accompanying loop command. 
|