webDOMinator is the ONLY Friend Adder and Mass Messenger with support for over 100 social networking sites. Expand your Social Media Marketing Campaign and do it all on auto pilot.
Quick Reference for "#name" Click on command to see examples & comments
Script Level Commands Usage: #name:text Description: Sets the name of the script to text. This is a setting used for using scripts in the Action Toolbox. The name is used as a main handle to call the action by. It's used as the caption on the Button the script is placed on in the Toolbox. It's also used when calling the action in script using the "doaction" command.:Wall Comment
#title
Quick Reference for "#title" Click on command to see examples & comments
Script Level Commands Usage: #title:text Description: Sets the title of the script to text. This is a setting used for using scripts in the Action Toolbox. The title is used as a brief description of the script and shows up when the user hovers their mouse over the action button.:Post to the Wall of a facebook user account
navigate
Quick 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.:http://www.facebook.com/profile.php?id=^wd.curinfo
Quick 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. softwait
Quick Reference for "softwait" Click on command to see examples & comments
Script Level Commands Usage: softwait:condition Description: Waits using a timer, and breaks out of the script allowing other events to happen. Once the condition is met, it returns to the waiting script and continues. This is good for use with pages which load elements using javascript which you want to load before interacting with them. condition can be a number of seconds to wait or a Minion condition.:1
dom.textarea.status.value=wd.pm.body
Quick Reference for "wd.pm.body" Click on command to see examples & comments
WebDOM Program Variables Description: Returns the body of the currently loaded message in the PM section. dom.input.Share.onclick=
click
Quick 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.input.Share
Share's a URL on facebook with the currently selected user ID. Asks you for the URL once at the beginning. This is later changeable through the "Opts." button underneath the QA script area.
Quick Reference for "#name" Click on command to see examples & comments
Script Level Commands Usage: #name:text Description: Sets the name of the script to text. This is a setting used for using scripts in the Action Toolbox. The name is used as a main handle to call the action by. It's used as the caption on the Button the script is placed on in the Toolbox. It's also used when calling the action in script using the "doaction" command.:Share Link
#title
Quick Reference for "#title" Click on command to see examples & comments
Script Level Commands Usage: #title:text Description: Sets the title of the script to text. This is a setting used for using scripts in the Action Toolbox. The title is used as a brief description of the script and shows up when the user hovers their mouse over the action button.:Share a Link with the currently selected user on facebook.
input
Quick Reference for "input" Click on command to see examples & comments
Script Level Commands Usage: input:global-variable:description Description: Will prompt the user for an input with description and store the information into the global-variable named. i.e: input:file:What file would you like to store to?:linkurl:Input a Link URL to share.
navigate
Quick 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.:http://www.facebook.com/profile.php?id=^wd.curinfo
Quick 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. softwait
Quick Reference for "softwait" Click on command to see examples & comments
Script Level Commands Usage: softwait:condition Description: Waits using a timer, and breaks out of the script allowing other events to happen. Once the condition is met, it returns to the waiting script and continues. This is good for use with pages which load elements using javascript which you want to load before interacting with them. condition can be a number of seconds to wait or a Minion condition.:1
click
Quick 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.a.pub=2309869772
softwait
Quick Reference for "softwait" Click on command to see examples & comments
Script Level Commands Usage: softwait:condition Description: Waits using a timer, and breaks out of the script allowing other events to happen. Once the condition is met, it returns to the waiting script and continues. This is good for use with pages which load elements using javascript which you want to load before interacting with them. condition can be a number of seconds to wait or a Minion condition.:data[url]<in>dom.body.1.innerhtml
dom.input.data[url].value=global.linkurl
click
Quick 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.input.Attach
softwait
Quick Reference for "softwait" Click on command to see examples & comments
Script Level Commands Usage: softwait:condition Description: Waits using a timer, and breaks out of the script allowing other events to happen. Once the condition is met, it returns to the waiting script and continues. This is good for use with pages which load elements using javascript which you want to load before interacting with them. condition can be a number of seconds to wait or a Minion condition.:<INPUT class=UIButton_Text type=submit value=Share><in>dom.body.1.innerhtml
click
Quick 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.input.Share
Automatically invites all of your facebook friends to your group. Must be on the group homepage when you start the script. If you want to include a message, the script is set up to use the Body from the messages section.
Quick Reference for "#name" Click on command to see examples & comments
Script Level Commands Usage: #name:text Description: Sets the name of the script to text. This is a setting used for using scripts in the Action Toolbox. The name is used as a main handle to call the action by. It's used as the caption on the Button the script is placed on in the Toolbox. It's also used when calling the action in script using the "doaction" command.:Group Invite
click
Quick 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.a.Invite People to Join
pagewait
Quick Reference for "pagewait" Click on command to see examples & comments
Script Level Commands Usage: pagewait Description: Makes the scripting engine wait until the next page finishes loading before carrying out the next command. clickall
Quick Reference for "clickall" Click on command to see examples & comments
DOM Level Commands Usage: clickall:element-identifier Description: Clicks All DOM elements specified by element-identifier.:dom.a.url(http://profile.ak.fbcdn.net
loop
Quick 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.
Quick 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.a.Next
wait:1
clickall
Quick Reference for "clickall" Click on command to see examples & comments
DOM Level Commands Usage: clickall:element-identifier Description: Clicks All DOM elements specified by element-identifier.:dom.a.url(http://profile.ak.fbcdn.net
endloop
Quick 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. dom.textarea.invite_msg.value=wd.pm.body
Quick Reference for "wd.pm.body" Click on command to see examples & comments
WebDOM Program Variables Description: Returns the body of the currently loaded message in the PM section. click
Quick 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.input.Send Invitations
Use webDOMinator as a fully programmable friend adder, mass messenger, web scraper, and mass mailer on sites like MySpace, Facebook, Friendster, Tagged, Tagworld, Digg, Twitter, Yahoo, Youtube, StubmleUpon, Reddit, Del.icio.us, Mixx, GarageBand Mixi, Mog, Dopetracks, Fropper, Hi5 and basically any social network or web page that you want to interact with automatically. Promote your music, your product or your event with this powerful marketing tool. More flexibility than Badder Adder or Friend Blaster Pro. Whether you're a band or someone looking for a good affiliate marketing tool, we offer the best in online social marketing and promotion. Enjoy the 14 day free trial on us!