|
|
Browse by Tags
All Tags » chickenfoot (RSS)
Showing page 1 of 2 (13 total posts)
-
There's also a new Firefox icon on the results/text tab that I use to trigger a lookup of patient results with my web based laboratory interface.
-
This is an unexpected benefit of Chickenfoot.
One of my lab vendors has a web interface to allow me to view historical results. But after a period of inactivity, they log me out .. and so I have to login all the time during the day.
With a chickenfoot script on their login page .. as soon as they login me out taking me to their login page, ...
-
Search ...You need to write a chickenfoot script and trigger it on this page to run your custom searches. This also requires Firefox.
Number: 2525
Street: H Street
Suburb: Bakersfield
City: Ca
Zip: 93301
Number&Street: 2525 H Street
City&State: Bakersfield, Ca 93301
This is a brief explanation as to how the searchprovider.html script ...
-
This script searches the http://www.whitepages.com to find a phone number in USA ( and maybe Canada ). It requires Build 194 beta-3 as it adds a couple of more fields to display to make the script easier to write.try { fname = find(/First Name: (.*)/).groups[1]; }
catch(e) {
fname = '';
}
try { lname = find(/Name: (.*)/).groups[1]; ...
-
This searches the New Zealand whitepages to find the telephone number for a patient. It is called by the Firefox icon on the patient's "Contact & Portal" details.nameinit = find(/NameInitial: (.*)/).groups[1];
town = find(/Town: (.*)/).groups[1];
city = find(/City: ...
-
Here's a previously published script that searches for a USA provider's map on yahoo.com. Note that you should test this first manually on yahoo.com first as it may rely on some cookies sent by yahoo.// This chickenscript grabs the address details
// and brings up the appropriate map in the USA. Change "United States" to ...
-
Here's a script that brings up the New Zealand zip code and map for a provider ( Firefox icon on the providers page ) on new tabs.
try { number = find(/Number: ([\w\s]+)/).groups[1]; }
catch(e) {
number = '';
}
try { street = find(/Street: (.*)/).groups[1]; }
catch(e) {
street = '';
}
try { suburb = find(/Suburb: ...
-
This is a script that searches for the New Zealand postcode using the above link that is created by the Firefox icon on the patient detailstry { number = find(/Number: ([\w\s]+)/).groups[1]; }
catch(e) {
number = ''; // a pair of single quotes here
}
try { street = find(/Street: (.*)/).groups[1]; }
catch(e) {
street = '';
}
try { ...
-
This is a sample script to use on the above link that comes up when you click on the firefox icon in the prescribing module. It brings up a page on rxlist.com where you can display drug information, patient handouts etc.
// Search for drug on rxlist.com
drugname = find(/Drugname: ...
-
If you want to learn more about chickenfoot, there's a google video http://video.google.com/videoplay?docid=-8967914974980683249 which takes about an hour to view.
1
|
|
|