PSP2018 Update 1 - No Tab option in Preferences!
Moderator: Kathy_9
-
JoeB
- Posts: 2778
- Joined: Fri Mar 28, 2008 10:04 pm
- System_Drive: C
- 32bit or 64bit: 64 Bit
- motherboard: LENOVO 4524PE4 ThinkCentre M91p
- processor: 3.10 gigahertz Intel Quad Core i5-2400
- ram: 8 GB
- Hard_Drive_Capacity: 4.6 TB
- Corel programs: PSP 9, X7 to 2019, 32 & 64-bit
- Location: Canada
PSP2018 Update 1 - No Tab option in Preferences!
I installed the new update and now I don't have a Tab option in the Preferences pane, so it opens with the Welcome screen and I can't turn it off and have it open in the Edit screen. Anyone else have this issue?
Regards,
JoeB
Using PSP 2019 64bit
JoeB
Using PSP 2019 64bit
-
LeviFiction
- Advisor
- Posts: 6831
- Joined: Thu Oct 02, 2008 1:07 pm
- System_Drive: C
- 32bit or 64bit: 64 Bit
- motherboard: Alienware M17xR4
- processor: Intel Core i7-3630QM CPU - 2_40GH
- ram: 6 GB
- Video Card: NVIDIA GeForce GTX 660M
- sound_card: Sound Blaster Recon3Di
- Hard_Drive_Capacity: 500GB
- Corel programs: PSP: 8-2023
- Location: USA
Re: PSP2018 Update 1 - No Tab option in Preferences!
EDIT:
Yes, I also see the "tabs" option is missing. And have reported it to Corel. Hopefully it's just a bug they didn't notice and it's not purpose.
Okay So I have two things to help work around this, and they are both extremely annoying. First is editing either a workspace file or editing the registry directly. Since workspace files are more or less just registry scripts they are easily opened in a text editor like Notepad++.
To turn on Manage or Adjust tabs you need to edit this key with the parameters for "VisibleManage" and "VisibleAdjust"
Changing VisibleManage or VisibleAdjust to 0 will make them disappear. Once edited, just load in the workspace file. I did not find a similar easy parameter for the Default Launch in the workspace file. But luckily that option is still scriptable inside PSP.
In the script below you simply set the DefaultLaunch to the number that matches the tab you want. Then run the script in Silent Mode. Once you restart PSP should open into your preferred start method.
Yes, I also see the "tabs" option is missing. And have reported it to Corel. Hopefully it's just a bug they didn't notice and it's not purpose.
Okay So I have two things to help work around this, and they are both extremely annoying. First is editing either a workspace file or editing the registry directly. Since workspace files are more or less just registry scripts they are easily opened in a text editor like Notepad++.
To turn on Manage or Adjust tabs you need to edit this key with the parameters for "VisibleManage" and "VisibleAdjust"
Code: Select all
[HKEY_CURRENT_USER\SOFTWARE\Corel\PaintShop Pro\X10\UI Customization\EN\VisualParameters]
"Color Style"=dword:00000000
"VisableManage"=dword:00000001
"VisableAdjust"=dword:00000001
In the script below you simply set the DefaultLaunch to the number that matches the tab you want. Then run the script in Silent Mode. Once you restart PSP should open into your preferred start method.
Code: Select all
from PSPApp import *
def ScriptProperties():
return {
'Author': u'',
'Copyright': u'',
'Description': u'',
'Host': u'PaintShop Pro',
'Host Version': u'20.00'
}
def Do(Environment):
# GenPreferences
App.Do( Environment, 'GenPreferences', {
'DefaultLaunch': {
#0 = Manage
#1 = Edit Mode
#2 = Last View
#3 = Welcome Screen
#4 = Adjust
'DefaultLaunch': 1
},
})
https://levifiction.wordpress.com/
-
Zantara
- Posts: 318
- Joined: Mon Feb 16, 2015 8:55 am
- System_Drive: C
- 32bit or 64bit: 64 Bit
- processor: i5-2100 3 10 Ghz
- ram: 12Gb DDR4
- Video Card: Intel UHD graphics 620
- Hard_Drive_Capacity: 256SSD 1TB
- Corel programs: From PSPX2 to PSP2022
- Location: The Netherlands
- Contact:
Re: PSP2018 Update 1 - No Tab option in Preferences!
I do not have that problem, but lost all references to my own folders and plugins
Saved the workspace before the update.
Others mention not being able to use View > Adjust so can't adjust own toolbar
Different computers, different bugs.
Has anyone noticed an improvement?
UPDATE: I just saw that the update has been removed from Corel's update page.
Saved the workspace before the update.
Others mention not being able to use View > Adjust so can't adjust own toolbar
Different computers, different bugs.
Has anyone noticed an improvement?
UPDATE: I just saw that the update has been removed from Corel's update page.
-
MarkZ
- Posts: 1080
- Joined: Sat Feb 05, 2011 10:41 pm
- System_Drive: C
- 32bit or 64bit: 64 Bit
- motherboard: Intel DQ67SW desktop
- processor: Intel Core i7 i7-2600 3.40 GHz
- ram: 8 GB
- Hard_Drive_Capacity: 500 GB
- Monitor/Display Make & Model: LG Flatron E2241
- Corel programs: PSP 2018 X9 X8 X7 X6 ASP3 ASP
- Location: Toronto
Re: PSP2018 Update 1 - No Tab option in Preferences!
In my case the Paintbrush is broken - takes ages to start and a delay of seconds before it starts laying down colour.
One thing that I found is fixed is the issue in cascade mode of an image going full size when clicking on the border. Other things I tested are still broken.
One thing that I found is fixed is the issue in cascade mode of an image going full size when clicking on the border. Other things I tested are still broken.
Mark
-
JoeB
- Posts: 2778
- Joined: Fri Mar 28, 2008 10:04 pm
- System_Drive: C
- 32bit or 64bit: 64 Bit
- motherboard: LENOVO 4524PE4 ThinkCentre M91p
- processor: 3.10 gigahertz Intel Quad Core i5-2400
- ram: 8 GB
- Hard_Drive_Capacity: 4.6 TB
- Corel programs: PSP 9, X7 to 2019, 32 & 64-bit
- Location: Canada
Re: PSP2018 Update 1 - No Tab option in Preferences!
Good work in coming up with that script LeviFiction!
And the post about the update suddenly being removed from Corel's site is good news too, because it likely means that they will be coming back as soon as possible with a fix - and hopefully for the other issues with the update now being reported.
And the post about the update suddenly being removed from Corel's site is good news too, because it likely means that they will be coming back as soon as possible with a fix - and hopefully for the other issues with the update now being reported.
Regards,
JoeB
Using PSP 2019 64bit
JoeB
Using PSP 2019 64bit
