topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Monday April 29, 2024, 11:27 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Lefax32 [ switch to compact view ]

Pages: [1]
1
Living Room / Re: bookmarklet javascript - modfication help
« on: December 19, 2009, 11:38 PM »
Actually, I found another one that will fill in the text fields, but only with one word for every field: testing. It also fills in an email addy but I don't need that.

Because I don't really need all the other functions in the previous one I posted is there a way to expand on this one, and add more words after testing, and use each word in order listed to fill in text fields.

One other thing, I'd like to fill in only the fields I have highlighted/selected (otherwise the lot).

javascript:function%20ROIoiW(){var%20i=0,j,A='testing',D,E,F=document.forms;while(i<F.length){E=F.elements;for(j=0;j<E.length;j++){D=E[j];if(D.type=='text'){D.value=(D.name.toUpperCase().indexOf('MAIL')!=-1)?A+'@example.com':A}}i++}}ROIoiW();void(null)

http://www.minezone....testing-bookmarklet/


Anyway, thanks if anyone can help me.

2
Living Room / Re: bookmarklet javascript - modfication help
« on: December 18, 2009, 07:33 PM »
Okay thanks for the info. Maybe there's a program that can translate it for you? I always thought that writing those bookmarklets in one line looks like a very confusing and tricky job.


Also, I think I was probably a bit vague about what I wanted to do.

What I want is for the words from this part below, to be used in order. So if there are 10 text box fields, I want the first 10 words to be used to fill those fields and in the order they are listed. ATM it will get 10 words randomly to fill those 10 text box fields.

4.  blurb: 'phpBB is a free, open source Internet community application, with outstanding discussion forums and membership management. Written in the PHP scripting language, and making use of the popular MySQL database, phpBB is a standard among web hosting companies throughout the world, and is one of the most widely-used bulletin board packages in the world. phpBB short-circuits the need for you to be a web development master in order to create and manage massive online communities',


I also tried changing "getRand" to "getOrder" as well as removing all the words Random. Didn't work either.

3
When you hover over a running task on the taskbar, Windows shows a small thumbnail preview of all windows in that application.
Now, what if you could click a pin button any of these preview windows that stopped it from closing. You could keep an eye on another windows progress (moving files/ music/video / games etc) while viewing another application fullscreen. Kind of like PIP.


edit: Maybe this wouldn't work as it would get in the way of hovering over another running application to see it's preview.

So another idea would be that if you click a shortcut on any running task it will display a copy of it's windows thumbnail preview in a predefined location on your monitor.



4
I use the displayswitch.exe (type in start menu search)
pic

I only have 2 monitors though and it works for that perfectly fine (options to pick between monitor, extend or duplicate). But, I have no idea though if it will give more options for 3 displays.

5
Thanks guys, will look into your suggestions as well.  8)



6
Living Room / Re: bookmarklet javascript - modfication help
« on: December 18, 2009, 12:31 PM »
Thankyou, that is much easier to look at. I didn't realize that bookmarklets could be made from that format. I thought they were actually written as they are (1 line). 

7
Not sure, I may have overlooked that option as I was trying so many. Thanks for the tip though, I'll have another look at it.

8
Living Room / bookmarklet javascript - modfication help
« on: December 17, 2009, 04:30 PM »
Hi, can anyone help with modifying this bookmarklet code?

What it does is fill in the words randomly on any field. But I want it to do it in order as they are listed.

I tried a few guesses, like removing words 'random', but I really don't have any idea!

Thanks if you can help.  :D


javascript:var%20auto%20={names:%20'Steve%20Buscemi%20Catherine%20Keener%20Dermot%20Mulroney%20Danielle%20Zerneck%20James%20LeGros%20Rica%20Martens%20Peter%20Dinklage%20Kevin%20Corrigan%20Hilary%20Gilford%20Robert%20Wightman%20Tom%20Jarmusch%20Michael%20Griffiths%20Matthew%20Grace%20Ryan%20Bowker%20Francesca%20DiMauro',blurb:%20'phpBB%20is%20a%20free,%20open%20source%20Internet%20community%20application,%20with%20outstanding%20discussion%20forums%20and%20membership%20management.%20Written%20in%20the%20PHP%20scripting%20language,%20and%20making%20use%20of%20the%20popular%20MySQL%20database,%20phpBB%20is%20a%20standard%20among%20web%20hosting%20companies%20throughout%20the%20world,%20and%20is%20one%20of%20the%20most%20widely-used%20bulletin%20board%20packages%20in%20the%20world.%20phpBB%20short-circuits%20the%20need%20for%20you%20to%20be%20a%20web%20development%20master%20in%20order%20to%20create%20and%20manage%20massive%20online%20communities',password:%20'secret',fillerup:%20function()%20{var%20all_inputs%20=%20document.getElementsByTagName('input');var%20all_selects%20=%20document.getElementsByTagName('select');var%20all_textareas%20=%20document.getElementsByTagName('textarea');for%20(var%20i%20=%200,%20max%20=%20all_selects.length;%20i%20<%20max;%20i++)%20{var%20sel%20=%20all_selects;%20if%20(sel.selectedIndex%20!=%20-1&&%20sel.options[sel.selectedIndex].value)%20{continue;%20}var%20howmany%20=%201;%20if%20(sel.type%20==%20'select-multiple')%20{%20var%20howmany%20=%201%20+%20this.getRand(sel.options.length%20-%201);}for%20(var%20j%20=%200;%20j%20<%20howmany;%20j++)%20{var%20index%20=%20this.getRand(sel.options.length%20-%201);sel.options[index].selected%20=%20'selected';}}for%20(var%20i%20=%200,%20max%20=%20all_textareas.length;%20i%20<%20max;%20i++)%20{var%20ta%20=%20all_textareas;if%20(!ta.value)%20{ta.value%20=%20this.getRandomString(10)+%20'\n\n'+%20this.getRandomString(10);}}for%20(var%20i%20=%200,%20max%20=%20all_inputs.length;%20i%20<%20max;%20i++)%20{var%20inp%20=%20all_inputs;var%20type%20=%20inp.getAttribute('type');if%20(!type)%20{type%20=%20'text';%20}if%20(type%20==%20'checkbox')%20{inp.setAttribute('checked',%20'checked');}if%20(type%20==%20'radio')%20{var%20to_update%20=%20true;var%20name%20=%20inp.name;var%20input_array%20=%20inp.form.elements[inp.name];for%20(var%20j%20=%200;%20j%20<%20input_array.length;%20j++)%20{if%20(input_array[j].checked)%20{to_update%20=%20false;continue;}}if%20(to_update)%20{var%20index%20=%20this.getRand(input_array.length%20-%201);input_array[index].setAttribute('checked',%20'checked');}}if%20(type%20==%20'password')%20{if%20(!inp.value)%20{inp.value%20=%20this.getPassword();}}if%20(type%20==%20'text')%20{if%20(!inp.value)%20{if%20(inp.name.indexOf('name')%20!=%20-1)%20{inp.value%20=%20this.getRandomName()%20+%20'%20'%20+%20this.getRandomName();}%20else%20if%20(inp.name.indexOf('email')%20!=%20-1)%20{inp.value%20=%20this.getRandomString(1)%20+%20'@example.org';}%20else%20{inp.value%20=%20this.getRandomString(1);}}}}},getRandomString:%20function%20(how_many_words)%20{if%20(!how_many_words)%20{how_many_words%20=%205;}if%20(!this.words)%20{this.words%20=%20this.blurb.split('%20');}var%20retval%20=%20'';for%20(var%20i%20=%200;%20i%20<%20how_many_words;%20i++)%20{retval%20+=%20this.words[this.getRand(this.words.length)%20-%201];retval%20+=%20(i%20<%20how_many_words%20-%201)%20?%20'%20'%20:%20'';}return%20retval;},getRandomName:%20function%20()%20{if%20(!this.split_names)%20{this.split_names%20=%20this.names.split('%20');}return%20this.split_names[this.getRand(this.split_names.length)%20-%201];},getPassword:%20function%20()%20{if%20(!this.password)%20{this.password%20=%20'secret';}return%20this.password;},getRand:%20function%20(count)%20{return%20Math.round(count%20*%20Math.random());}};%20auto.fillerup()

9
I am looking for a program that will backup folder/files (eg Firefox Profiles). Then when I choose to Restore my backup (to the same location it was backed up from), it will remove (delete) all files that currently exist in the location they will be restored to before restoring.

I can not find a backup/restore program that actually removes all files/folder in the location the backup is to be restored to. There are only options to either replace any files that match or keep current files as well as restored files. But neither of these actually remove any newly created files with different names that do not exist in my backup.

I have been testing all the Backup Programs I can get my hands on. So far none of them do this that I can work out. I have these programs installed on my pc right now:

PC Backup Pro
Cyberlink PowerBackup
Backup4All Professional 4
KLS Backup 2009
Eazy Backup
Acronis True Image Home
NikSaver
Genie Backup Manager Home 8.0
Reflect
Novosoft Office Backup

I guess I restore differently to the norm. But I prefer to actually remove any files/folders in the restore location before restoring my backup.

Does anybody know if there is a backup/restore program that will do this?


 

10
General Software Discussion / Re: Directory Opus 9
« on: October 10, 2009, 06:32 AM »
Thanks for the help tanis that works exactly as I was after.  :Thmbsup:

11
General Software Discussion / Re: Directory Opus 9
« on: October 09, 2009, 11:14 AM »
Oh gosh oops, I only saw 4wd's reply when I posted my last.  :-[ I didn't see the posts by Innuendo and tanis424 which pretty much answered my new questions.  :-[
I was just reading tomis reply now, wondering where he quoted tanis from  :-[ :-[ :-[

Thanks guys for the help and sorry for not looking properly.


And thanks tanis that info is great. I got the multifunc to work on the drives, just wondering can that be applied to a favorites folder to get the right click/left click actions, somthing like this :

Go "v:media"=multifunc  

or does multifunc only apply to drives?



btw 4wd I love the ideas of your drive bar. I set the root menu up to add program files / program files x86 / program data as well. Love it, thanks for sharing.  :P



12
General Software Discussion / Re: Directory Opus 9
« on: October 09, 2009, 06:25 AM »
Thanks so much 4wd, that's awesome.  ;D

Just wondering can I assign that same function to ( left click = left lister / right click = right lister) to any button? eg on a button made to go to my favorite folder?


eta found it. Also, is there a thread here, or a forum somewhere, where people share buttons / commands that they have made?



13
General Software Discussion / Re: Directory Opus 9
« on: October 08, 2009, 01:58 PM »
Hey, I am hoping someone might be able to help with this. I am completely new to Dopus. I was reading the online tutorial to see what I can do. Came across this section:

The Drive Buttons toolbar item will generate a dynamic list of all devices in the system, automatically adding and removing them as required. For example, if a new network drive is mapped or a USB memory card is inserted it will appear in your toolbar ready to use. You can have multiple sets of drive buttons and are able to filter each by drive letters and types of device. In a dual-lister window the drive buttons will affect the Source side by default, but you can change this so that a left-click on a drive always opens it on the left and a right-click opens it on the right.
http://www.pretentio...me.com/opus/bf1.html

Got excited, but it ended there without an explanation of how to do it. I have the "Drives" toolbar, and I have messed around a bit, but can't find anything to get the right click on a drive button to open it in the right lister. Always brings up a context menu. Left click on a drive button will open that drive on whatever lister is focused.


btw I have interpreted the explanation to mean:
On the "Drives" toolbar:
- left click on a drive button opens in the left lister
- right click on a drive button opens in the right lister

Is that right? Has anyone here got that working?


14
Thanks for the handy tips. I tried the Live add-in, but it seems to slow my messenger down. If I double click on a contact it won't open the chat window for about 10seconds. Tried installing twice now. But it only happens to me, so I will try it again, maybe when I reinstall windows.

Thanks for the link to the forum, I'll ask about it there and see what they say. 


 

15
What I think would be handy is to have your contacts names (or at least some favorites) listed in the menu that opens when you right-click on the tray icon.

When you select the name of a contact it would open the message window for that contact.

This would save opening opening the main contacts window and then finding the contacts, making it easier to start a conversation with those you frequently talk to.

It would also reduce the clutter on the taskbar as you can completely close the chat windows, yet easily access them again when needed.

Well, I don't know if this is possible - modifying Windows Messenger, but it sure would be handy. :)


16
Yeah sorry about being so slow. I kinda forgot about the program for a little while until I found another program that let me make hotkeys into mouse shortcuts (hotkeyp).

Thanks for the new program. Looks interesting, going to try it out.

17
Hi,

I have an idea since I bought a new printer. (Canon MP620).

I am using this printer on a Wireless Network.

Since I will often be in a different room far away from the printer, I'd like an easy way to check the connection status (is it turned on or off?).

I have fiddled with all the program bits and pieces that came with the printer, and searched the net but can't find anything like I'm after.


What I'd Like:

Printer Tray icon that always sits in Windows System Tray. It will visually change (eg colour) to indicate it's connection status.

-When Printer is powered on, the icon either appears normal or may turn green.
-When Printer is powered off, the icon will display a red cross through it or turn red.

Possible Advanced features.
-When Printer is doing a job, it turns orange.
(On hover over a quick notification of how many print jobs are in que.)

Left Click or Right Click
- Option to turn Printer Power off
- Option to choose default printer on Network
- Option to Print
- Option to scan
- Option to view print jobs

(Don't know if this is even possible for a third party program to control these type of settings, and if it's something that can only be made by the manufacturer to match each unique printer model).



18
I found the best extension for zooming in and out on web pages. Those who prefer shortcut operations with the mouse and like to zoom in and out a lot will love it.  Thmbsup

Right-Click + Scroll Wheel Up = Zoom in
Right-Click + Scroll Wheel Down = Zoom out
Right-Click + Left-Click = Resets Zoom
Right-Click + Middle Click = Hides / Shows all toolbars but tab bar remains.

Mouse Zoom
https://addons.mozilla.or.../en-US/firefox/addon/2244

19
I like it as it is, but I'm not too sure what you mean exactly. I only run one search at a time, and haven't had any need to run another instance I don't think. BTW, I think I prefer just one icon in my tray, I don't like it cluttering.

PS Sorry for the late reply.
 :-[



20
Yes, I am still here, haven't run off! Thanks so so much for this wonderful little program and all your help and updates.  :-*

I've been having issues with Logitechs' Setpoint Software. If I create a shortcut (I do it before I set it in Pasty) in Logitech Setpoint for a mouse button, it adds it, I save and quit. Then I reopen to check its still there and it is. But it keeps remembering and acting on the old shortcut I had in there, which was CTRL-W (I used it to close the tabs in Firefox).  :huh:

But this is to do with Setpoint and not Pasty. Pasty works great. I'll keep trying to get Setpoint to co-operate.

Oh I'm curious, does Pasty run on startup?


21
 :-[ sorry, I was going to come back and reply, I was just a bit too tired when I looked in to get the keyboard - (HDTV). lol

Okay, I used AutoHotKey. I have no idea how I even managed to get as far as I did, because I have never used it before and am not familiar with programming!

This is what I put in it,


#O::
{
  send ^c
  send #F
   send ^v
}   
Return



Hey, PASTY works, really well that is so awesome.  :Thmbsup: Did you just add the Start Search thing? Thank You!

It' not drag and drop, but that's probably better because drag takes a little while to open the start button. I should be able to put the shortcut key in a mouse button as I don't always have the keyboard handy. Going to test it out some more now.

Thanks again! 



22
Oh I'm trying this myself. It's a bit tricky.

Idea: Shortcut key -> copies contents to clipboad -> Opens Windows Search -> Pastes clipboard contents -> selects enter.

But it's not working in Win7... worked OK in XP... Can I ask for help here, of why it would not work on Win7? Or is this the wrong place?

23
My top extensions:

1. TabKit: Vertical and Grouped tabs. Didn't like it at first and found setting it up a bit confusing, but after giving it a go for a while I found it to be much more efficient for managing tabs. I get completely lost if I ever use a horizontal tab bar now.

2. Web Search Pro: Just the best thing ever! I make hundreds of searches a day on hundreds of sites now, because it's just too fast and easy!

3. Text Link: Double clicking text links to open in new tab ~ Don't know why it's not a default Firefox feature!

4. Adblock Plus

5. Page Zoom Buttons - I use the red one - allows you to scroll up / down over it to zoom in and out.

EDIT: Found another extension for zooming in and out, which is so much better. Special mouse shortcuts so no need to go to a toolbar to activate.

Mouse Zoom
https://addons.mozilla.or.../en-US/firefox/addon/2244

Right-Click + Scroll Wheel Up = Zoom in
Right-Click + Scroll Wheel Down = Zoom out
Right-Click + Left-Click = Resets Zoom
Right-Click + Middle Click = Hides / Shows all toolbars but tab bar remains.


6. PageZipper: Awesome! No more clicking the next button at the bottom of a page, just keep scrolling down as it joins each "Next" page seamlessly to the bottom of the previous one.
And it looks like it's still be developed to add new features. A toolbar has just been added that allows you to jump back and forth to the next / previous images on a web page. And also tells you what number page you are on, and how many pages have been zipped.

7. Wired Marker - I only use it to Right-Click and highlight words with one of my saved colours. It's great because it's permanent.

8. Google Icon - Adds the site favicon/icon to next to the link in the Google Search Results. I honestly don't know why Google don't have this as a default feature! It's so much easier to look at Google Search results, and easily identify known websites.

24
1. DRAG DROP TO WINDOWS START MENU SEARCH BOX: On Windows 7, I’d like to be able to drag selected text from any application (word, browsers etc) and drop it into the Windows Search Box (in Start Menu). When I try this, I select and drag the text, hover over the start button to open it and drag the text to the Search Box, but a ‘circle with slash’ icon appears, blocking me from dropping the text.

2. DRAG DROP TO TASKBAR SEARCH ICON: Also, to expand on this idea, I think this would be even handier -  to be able to drag the selected text and drop it on a 'search' icon on the taskbar. That would automatically do the search in a) Windows Start Menu Search Box (and automatically pop open the start menu to show the results!) or b) Windows Search Window (and automatically open the results).

3. CONTEXT MENU ITEM TO SEARCH FOR WORD: [ETA] I've just thought another way to conduct the search would be by highlighting the word and right-click context menu will show a menu item for "Search with Windows Search". Then automatically do the search on that word and display the results.
[Bonus, would be if I could search with a "Saved Search" in Windows Search Window (you can save the folders  you want to search. Just discovered it!) ]

Does anyone think this could be achieved at all? Or is there a script that already exists for it?
I’d really appreciate any help,  even if you have some tips on how to go about it (if it’s indeed possible).

Thanks

Pages: [1]