topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Wednesday April 24, 2024, 11:01 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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Rockets [ switch to compact view ]

Pages: prev1 [2] 3next
26
Finished Programs / Re: IDEA: Drag and drop folder icon replacer
« on: July 19, 2016, 10:00 AM »
added option
it should be
IconResource=uni.ico,0
not
IconFile=uni.ico,0

27
Finished Programs / Re: IDEA: Drag and drop folder icon replacer
« on: July 18, 2016, 09:38 PM »
Idea: if icon field is empty, delete IconResource=XXX.ico,0 from desktop.ini

28
Finished Programs / Re: IDEA: Drag and drop folder icon replacer
« on: July 18, 2016, 06:06 PM »
if this version
It seems perfect now. The last problem is not so important:
we have to say windows explorer to refresh folder's icon. If a folder already had an icon, it takes forever to see the new one.

PS: c.gingerich's app uses the whole window for drag n drop and automatically detects where ico and folder should go, so it is more convinient on a touchscreen.

29
Finished Programs / Re: IDEA: Drag and drop folder icon replacer
« on: July 18, 2016, 05:41 PM »
FolderIconTool
If it is not hard for you, please replace
IconFile=XXX.ico
IconIndex=0
with
IconResource=XXX.ico,0
Does it really matter
IconResource=XXX.ico,0 has more priority, if desktop.ini already has it, IconFile will be ignored.

30
Finished Programs / Re: IDEA: Drag and drop folder icon replacer
« on: July 18, 2016, 05:36 PM »
I tried under Win 7 and 10 to change folder icon with right click-properties-customize-change icon

Windows writes in both cases IconResource=XXX.ico,0, so we can delete
IconFile=XXX.ico
IconIndex=0
completely. It is not needed at all.

31
Finished Programs / Re: IDEA: Drag and drop folder icon replacer
« on: July 18, 2016, 04:31 PM »
confirmed
unconfirmed. IconResource is working under win 10. What permissions does your app set?I will try to understand why.

PS: Windows 10 doesn't refresh icon folder everytime. I will try to find any solution.
Found this:



Use a shell function that will notify all running Explorer windows to use the updated desktop.ini. This API is exposed in VBScript via Shell.Application.NameSpace("folder\").MoveHere:

@echo off
for /r %%I in (*.ico) do (
    attrib -h -s -r "%temp%\desktop.ini" >nul
    (
        echo [.ShellClassInfo]
        echo IconResource="%%~nxI",0
    )>"%temp%\desktop.ini"
    attrib +h +s "%temp%\desktop.ini"
    (
        echo set shell = CreateObject^("Shell.Application"^)
        echo set folder = shell.NameSpace^("%%~dpI"^)
        echo folder.MoveHere "%temp%\desktop.ini", 4+16+1024
    )>"%temp%\updateIcon.vbs"
    cscript //nologo //b "%temp%\updateIcon.vbs"
)
pause
P.S. I forgot most of VB so whoever remembers it may rewrite the entire code in VBS (embedded).


How can I run this code?
http://stackoverflow...matically-in-windows

32
Finished Programs / Re: IDEA: Drag and drop folder icon replacer
« on: July 18, 2016, 03:59 PM »
I added xxxx.ico
don't see it
can you make it optional what to use?

One more problem, how can we refresh icons cache in Win 7 and 10? Rebuild Shell Icon Cache doesn't work for me
http://www.sordum.or...ell-icon-cache-v1-1/

33
Finished Programs / Re: IDEA: Drag and drop folder icon replacer
« on: July 18, 2016, 03:54 PM »
Can anyone else confirm that?
confirmed, win 10 home. It seems I have to reedit all my desktop.ini files if I upgrade my main PC to Win 10. I am on Win 7 now.

34
Finished Programs / Re: IDEA: Drag and drop folder icon replacer
« on: July 18, 2016, 02:35 PM »
Added icon index option
it still uses:
IconFile=XXX.ico
IconIndex=0
can you replace these 2 lines with:
IconResource=XXX.ico,0
?

.ico file is not hidden anymore, desktop.ini is.

If I add folder where I already changed icon with FID, drag n drop still broken for this folder.


35
Finished Programs / Re: IDEA: Drag and drop folder icon replacer
« on: July 18, 2016, 12:05 PM »
I have this almost ready to go.
Please add * (include all folders, empty and not) option to "MT Icon". c.gingerich's FolderIconDrop works well!

36
Finished Programs / Re: IDEA: Drag and drop folder icon replacer
« on: July 18, 2016, 12:02 PM »
Drag/drop a folder and icon and press Go!
it seems just what I need, is it possible to keep .ico file name? And make autoclose optional, please.
If I drag and drop the first time, everything is OK. If I drag and drop the same folder 2nd time, it doesn't work. Browse works.

Some icon changer apps write IconResource and not IconFile.
If there are both IconResource and IconFile in desktop.ini, IconFile is ignored.
It would be better to replace
IconIndex=0
iconfile=mynewshinyicon.ico
with
IconResource=mynewshinyicon.ico,0

37
Finished Programs / Re: IDEA: Drag and drop folder icon replacer
« on: July 17, 2016, 06:39 PM »
I tried MT Icon. I like it, could u also modify it to change icon for all subfolders? Regardless empty or not. Like adding * to allowed filenames.

You were right:
The desktop.ini should have the attribute of system, and the folder containing it also needs to have the attribute of system for it to have an effect.

38
Finished Programs / Re: IDEA: Drag and drop folder icon replacer
« on: July 17, 2016, 06:22 PM »
That was a fast reply, I added "hidden" to 3.

39
Finished Programs / IDEA: Drag and drop folder icon replacer
« on: July 17, 2016, 05:56 PM »
First, a little bit of theory. What happens when a person sets a custom icon for a folder in Windows 7?
1. Attributes of a Folder change to Read-only (of the folder, NOT content!).
2. A hidden system file desktop.ini created inside that folder, which contains a link to the icon.

Possible app:
1. drag n drop folder
2. drag n drop icon
3. icon is copied to the folder, desktop.ini is created. ini and ico set hidden

desktop.ini content:
[.ShellClassInfo]
IconResource=mynewshinyicon.ico,0

or

[.ShellClassInfo]
IconIndex=0
iconfile=mynewshinyicon.ico

40
Post New Requests Here / Re: IDEA: Drag and drop iOS icon maker
« on: June 24, 2016, 05:52 PM »
Wow, how did u find it? It seems perfect to me, although it squezes nonsquared images.

41
Post New Requests Here / Re: IDEA: Drag and drop iOS icon maker
« on: June 24, 2016, 07:43 AM »
I will try AHK and imagemagik

42
Post New Requests Here / Re: IDEA: Drag and drop iOS icon maker
« on: June 17, 2016, 08:52 AM »
Here are missing attachments 1, 3, 4
http://s000.tinyuplo...32743462631486075256

43
Post New Requests Here / Re: IDEA: Drag and drop iOS icon maker
« on: June 17, 2016, 08:48 AM »
hm, I dont see my exe and zip attachments. Why?

44
Post New Requests Here / IDEA: Drag and drop iOS icon maker
« on: June 17, 2016, 08:42 AM »
Hello every1,

i want to make a lot of iOS png icons for xLaunchpad for Windows. I made a lot online, but http://quirco.com/iPhoneIcon is gone forever. No answers from the author anymore.

I had already one exe to add reflections to pngs, I need sth similar for making iOS icons just drag and dropping pics:
attachthumb=1


Extra options are welcome, but not important. See 2:
download (1).jpg

Here is an archive with 3 pngs to make 118x120 icon and 2 pngs as source pic and end result.
attachthumb=3


Here are all 15 PNGs, that I found for 5 variants. Not important.
attachthumb=4


Read from "Icon Generation" to understand why 3 pngs for one icon:
http://iconharvester.com/themers-guide/

My icons made with the webpage:
160617-001.jpg

Thanks for your attention!


45
Post New Requests Here / Re: Multi Video Player
« on: June 17, 2016, 06:51 AM »
http://www.awesomevideoplayer.com/
it has global play, pause. Love it. 8 videos with no problem on my notebook with HD4000. Love u 2, skwire, u are the one of the most valuable members here.

46
Why dont you replace your auth_token with xxxx and upload your code?

47
Please add an option not to build a list of files if the folder stays the same, I just love to click "pic random pic" many times, but building a list for 200GB pics it takes time to build.

48
And 1 more suggestion:
autopaste a new name from a clipboard (and make it optional in ini)

49
Post New Requests Here / Re: IDEA: Dimmer?
« on: November 20, 2014, 08:19 PM »
I use desk projection under windows 7 32 bit: http://www.majorgeek...desk_projection.html
Just use dark image and set opacity to 10-30.

50
One more thought:

You have an option called "Method=". You can code "Method=0" or "Method=-1" to enable autofill and disable "FolderName="

Pages: prev1 [2] 3next