Page 1 of 1

Plugin Builder - Editor

Posted: Fri Sep 05, 2008 5:24 pm
by jwebby
Is there a way to build or edit plugins?
For example Dreamweaver CS3 for some reason adds a registry item for every page edited, I have over 30,000 MRU entries under:
[HKEY_CURRENT_USER\Software\Adobe\MediaBrowser]
[HKEY_CURRENT_USER\Software\Adobe\MediaBrowser\MRU]
[HKEY_CURRENT_USER\Software\Adobe\MediaBrowser\MRU\Dreamweaver]
[HKEY_CURRENT_USER\Software\Adobe\MediaBrowser\MRU\Dreamweaver\FileList]

I figure I could create one good Adobe Plugin to cure this.

Thanks.

Re: Plugin Builder - Editor

Posted: Sat Sep 06, 2008 6:05 am
by Aneesh
Hi,

We'll check it.

Re: Plugin Builder - Editor

Posted: Sat Sep 06, 2008 12:20 pm
by hari
hi

here is an example .

Code: Select all

[SETTINGS]

NAME=unused
PATH=
ICON=appname.exe
DESCRIPTION=your description
HIDEOPTION = 1
PROVIDER= hari
VERSION =1.0
Encrypted=0

[REG_OPTION]

0=Clean Recent File List<1> 0,1,2

[DISK_OPTION]

[REGISTRY]
0=DELKEY=HKEY_CURRENT_USER\Software\company\product\misc\RecentFiles
1=DELKEY=HKEY_CURRENT_USER\Software\company\product\misc\RecentMRU
2=DELKEY=HKEY_CURRENT_USER\Software\company\product\anykey
[DISK]
Just insert the keys under the [REGISTRY] section and set the numbers after the "<1>" string in [REG_OPTION] section.


To delete all values in a key starting with ''recent' use
0=DELLIST=HKey_Local_Machine\Software\key\key,recent

to delete a single value ''LastUrl",
0=DELVAL=HKEY_CURRENT_USER\Software\company\product\anykey,LastUrl

Re: Plugin Builder - Editor

Posted: Sat Sep 06, 2008 1:16 pm
by jwebby
Thanks for you help but I can't seem to get this to work:

Adobe has this key:

Code: Select all

[HKEY_CURRENT_USER\Software\Adobe\MediaBrowser\MRU\Dreamweaver\FileList]
And then thousands of entries under it that look like this that need to be deleted.

Code: Select all

[HKEY_CURRENT_USER\Software\Adobe\MediaBrowser\MRU\Dreamweaver\FileList\2008-04-05T03:17:34.3597Z]
@="D:\\_Projects\\SRBHosting\\includes\\hostingtable.php"

[HKEY_CURRENT_USER\Software\Adobe\MediaBrowser\MRU\Dreamweaver\FileList\2008-04-05T03:17:41.2818Z]
@="D:\\_Projects\\SRBHosting\\includes\\hostingtable.php"
Would you please re-write your example to reflect this?

I tried this and several others but nothing seems to work.

Code: Select all

[SETTINGS]

NAME=
PATH=
ICON=
DESCRIPTION=This plugin will clean the recent file list in Macromedia Dreamweaver CS3.
HIDEOPTION = 1
PROVIDER= hari
VERSION =1.0
Encrypted=1

[REG_OPTION]
0=Clean Recent File List<1> 0
[DISK_OPTION]

[REGISTRY]
0=DELLIST=HKEY_CURRENT_USER\Software\Adobe\MediaBrowser\MRU\Dreamweaver,FileList
[DISK]

Re: Plugin Builder - Editor

Posted: Sat Sep 06, 2008 1:24 pm
by jwebby
Oops, wrong forum.

Re: Plugin Builder - Editor

Posted: Mon Sep 08, 2008 1:18 pm
by hari

Code: Select all

[SETTINGS]

NAME=
PATH=
ICON=
DESCRIPTION=This plugin will clean the recent file list in Macromedia Dreamweaver CS3.
HIDEOPTION = 1
PROVIDER= hari
VERSION =1.0
Encrypted=1

[REG_OPTION]
0=Clean Recent File List<1> 0
[DISK_OPTION]

[REGISTRY]
0=DELKEY=HKEY_CURRENT_USER\Software\Adobe\MediaBrowser\MRU\Dreamweaver\FileList
[DISK]