Page 4 of 5

Re: SC Command ::Make...

Posted: 12 Apr 2014 16:18
by klownboy
Hi Don, I'm really liking the "trigger by click" feature. It sounds kind of wildwest gunslingerish. In the beta notes you mention a redesign of the "click" symbol instead of using the current script icon. I'd suggest something as narrow as possible to allow for the narrowest column width possible. This works best for me anyway when the "click" symbol is the first column or immediately to the left of the file name column. The user doesn't have to have a title name like "preview" taking up additional column width. It could be "View" or even a blank space or "alt-255" - as I have it now and the limiting width is the icon width. I'd rather it had a transparent background (no background color), but maybe you'd have to have one to account for the many varied foreground /background possibilities.
Thanks,
Ken

Re: SC Command ::Make...

Posted: 12 Apr 2014 19:14
by SkyFrontier
Interesting bug:

If <clipboard> is used as source (containing paths to image files), the list appears to refresh, making rendered images to disappear.
Problem won't happen if get() is used on the same source images.

Code: Select all

   $re = "";
   $x = 180;
   $y = 50;
   $max = 5;

   $x1 = $x;
   $y1 = $y;
   #485; //refresh list, cleaning up screen from any previous artifacts

   $a = <clipboard>; // alternatively
//   $a = get(selecteditemspathnames); // alternatively
   $a = $a; // attempt to fix
   foreach($tk, "$a", <crlf>) {

                              $ctrl++;
                              IF($ctrl > $max) { $x = $x1; $y = $y + 60; $ctrl = 0; }
                              ELSE {   }
                              $x = $x + 80;

// step;
                              makecoffee "$tk", $x, $y, 50, 50;
//debug
 wait 500;

                              }
//debug
   wait 1500;

Re: SC Command ::Make...

Posted: 12 Apr 2014 23:52
by klownboy
Hey Don, Is there anyway you could force the makecoffee display of pics to mind or beware of the screen edges especially the top and bottom regardless of the positioning "x", "y" values provided in the SC (i.e., the top of pic wouldn't be off the top of the screen and the bottom of the pic would never go below the bottom)? Obviously that can happen often on a detail mode display.
Thanks,
Ken

Re: SC Command ::Make...

Posted: 13 Apr 2014 12:30
by admin
klownboy wrote:Hi Don, I'm really liking the "trigger by click" feature. It sounds kind of wildwest gunslingerish. In the beta notes you mention a redesign of the "click" symbol instead of using the current script icon. I'd suggest something as narrow as possible to allow for the narrowest column width possible. This works best for me anyway when the "click" symbol is the first column or immediately to the left of the file name column. The user doesn't have to have a title name like "preview" taking up additional column width. It could be "View" or even a blank space or "alt-255" - as I have it now and the limiting width is the icon width. I'd rather it had a transparent background (no background color), but maybe you'd have to have one to account for the many varied foreground /background possibilities.
Thanks,
Ken
I'm quite happy with the current green "click" symbol, and smaller than 16 pixels makes no sense since columns cannot be smaller than 18 pixels (internal limit).

Re: SC Command ::Make...

Posted: 13 Apr 2014 12:32
by admin
SkyFrontier wrote:Interesting bug:

If <clipboard> is used as source (containing paths to image files), the list appears to refresh, making rendered images to disappear.
Problem won't happen if get() is used on the same source images. ...
Hm, I don't see why this should be the case. Check next beta... it might have disappeared. ;)

Re: SC Command ::Make...

Posted: 13 Apr 2014 12:34
by admin
klownboy wrote:Hey Don, Is there anyway you could force the makecoffee display of pics to mind or beware of the screen edges especially the top and bottom regardless of the positioning "x", "y" values provided in the SC (i.e., the top of pic wouldn't be off the top of the screen and the bottom of the pic would never go below the bottom)? Obviously that can happen often on a detail mode display.
Thanks,
Ken
Hmm, that might not be desired in any case, and it's slowly getting overkilled. Hey, makecoffee is just a gimmick...

Re: SC Command ::Make...

Posted: 13 Apr 2014 13:13
by klownboy
Hi Don, makecoffee certainly started as a gimmick or Easter Egg, but now it can be very useful feature. I think it's time you dropped the gimmick thinking. Maybe a name change as Marco suggested would help change your thinking. I'm not sure why anyone would purposely want their pic or part of their pic to be off screen. Easter is coming...

Re: SC Command ::Make...

Posted: 13 Apr 2014 13:22
by admin
These extra functions to makecoffee are all half-baked. When you scroll the list containing coffee you will see...

Re: SC Command ::Make...

Posted: 13 Apr 2014 13:51
by klownboy
Certainly, I've noticed some very bad behavior if makecoffee is used in Custom Columns in the List or Browse mode for a "Trigger" instead of "Click" especially in a folder full of photos. Even in the trigger Click mode it seems that XY initially wants to list or browse all the pics until it realizes it should be in "Click" mode. I certainly wouldn't want to use "makecoffee" in anything other than "Click" mode for a folder full of pics. It works great in a mixed folder with a little of everything as shown. Makecoffee also works great in the PFA we talked about earlier. Thanks.
makecoffee.PNG
makecoffee.PNG (15.15 KiB) Viewed 1997 times

Re: SC Command ::Make...

Posted: 13 Apr 2014 14:17
by admin
The "very bad behavior" should be fixed in the last in beta.

Re: SC Command ::Make...

Posted: 13 Apr 2014 16:44
by klownboy
You've tamed it. Much better now setting up a large folder of pics with CC trigger click using makecoffee and wait in a script. Thanks :appl:

Re: SC Command ::Make...

Posted: 13 Apr 2014 21:12
by admin
admin wrote:
klownboy wrote:Hey Don, Is there anyway you could force the makecoffee display of pics to mind or beware of the screen edges especially the top and bottom regardless of the positioning "x", "y" values provided in the SC (i.e., the top of pic wouldn't be off the top of the screen and the bottom of the pic would never go below the bottom)? Obviously that can happen often on a detail mode display.
Thanks,
Ken
Hmm, that might not be desired in any case, and it's slowly getting overkilled. Hey, makecoffee is just a gimmick...
Changed my mind about this wish. :)

Re: SC Command ::Make...

Posted: 13 Apr 2014 21:19
by SkyFrontier
admin wrote:
SkyFrontier wrote:Interesting bug:

If <clipboard> is used as source (containing paths to image files), the list appears to refresh, making rendered images to disappear.
Problem won't happen if get() is used on the same source images. ...
Hm, I don't see why this should be the case. Check next beta... it might have disappeared. ;)
Not fixed, Don.

Re: SC Command ::Make...

Posted: 13 Apr 2014 21:33
by admin
Please post snippet...

Re: SC Command ::Make...

Posted: 13 Apr 2014 22:36
by admin
Got it. The selection was the problem. Fix comes.