Copy link to clipboard
Copied
Hi,
See this forum post for full details: https://adobe.ly/4i8Nhrs.
Sorry for the hassle.
Thanks,
Kevin
Copy link to clipboard
Copied
I have the same problem
Copy link to clipboard
Copied
I tried some ways from Youtube but the problem is the same. I have a lot of projects to work with and I can't
Copy link to clipboard
Copied
Install the Beta version and it will open there.
Copy link to clipboard
Copied
Where do you find it?
Copy link to clipboard
Copied
It's in the CC app.
Copy link to clipboard
Copied
Fix Script PowerShell for you project
Add-Type -AssemblyName System.IO.Compression.FileSystem
Get-ChildItem -Filter *.prproj | ForEach-Object {
$in=$_.FullName
$out=Join-Path $_.DirectoryName ($_.BaseName + "_downgrage.prproj")
$fs=[IO.File]::OpenRead($in)
$gz=New-Object IO.Compression.GZipStream($fs,[IO.Compression.CompressionMode]::Decompress)
$r =New-Object IO.StreamReader($gz,[Text.Encoding]::UTF8)
$xml=$r.ReadToEnd()
$r.Close();$gz.Close();$fs.Close()
# БЕЗ третього аргумента – замінює всі входження
$xml = $xml.Replace('Version="44"','Version="43"')
$ofs=[IO.File]::Create($out)
$ogz=New-Object IO.Compression.GZipStream($ofs,[IO.Compression.CompressionMode]::Compress)
$w =New-Object IO.StreamWriter($ogz,[Text.Encoding]::UTF8)
$w.Write($xml)
$w.Close();$ogz.Close();$ofs.Close()
Write-Host "Done $out"
}
Copy link to clipboard
Copied
Hi,
See this forum post for full details: https://adobe.ly/4i8Nhrs.
Sorry for the hassle.
Thanks,
Kevin
Find more inspiration, events, and resources on the new Adobe Community
Explore Now