topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Friday June 27, 2025, 5:38 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 ... 62 63 64 65 66 [67] 68 69 70 71 72 ... 184next
1651
Find And Run Robot / Re: DcUpdater + FARR problem
« Last post by jgpaiva on February 14, 2008, 04:48 AM »
The versioninfo.xml file that dcupdater needs isn't XML-compliant. The correct one in your case would be:

Code: Text [Select]
  1. <?xml version="1.0"?>
  2. <Program_Version>1.01.03</Program_Version>
  3. <Program_Release_Month>2</Program_Release_Month>
  4. <Program_Release_Day>14</Program_Release_Day>
  5. <Program_Release_Year>2008</Program_Release_Year>

About all the plug-ins being in DCupdater: the plugins that aren't installed also appear in DCupdater, so that you can install them from there.

About them being repeated... I have no idea why that would happen :(
1652
Updated Hide taskbar, see above post ;)
1653
Post New Requests Here / Re: IDEA: Copy Text and Tabs typed sand aved to a file
« Last post by jgpaiva on February 14, 2008, 04:20 AM »
Skrommel already did that :)

See DoOver.
1654
tomos: it'd take me a while to make the options and such, thus please make the following change:

Change the first 2 'If's to the following 2: (each in its respective line, of course :) )
  If (MouseY = A_screenHeight -1 AND !inborder)
  If (mouseY <> A_screenHeight -1 AND inborder)
I'll add that option later :)

[edit] corrected the lines[/edit]
1655
sounds great,
can that be modified as well?
Sure can!
I'll do it asap.
1656
Solution: HideTaskbar!

code inside
; Author: jgpaiva
;
; Script Function:
; mimmics windows taskbar autohide without the annoying popup on window
; flash
;

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
#persistent
#singleinstance,force

EdgeTime := 200
Edge = Bottom

inborder := false
WinHide,ahk_class Shell_TrayWnd

CoordMode,mouse,screen
Settimer,FollowMouse%Edge%,100
return

ShowTaskbar:
  if (!inborder)
    return

  WinHide,ahk_class Shell_TrayWnd
  WinShow,ahk_class Shell_TrayWnd
  settimer,FollowMouse%Edge%,off
  loop
  {
    sleep,100
    MouseGetPos,,,WindowId
    WinGetclass,TrayClass,ahk_id %WindowId%
    if (TrayClass <> "Shell_TrayWnd")
      break
  }
  settimer,FollowMouse%Edge%,on
  WinHide,ahk_class Shell_TrayWnd
  return

FollowMouseLeft:
  MouseGetPos,MouseX,MouseY
  If(MouseX = 0 AND !inborder)
  {
    inborder := true
    settimer,ShowTaskbar,-%EdgeTime%
    return
  }
  If(MouseX <> 0 AND inborder)
  {
    inborder := false
    settimer,ShowTaskbar,off
    return
  }
  return

FollowMouseBottom:
  MouseGetPos,MouseX,MouseY
  If(MouseY = A_screenheight -1 AND !inborder)
  {
    inborder := true
    settimer,ShowTaskbar,-%EdgeTime%
    return
  }
  If(MouseY <> A_screenHeight -1 AND inborder)
  {
    inborder := false
    settimer,ShowTaskbar,off
    return
  }
  return

FollowMouseTop:
  MouseGetPos,MouseX,MouseY
  If(MouseY = 0 AND !inborder)
  {
    inborder := true
    settimer,ShowTaskbar,-%EdgeTime%
    return
  }
  If(MouseY <> 0 AND inborder)
  {
    inborder := false
    settimer,ShowTaskbar,off
    return
  }
  return

FollowMouseRight:
  MouseGetPos,MouseX,MouseY
  If(MouseX = A_screenWidth -1 AND !inborder)
  {
    inborder := true
    settimer,ShowTaskbar,-%EdgeTime%
    return
  }
  If(MouseX <> A_screenWidth -1 AND inborder)
  {
    inborder := false
    settimer,ShowTaskbar,off
    return
  }
  return


Just install autohotkey, copy the code and save it as "hidetaskbar.ahk" and then double-click it ;)

To change the time it takes the taskbar to popup, edit the script and change the "edgetime" parameter.

Notice that this only works for taskbars on the left of the screen!

PS: don't forget to disable windows taskbar auto-hide! Sorry, it's the other way around. Please enable windows taskbar auto-hide, it'll work better.

V 1.1 updated 14-02
added option to choose the edge where the taskbar is positioned. Just change to "edge = top", "edge = left", "edge = bottom" or "edge = left"!
1658
Jibz's Tools / Re: Dina font in size 7, 6.5 or 6 ?
« Last post by jgpaiva on February 13, 2008, 05:25 AM »
Well... I think you should read the following thread, if you're looking for fonts:
18 Monospace fonts comparison screenshot
1659
General Software Discussion / Re: PHP IDE recommendations
« Last post by jgpaiva on February 13, 2008, 04:31 AM »
urlwolf: vim! :)

If you set some textwidth, it'll wrap on words when they pass that mark.
1660
Actually,the system makes sense. The idea is to have a fixed maximum length for the number. The fact it has 2 types of characters allows it to have the same maximum size equal for both positive and negative numbers.
1661
Post New Requests Here / Re: IDEA: drag window to edge automatically resizes it
« Last post by jgpaiva on February 12, 2008, 10:27 AM »
Don't know if multiple Desktops apps could define one app to be on all desktops at same time, i should find out and give dexpot a try too :-)
Oh, they sure can! Try dexpot, i bet it'll be exactly what you're looking for ;)
1662
That sounds like coding snack material.

Could you explain it a bit better?

Where are those numbers? In a file? One per line?
1664
Post New Requests Here / Re: IDEA: drag window to edge automatically resizes it
« Last post by jgpaiva on February 12, 2008, 09:05 AM »
Hi ansalon!
I'm glad you like gridmove :D

Regarding your suggestions:

1: There's a way better solution for this: winwarden. It lets you do exactly what you asked.

2: Winwarden can do that too, IIRC :)

3: To be honest... That sounds exactly like a multiple desktops app. It's impossible for me to make something nearly as good as the multiple options out there (the one i recommend is dexpot) and i'd just be reinventing the wheel.
1665
DC Website Help and Extras / MOVED: Anyone know how to???
« Last post by jgpaiva on February 12, 2008, 03:06 AM »
1666
UrlSnooper / Re: Anyone know how to???
« Last post by jgpaiva on February 12, 2008, 03:05 AM »
Doesn't urlsnooper help?
1667
General Software Discussion / Re: Firefox 3 beta 3 expected today
« Last post by jgpaiva on February 11, 2008, 04:04 PM »
I must say, even though I'm an opera lover, there are some interesting features there that i hope my favourite browser will gracefully copy ;)
1668
Post New Requests Here / Re: IDEA: toolbar with spec character links
« Last post by jgpaiva on February 10, 2008, 05:28 PM »
Just go to Autohotkey.com, download and install autohotkey. Then, open notepad, copy-paste that code there and save it as "CharsBar.ahk".
Then just double-click charsbar.ahk :)
1669
If you think it's more appropriate with mini-reviews, I don't mind it being moved. But personally, I didn't think it was complete enough for that treatment.
Ok, then i shall leave it here. Maybe later you can complete it ;)

And I don't think MM is the best tool for anything but supplementary tagging.
Really? I thought it was the best one out there... What do you use?
1670
What, and no comments about it being the best tool to tag mp3 out there? :)

PS: should i move this to the mini-review section?
1671
External = external disk (aka secondary disk)
Fixed hd = internal disk (aka main disk)
Cycle = Swap (the selected data)

The idea is to select some data on the external disk and on the internal disk, and sqap the selections, so that the internal disk ends up with the data selected on the external disk, and vice-versa. The really important problem here is that the selected data will potentially fill the disk, thus the files have to be moved around taking that into account.
1672
JGPaiva's GridMove and Ahk Tools / Re: Gridmove and Ultramon
« Last post by jgpaiva on February 10, 2008, 11:54 AM »
Oh, i see the problem.

You're right, probably gridmove is starting after Ultramon and causing that.

On a recent version, gridmove had the ability to detect these situations and reload itself, but that caused serious trouble with some people, and i left that on hold to be reintroduced when i test it with my second monitor. (in about 2-3weeks, because right now i'm at my parents').

Right now, the solution i'd recommend would be that you use startup delayer which allows you to delay the start of some programs at windows startup.

[edit] bah... I enabled that detection and compiled a new version and attached it to this post. I just hope you won't have the problems other people had [/edit]
1673
General Software Discussion / Re: toogle: create ascii art based on a google query
« Last post by jgpaiva on February 10, 2008, 09:08 AM »
I just had to do this one:

Screenshot-08_02_10,15_06_54_thumb.png
1674
General Software Discussion / toogle: create ascii art based on a google query
« Last post by jgpaiva on February 10, 2008, 08:58 AM »
Scancode just mentioned this on the irc channel.
Toogle is a fun web tool to create ascii art based on a google query. You search for something, and it returns you an ascii'ed image related with that:



And here are a few examples (click to see original):
Screenshot-08_02_10,14_52_56_thumb.pngScreenshot-08_02_10,14_54_25_thumb.pngScreenshot-08_02_10,14_55_31.pngScreenshot-08_02_10,14_57_24.png
1675
Mini-Reviews by Members / RocketDock minireview
« Last post by jgpaiva on February 10, 2008, 06:38 AM »
Basic Info

App NameRocketDock
App URLhttp://rocketdock.com/
App Version Reviewed1.3.5
Test System Specs
Laptop Acer 1690: centrino m 2.0ghz, 1gb ddr2, win XP Pro SP2
Supported OSesWindows 2000/XP/Vista
Support MethodsOnline help. Can't find email
Pricing SchemeFreeware
Reviewer Donation LinkDonate to jgpaiva, the Author
Relationship btwn. Reviewer and Product none


Intro:

RocketDock is a dock program, similar to ObjectDock, YZDock, etc.
I have already used previous versions, but now i was about to try it again and thought i could take you on this trip too ;)

Ok, so after a 6MB download and a standard install.. Here's how it looks:
Screenshot-08_02_10,11_40_33.png

That's the default bar, with 2 applications minimized. Notice how the msn-messenger window and the x-chat window got minimized to the Dock.

Both msn and x-chat have the "blink taskbar button" feature.. Let's see if it works while they are minimized to the Dock. (notice that i don't have vista, thus i can't test the live previews).
Ok... Sweet, the blink icon works, the app starts jumping up and down on the dock.

Right, so let's open the options.
Screenshot-08_02_10,11_47_40.png
ALWAYS ON TOP???? Damn you people! Ok, that's like so bad that if i wasn't doing this review I'd given up on it already.

So.. on to the preferences. The first page shows some interesting options. I specially like "open running application instance".  I tested it and it works pretty well.

The second tab has some dock behaviour settings (like zoo, zoom effect, quality, etc). Nothing very interesting here.

Third tab.. Position. Cool, it can be placed on any position on the edges and even off the edges, with an offset up to 128px. And it updates the position in realtime! I'm surprised :)

Next.. Style! Ok.. Lots of themes to choose from and updates on realtime too. Cool :)
Screenshot-08_02_10,12_08_20.png

Now on to "Behaviour": just a few options like "autohide" or "icon attention effect".

Ok.. I just found a small problem: Screenshot Captor won't minimize anymore. Not good.


Who is this app designed for:

Anyone who doesn't use FARR, will potentially be interested in RocketDock ;)
It's a great launcher, and the fact that it can dock running apps just makes it even better ;)

The Good

Well.. Invariably, in this kind of apps, the first thing we notice is how it looks good. RocketDock makes a great impression in that field, with lots of pre-bundled themes (and possibility of downloading even more from the web).
It also has a beautiful  :-* minimize animation (even though it's a bit too slow).
Interesting also, is the fact that it uses high quality icons, even when windows doesn't use them:
Screenshot-08_02_10,12_19_33.png

Minimize running apps is a great feature, and apparently now it's working way better than the last time i tested it, as it only gives me trouble with SC.


The needs improvement section

Ok.. There are 2 obvious items in this section: the "preferences always on top" "feature" and the minimize running apps problem.

About the first: What's up with that? It's not a good idea, it's annoying as hell and anyone who does that should be ran over by a truck.

About the second: there have been huge improvements since the last time i tried this, now it really is usable (last time apps would disappear, or stay on screen when minimized, etc etc etc). BUT it still has problems with SC, which can't be minimized through the minimize button, and when i minimize it with ahk, it gets in the dock, but still remains on screen in the following form:
Screenshot-08_02_10,12_28_55.png

There's also 3 other problems:
It doesn't have tabs on the bars like ObjectDock which might be useful for some, and it doesn't support disk browsing like LaunchBar Commander does (or any other menus, for that matter).
It also doesn't support tray icon docking, which doesn't allow it to fully replace the windows taskbar :(

Why I think you should use this product

Overall, it's a pretty good app, and way more mature than the last time i tried it. Right now, and while mouser's LaunchBar Commander is "under development", this is a cool free alternative to ObjectDock, specially for those that don't need to launch lots of programs.
It's easy to configure, easy to add and remove programs from, and looks good. Definitely recommendable.


How does it compare to similar apps

Well.. I think i sort of already covered that in the above points :)


Conclusions

Even though I'm not much of a launch-bar kind of guy, i think this'd be the kind of stuff I'd recommend to people who like Mac OSX's Dock or are just looking for a simple launchbar to launch their frequent shortcuts.
Pages: prev1 ... 62 63 64 65 66 [67] 68 69 70 71 72 ... 184next