topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Saturday September 19, 2026, 1:11 pm
  • 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
General Software Discussion / Re: Configuring Directory Opus for Fun and Profit
« Last post by 4wd on February 07, 2014, 08:12 PM »
Just in case no one's noticed, DOpus 11 is available as a public beta, (and has been for a month or more).

Quite stable, haven't had it crash or cause any damage yet, (been using it since beta 3, I think).
2552
General Software Discussion / Re: hubiC, DropBox like service with interesting pricing
« Last post by 4wd on February 07, 2014, 06:53 PM »
Is there a translated version of their policies?

https://hubic.com/en...ntrat_hubiC_2013.pdf

2014 version - PDF, still in French.


Confidentiality

Every document deposited on hubiC is replicated in 3 different OVH datacentres in France. Only you* will have access to your data, using your login and password.


* We neither confirm nor deny that the DGSE also has access to your data.

 :)

Honestly, how is replicated data ensuring confidentiality?
2553
If, as shown in your image, you only have the one folder left after the rename then you could try adding:

Select ALLDIRS

before the SetFolDate command to select the folder, (well, all folders really).

Ideally, you'd set a variable to the folder you want to create and then use it as an argument to both the Rename and SetFolDate commands.
2554
v0.3.1.3 - Added: Can run in no GUI mode using last saved options.

Here's an example UserCommand for DOpus:

Code: Text [Select]
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <usercommand backcol="none" hide_from_menu="no" textcol="none">
  3.         <label>Adjust_Timestamp_NG</label>
  4.         <user_label>Adjust_Timestamp_NG</user_label>
  5.         <icon1>#usercommand</icon1>
  6.         <function type="normal">
  7.                 <instruction>@dirsonly</instruction>
  8.                 <instruction>Go {ss}</instruction>
  9.                 <instruction>&quot;C:\SetFolDate2\SetFolDateFM.exe&quot; /r {ss} {allfile}</instruction>
  10.         </function>
  11. </usercommand>

@dcwul62 - in case it wasn't obvious, my remark about the GUI was the usual dry Aussie humour coming out  ;)

Albeit with a rather obvious grammatical screw-up  :-\
2555
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

2557
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?
2559
Say you're saying that after all the, literally, minutes I spent slaving over its interface, you don't want to see it?
2560
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
2561
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.
2562
Think I goofed there somewhere, I'll have a look at it.

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

2014-02-05 11_55_05.png
2564
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).
2565
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.
2566
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.
2567
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).
2568
v0.3.1.2 - here
2569
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
2570
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) ?
2571
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.
2572
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
2573
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?
2574
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  :)
2575
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  ;)
Pages: prev1 ... 98 99 100 101 102 [103] 104 105 106 107 108 ... 225next