topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Thursday November 13, 2025, 4:57 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

Recent Posts

Pages: prev1 ... 98 99 100 101 102 [103] 104 105 106 107 108 ... 225next
2551
Post New Requests Here / Re: coded needed launch url's
« Last post by 4wd on February 06, 2014, 09:10 PM »
I honestly despair at moments like this.

1) Read a URL from the text file
2) Execute Firefox, (or Chrome), with it as an argument.
3) Go to step 1

Exactly how is this any different from what you are doing for IE?

ie. Replace this:

Code: Autohotkey [Select]
  1. if (A_index = 1)
  2.   wb.Navigate2(URL . A_LoopReadLine, navOpenNewForegroundTab) ; Navigate
  3. else
  4.   wb.Navigate2(URL . A_LoopReadLine, navOpenInBackgroundTab) ; Navigate

with this:

Code: Autohotkey [Select]
  1. Run, Firefox.exe -new-tab A_LoopReadLine, C:\Program Files\Mozilla\Firefox

NOTE: Because I don't use AHK, YOU may have to tweak that line.

I don't use AHK
Code: Autohotkey [Select]
  1. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. #Warn  ; Recommended for catching common errors.pongo ; inicial por error al compilar sobre esta lĂ­nea.
  3. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  5.      
  6. FileSelectFile, filepath
  7. loop, Read, %filepath%
  8. {
  9. Run, Firefox.exe -new-tab A_LoopReadLine, C:\Program Files\Mozilla\Firefox
  10. sleep 100
  11. }
  12. return

2553
Post New Requests Here / Re: coded needed launch url's
« Last post by 4wd on February 05, 2014, 10:20 PM »
Your original question was that you wanted to open a list of URLs in Firefox, have you tried it?

firefox.exe -new-tab URL1
firefox.exe -new-tab URL2
etc
etc
etc

Do you want to open a list of URLs as per your original question or do something completely different?
2555
Say you're saying that after all the, literally, minutes I spent slaving over its interface, you don't want to see it?
2556
General Software Discussion / Re: Malwarebytes is moving away from lifetime licenses
« Last post by 4wd on February 05, 2014, 06:57 PM »
Am I wrong about that?  Is today's lifetime license good for 3 PCs?

Current Lifetime license is only good for 1 PC - as shown when purchasing.

2014-02-06 11_57_04.png
2557
Post New Requests Here / Re: coded needed launch url's
« Last post by 4wd on February 05, 2014, 06:52 PM »
You're opening a set of URLs, there's no need to automate Firefox - just call Firefox with the URL as an argument, (Firefox' commandline args).

Code: AutoIt [Select]
  1. Run(@comspec & ' /c path\to\firefox.exe "www.thisisatest.org"', '.', @SW_HIDE)

You can probably call Chrome the same way.
2558
Think I goofed there somewhere, I'll have a look at it.

Try the Explorer version in the meantime, seemed to work here.
2559
It's there by default:

2014-02-05 11_55_05.png
2560
Post New Requests Here / Re: idea - open certian files in folder
« Last post by 4wd on February 01, 2014, 10:46 PM »
but autotab, you can not control the time for individual screens, some need longer times.

Opening a set of files with their default program is easy, (you just tell the system to open the file), cycling between them is easy, (switch between visible windows), even having different times for each file isn't too hard - the problem I see is if you have multiple files of the same type.

eg. .xls - these will normally open as tabs within the Excel program, (IIRC).  So not only do you have to switch to Excel, you then have to find the correct tab and switch to it - and there's no guarantee that the method of switching to a particular tab is consistent across programs.

You may be able to force each default program to open each file in a new window, however this requires being able to pass a parameter to the program to tell it to do it, (possibly), and there's no guarantee that the same parameter will work for every default program.  To get around that, the easiest way would be to edit all the relevant filetypes so the default action is to open in a new window, (if the program allows multiple instances).
2561
Post New Requests Here / Re: idea - open certian files in folder
« Last post by 4wd on February 01, 2014, 08:42 PM »
Seems to me that something that opened selected files and then just sent Alt+Tab every x seconds is all that's needed.

The cycling of application windows means that for all intents and purposes, the computer is pretty much useless for normal input operations being reduced to a simple looping slideshow function.

Or a basic frontend to AutoTab, that allows you to:
1) choose files,
2) saves the list,
3) opens them,
4) then starts AutoTab.
2562
Post New Requests Here / Re: idea - open certian files in folder
« Last post by 4wd on February 01, 2014, 05:47 AM »
Why do you want to only have the files open for x amount of seconds?

To close the default program would mean either:
a) sending it a WM_CLOSE message and hoping it respected it without putting up "Are you sure?" requesters, or,
b) killing the task, which is a rather dirty way of doing it and considering you want it to do it ad infinitum would probably lead to an unstable system.

What is the ultimate purpose, maybe we can suggest something else.
2563
General Software Discussion / Re: Tips for Windows 8 (got any?)
« Last post by 4wd on January 28, 2014, 10:17 PM »
Typing filetype on the Start Screen should get you this, (I'm guessing since I use Classic Start Menu and type it in the search box):

2014-01-29 15_05_51.png

I use MPC-BC for all my media files, (XnView for images), all Metro apps have either been uninstalled or replaced with normal Desktop programs, (via association).
2564
v0.3.1.2 - here
2565
Via OzBargain:

2014-03-31 11_05_06.png

Requires 8GB of RAM and a 64-bit operating system, Windows 7 or higher, or Mac OS X 10.7 or higher.

Reportedly works with 4GB of RAM.

Another one for Curt's extensive software collection  :D
2566
General Software Discussion / Re: Firefox Bookmarks and Settings Sync?
« Last post by 4wd on January 23, 2014, 07:10 PM »
Edit: likely the encryption is messing it up.  I'm not sure what all these encryption protocols are.  So I don't really know if SyncPlaces supports them.

So you're using FTPSw (FTP over SSL/TLS) or S/FTPw (FTP over SSH) ?
2567
General Software Discussion / Re: Firefox Bookmarks and Settings Sync?
« Last post by 4wd on January 23, 2014, 01:05 AM »
The fly in the ointment seems to be if the FTP uses a port other than the default.  I cannot find anyplace to put the port number in SyncPlaces.

2014-01-23 18_03_05.png

That was after I chose FTP, BTW.
2568
General Software Discussion / Re: Firefox Bookmarks and Settings Sync?
« Last post by 4wd on January 22, 2014, 12:50 AM »
It's an old thread but what the hell ...

Just miss not being able to sync my own data to my own device (pogoplug, or my own web server). :(

FWIW, you could install ownCloud on your webserver and then enable its Mozilla Sync app - you can then enter the details of your sync server into Firefox/Pale Moon/Waterfox/etc - I just started doing it, (running ownCloud on a VPS).

2014-01-22 17_36_23.png

2014-01-22 17_38_02.png
2569
General Software Discussion / Re: The nightmare of the programmer languages
« Last post by 4wd on January 22, 2014, 12:29 AM »
I got it, but now I don't understand the images I obtain long time ago.

When i try to create the diskette unit A: i don't say any img file.
So why i have these strange extensions ?

dBase 5.0 Disk1 -> Disk4 ?

Have you tried renaming the extension and then mounting it?
2570
General Software Discussion / Re: What's thrashing my hard disk?
« Last post by 4wd on January 21, 2014, 05:26 AM »
Just as a matter of interest, Fujitsu transferred their HDD assets to Toshiba back in 2009 - your HDD is over 5 years old, (2008 model).  Even though SMART says it's fine, if it's your main computer or you use it heavily, I'd probably look at replacing the HDD now or in the near future.

Depends on your mindset of course - I generally wait til they go toes up  :)
2571
General Software Discussion / Re: What's thrashing my hard disk?
« Last post by 4wd on January 18, 2014, 11:57 PM »
^That's not on every version of windows, which was the reason for my query about OS version and such before I posted :) 

I'm assuming at least Windows Vista ... but I'm probably wrong  ;)
2572
General Software Discussion / Re: What's thrashing my hard disk?
« Last post by 4wd on January 18, 2014, 09:51 PM »
Given that I'm not a supergeek, something easy to use and easy to interpret, please.

Windows Resource Monitor - open a CLI or at the Start menu type resmon.exe, and then look at the Disk tab.

2014-01-19 14_44_35.png

You'll get the process, how much reading/writing it's doing, the priority, and the drive response time, (which can be a very good indication of whether there are bad sectors - high response = possible read/write error possibly also indicative of a drive fault as 40hz mentioned).
2573
Living Room / Re: Sci-fi novel now available from DC member kyrathaba!
« Last post by 4wd on January 15, 2014, 09:25 PM »
Next thing we'll know is that you'll be giving up your day job  ;D

Well done!  :Thmbsup:
2574
General Software Discussion / Re: burn solveigmm splitter file
« Last post by 4wd on January 15, 2014, 12:21 AM »
Just tried SolviegMM Video Splitter and in the originating VIDEO_TS you end up with the *.mlmix, (name depends on the VOB filename).

When you press the Split button, you're asked where to save the new "chopped" output file, (which defaults to MPEG2 TS format in a VOB), and it'll be called, for example, VTS_06_7_0001.VOB.

You'd then need to rename this to the same as the originating filename and substitute it back into the existing DVD structure, (and hope the navigation still worked correctly), or reauthor a new DVD using it as the source video.
2575
General Software Discussion / Re: need freeware .vob to MP4 converter
« Last post by 4wd on January 14, 2014, 04:49 PM »
You didn't mention whether these VOBs are all from the same title set or not.

HandBrake/VidCoder will concatenate if they are all of the same set but not if they are of a different title within the DVD structure, AFAIK.

For that you will need to use another program, or you can try to copy the VOBs to another folder and renumber them so that they appear to be from the same title set and use that folder for the source.

That probably won't work if the there are aspect/resolution changes between the different VOBs.
Pages: prev1 ... 98 99 100 101 102 [103] 104 105 106 107 108 ... 225next