forum.vdsworld.com Forum Index forum.vdsworld.com
Visit VDSWORLD.com
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Pixy 2.4 Professional

 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> Other Product Support/Announcements
View previous topic :: View next topic  

What do you think of Pixy ?
Great Idea, Works Well
25%
 25%  [ 1 ]
Great Idea, Has bugs and needs a few fixes
50%
 50%  [ 2 ]
Average
25%
 25%  [ 1 ]
Not worth Downloading
0%
 0%  [ 0 ]
Total Votes : 4

Author Message
Rubes_sw
Valued Contributor
Valued Contributor


Joined: 11 Jun 2001
Posts: 625
Location: Northern Ireland

PostPosted: Thu Dec 19, 2002 2:18 pm    Post subject: Pixy 2.4 Professional Reply with quote

Question

Screen Shot of Pixy 2.4 Professional

OK, I took on board all Dr. Dreads comments and updated Pixy to reflect this. New Features added:

Colour to Clipboard: When in Mouse Over or Mouse Click Mode Click on

relevant Colour Code eg. HTML, HEX etc and the colour code is copied to the clipboard.

Colour Brighten or Darken (Blend Bar): Blend Bar, it is now possible to
select a colour then click on the blend bar, to brigten or darken the
colour.

Pixy Will save your current settings on exit, eg. Mode, Zoom, Follow Mouse, Pixy OnTop

Pixy is now avaiable when you press Alt+Tab.

Also the GUI & script has slightly changed to removing the flicking of dialog elements.

Also I used Wise Installer to create an installation file for Pixy.

Hope is works well now. Please give me some feedback, Thanks

Download:
http://www.metni.net/files/pixy2.zip
size: 1,552Kb (Yep i know it has increased but its worth the download Smile )

Nathan

ps. Is $9.95 , Cheap, Expensive or just right Question
Back to top
View user's profile Send private message Send e-mail Visit poster's website
MarkTrubo
Contributor
Contributor


Joined: 27 May 2001
Posts: 148
Location: Long Island, NY

PostPosted: Thu Dec 19, 2002 2:39 pm    Post subject: Reply with quote

Much smoother! I will play with it for a few days and report back. $9.95 is right or a little cheap -- the program is cool and should be worth a little more.

Regards,

Mark
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger
Dr. Dread
Professional Member
Professional Member


Joined: 03 Aug 2001
Posts: 1065
Location: Copenhagen, Denmark

PostPosted: Thu Dec 19, 2002 3:29 pm    Post subject: Reply with quote

Took the new version for a spin, this time on my Win98 box. Good improvement. Still
some problems, though:

* The 'Follow Mouse' radio toggle does not seem to work.
* The 'Pixy On Top' toggle is one-way - once it is on top it'll stay there.
* The Zoom spin box is dead.
* On 'Mouse over' mode I get some hardcore disk activity and about 50% CPU usage
* In the previous version you could pinpoint a pixel in the zoom box by clicking it - that's not
possible now, but I think it was a good feature
* I think that in 'Mouse over' mode there should also be a way of capturing the screen segment
under the cursor (by click, hot-key etc.)

That was about it for now. Hope it helps ya.

Greetz
Dread

_________________
~~ Alcohol and calculus don't mix... Don't drink and derive! ~~

String.DLL * advanced string processing
Back to top
View user's profile Send private message
Rubes_sw
Valued Contributor
Valued Contributor


Joined: 11 Jun 2001
Posts: 625
Location: Northern Ireland

PostPosted: Thu Dec 19, 2002 4:10 pm    Post subject: Reply with quote

The Follow Mouse Function Only works when you are in Mouse Over Mode.

The Spin Box (Zoom) is dead because you have to register the program to change the zoom.

Pixy On Top - The script I used was, Window Ontop, Pixy I have tried useing the script Window Normal, Pixy but the Dialog still remains ontop.

On Mouse Over Mode, the dialog elements are updated every 0.001 so the loop is running every 0.001 so it will eat up a small bit more of cpu i think, but the program seems to run smoother and function better.

Dr. Dread wrote: * I think that in 'Mouse over' mode there should also be a way of capturing the screen segment
under the cursor (by click, hot-key etc.)

I will try and add that feature to the next version of Pixy.

I hope this answers some of your qestions.

Nathan
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Mac
Professional Member
Professional Member


Joined: 08 Jul 2000
Posts: 1585
Location: Oklahoma USA

PostPosted: Thu Dec 19, 2002 4:23 pm    Post subject: Reply with quote

Nathan, the only method I've found to toggle a window
ONTOP is to use a child dialog as the main window:
Code:

rem -- Don't show main, it's easier/safer to
rem -- create and destroy child dialogs at will.
DIALOG CREATE, "Test Prog Main",0,0,0,0

:CreateWindow
if %%ontop
  DIALOG CREATE,"Test prog",-1,-1,200,100,ONTOP
else
  DIALOG CREATE,"Test prog",-1,-1,200,100
end
  DIALOG ADD,BUTTON,B1,5,5,80,20,"On Top"
  DIALOG ADD,BUTTON,B2,5,90,80,20,"Not On Top"
DIALOG SHOW

:EVLOOP
  WAIT EVENT
  goto @event()

:B1BUTTON
  DIALOG CLOSE
  %%ontop = 1
  goto CreateWindow

:B2BUTTON
  DIALOG CLOSE
  %%ontop = ""
  goto CreateWindow

:CLOSE
  EXIT

Cheers, Mac

_________________
VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
Back to top
View user's profile Send private message Send e-mail
Rubes_sw
Valued Contributor
Valued Contributor


Joined: 11 Jun 2001
Posts: 625
Location: Northern Ireland

PostPosted: Thu Dec 19, 2002 4:40 pm    Post subject: Reply with quote

Mac, i have tried to add that into my program, but it is too messy, is there any chance if i send you the source code, could you try and add it in?


Question Very Happy

Nathan
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Mac
Professional Member
Professional Member


Joined: 08 Jul 2000
Posts: 1585
Location: Oklahoma USA

PostPosted: Thu Dec 19, 2002 4:47 pm    Post subject: Reply with quote

PM me the code and I'll give it a try. Wink

Cheers, Mac Smile

_________________
VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
Back to top
View user's profile Send private message Send e-mail
Mac
Professional Member
Professional Member


Joined: 08 Jul 2000
Posts: 1585
Location: Oklahoma USA

PostPosted: Thu Dec 19, 2002 6:58 pm    Post subject: Reply with quote

Nathan, you're right - it's too messy... Wink

It would take quite a bit of re-writing. The way it is now,
closing and creating the pixy window would throw several
things off. I didn't realize ya had so many windows going. Wink

Cheers, Mac Smile

_________________
VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> Other Product Support/Announcements All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum

Twitter@vdsworld       RSS

Powered by phpBB © 2001, 2005 phpBB Group