(imported topic written by SystemAdmin)
So I’m trying to build an output file to change a bunch of Shockwave settings.
Let’s say that there’s 2 Shockwave registry keys that each contain multiple settings…
(
name of it , names of keys
whose
(
default value of it = “y”
)
of it
)
of keys
whose
(
name of it as string as lowercase starts with "shockwave "
)
of key “HKLM\SOFTWARE\Adobe” of registry
This outputs something like…
Shockwave 11, allowfallback
Shockwave 11, AutoUpdate
Shockwave 11, fpng
Shockwave 11, otb
Shockwave 12, allowfallback
Shockwave 12, AutoUpdate
Shockwave 12, collectstats
Shockwave 12, fpng
Shockwave 12, otb
Now this returns a (string, string)
Ideally, I want to combine these into a single string so I can put them in a .reg file.
Perhaps like…
Shockwave 11\allowfallback
Shockwave 11\AutoUpdate
Shockwave 11\fpng
Shockwave 11\otb
Shockwave 12\allowfallback
Shockwave 12\AutoUpdate
Shockwave 12\collectstats
Shockwave 12\fpng
Shockwave 12\otb
Problem is I’m dealing with a singular key against a plural list of keys.
Any suggestions?
-Paul