Does anyone know how to stop X6 downloading the help file and the User Guide PDF from the internet every time that I want to view these from inside X6?
All these files are installed on my PC so why does X6 insist on conecting to the internet for them? I know that if I disconect from the internet (but why should I Corel?) the help files load off my hard drive but if I click on Help/User Guide (PDF) I get "File not found".
X6 Open Offline Help File script
Moderator: Kathy_9
- Tony Lenton
- Posts: 32
- Joined: Wed Jan 18, 2006 8:28 am
- System_Drive: C
- 32bit or 64bit: 64 Bit
- motherboard: Intel DH55TC
- processor: Intel Core i5 3.20 GHz
- ram: 12GB
- Video Card: GeForce GTX 1060
- sound_card: On board Realtek High Def Audio
- Hard_Drive_Capacity: 4500 GB
- Monitor/Display Make & Model: Lenovo S27i
- Corel programs: PSP X6 PSP2020
- Location: Frenaros, Cyprus
-
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: X6 HelpFiles and Guide.pdf
The online files will always be the most up to date, though I don't know if they update often.
PSP does not have a default "always use offline" help option. So if you want to use the offline help just set a bookmark while offline. Then use that bookmark when you need to access the help.
If you absolutely have to access the help from inside PSP it's possible to create a script that will open the offline help files and bind that to the menu.
In fact by using a script you can get the help files to open in your default browser.
This same method can be used to open the PDF.
-----------------
1) Open Notepad, and add a file to your Scripts-Trusted folder called "Offline-Help.PSPScript" make sure to have the file type set to All Types *.* so that it doesn't add a .txt extension to the end of it.
If you don't know where the scripts-trusted folder is you can find out by opening PSP and going to File -> Preferences -> File Locations
2) Then paste in the following code
If you use a different language than EN you will have to update the URL to match your needs.
3) Then with PSP open go to View -> Customize
4) Click the Scripts tab
5) Then select the Offline-Help from the scripts and give it an Icon. Click Bind button to make it available for use.
6) With the customize dialog still open click the Help menu. When the menu opens, click and drag the Bound script from the bottom list of the dialog into the help menu.
7) You can then right-click on the new menu item and select 'Button Appearance" to rename the text if you want, or to turn off the bound script icon.
And then you'll have a menu item for the offline help files specifically.
----------
I then downloaded the PDF Guide and placed it in the Public Documents folder. Finally I adjusted the script to use the PDF location. This will open the PDF in your default PDF viewer. I saved this as Offline-PDF.PSPScript.
The name isn't important but it helps you to find it later and differentiate the function.
Just follow the same instructions to add this to the help menu as well.
PSP does not have a default "always use offline" help option. So if you want to use the offline help just set a bookmark while offline. Then use that bookmark when you need to access the help.
If you absolutely have to access the help from inside PSP it's possible to create a script that will open the offline help files and bind that to the menu.
In fact by using a script you can get the help files to open in your default browser.
This same method can be used to open the PDF.
-----------------
1) Open Notepad, and add a file to your Scripts-Trusted folder called "Offline-Help.PSPScript" make sure to have the file type set to All Types *.* so that it doesn't add a .txt extension to the end of it.
If you don't know where the scripts-trusted folder is you can find out by opening PSP and going to File -> Preferences -> File Locations
2) Then paste in the following code
Code: Select all
from PSPApp import *
import os
def ScriptProperties():
return {
'Author': u'',
'Copyright': u'',
'Description': u'',
'Host': u'PaintShop Pro',
'Host Version': u'16.00'
}
def Do(Environment):
os.startfile('file:///C:/ProgramData/Corel/Corel%20PaintShop%20Pro%20X6/Languages/EN/Help/wwhelp/wwhimpl/js/html/wwhelp.htm#href=Corel-PaintShop-Pro-intro-page.html')
3) Then with PSP open go to View -> Customize
4) Click the Scripts tab
5) Then select the Offline-Help from the scripts and give it an Icon. Click Bind button to make it available for use.
6) With the customize dialog still open click the Help menu. When the menu opens, click and drag the Bound script from the bottom list of the dialog into the help menu.
7) You can then right-click on the new menu item and select 'Button Appearance" to rename the text if you want, or to turn off the bound script icon.
And then you'll have a menu item for the offline help files specifically.
----------
I then downloaded the PDF Guide and placed it in the Public Documents folder. Finally I adjusted the script to use the PDF location. This will open the PDF in your default PDF viewer. I saved this as Offline-PDF.PSPScript.
The name isn't important but it helps you to find it later and differentiate the function.
Code: Select all
from PSPApp import *
import os
def ScriptProperties():
return {
'Author': u'',
'Copyright': u'',
'Description': u'',
'Host': u'PaintShop Pro',
'Host Version': u'16.00'
}
def Do(Environment):
os.startfile('C:\Users\Public\Documents\CorelPaintShopPro.pdf')
https://levifiction.wordpress.com/
-
Radim
- Posts: 712
- Joined: Mon Nov 01, 2010 5:54 pm
- System_Drive: C
- 32bit or 64bit: 64 Bit
- ram: 4GB
- Monitor/Display Make & Model: 27 inch
Re: X6 HelpFiles and Guide.pdf
Excellent.
- Tony Lenton
- Posts: 32
- Joined: Wed Jan 18, 2006 8:28 am
- System_Drive: C
- 32bit or 64bit: 64 Bit
- motherboard: Intel DH55TC
- processor: Intel Core i5 3.20 GHz
- ram: 12GB
- Video Card: GeForce GTX 1060
- sound_card: On board Realtek High Def Audio
- Hard_Drive_Capacity: 4500 GB
- Monitor/Display Make & Model: Lenovo S27i
- Corel programs: PSP X6 PSP2020
- Location: Frenaros, Cyprus
Re: X6 HelpFiles and Guide.pdf
Thanks LeviFiction, works perfectly. Have also done the same for the Scripting Guide.
-
Dizzie
- Posts: 73
- Joined: Tue Sep 13, 2011 3:59 pm
- System_Drive: C
- 32bit or 64bit: 64 Bit
- motherboard: dunno
- processor: dunno
- ram: 6 GB
- Video Card: dunno
- sound_card: dunno
- Hard_Drive_Capacity: 500
Re: X6 HelpFiles and Guide.pdf
Thank Levi! Is there any way to get it to open in IE and NOT my default browser? My default browser is Chrome and it won't display in Chrome. but does perfectly in IE.
-
Dizzie
- Posts: 73
- Joined: Tue Sep 13, 2011 3:59 pm
- System_Drive: C
- 32bit or 64bit: 64 Bit
- motherboard: dunno
- processor: dunno
- ram: 6 GB
- Video Card: dunno
- sound_card: dunno
- Hard_Drive_Capacity: 500
Re: X6 HelpFiles and Guide.pdf
I went looking for the pdf file and couldn't find it so I downloaded the file from Corel and it fixed it to where when I click on the Help file it opens it from my hard drive in IE and not downloading it from online.
http://www.corel.com/corel/pages/index. ... id=7100001
http://www.corel.com/corel/pages/index. ... id=7100001
-
JudyM
- Posts: 44
- Joined: Fri Oct 04, 2013 10:52 pm
- System_Drive: C
- 32bit or 64bit: 64 Bit
- processor: 3.40 gigahertz Intel Core i5-4670
- ram: 2048 MB
- Hard_Drive_Capacity: 999.36 GB
- Monitor/Display Make & Model: HP L1706
- Corel programs: PSP 9,X, X4 - 2018
- Location: Australia
- Contact:
Re: X6 HelpFiles and Guide.pdf
I have repeatedly tried to download the help files without success. I have dropped my internet security to try to enable the download.
Why not a zipped file rather than an exe file?
Can anyone help?
Also where do I access the scripting guide?
I keep going around in circles without finding a link.
My program is registered and I have signed in as a member...In fact I can find no link for any extra content.
Tearing my hair out here
Judy
Why not a zipped file rather than an exe file?
Can anyone help?
Also where do I access the scripting guide?
I keep going around in circles without finding a link.
My program is registered and I have signed in as a member...In fact I can find no link for any extra content.
Tearing my hair out here
Judy
-
Kathy_9
- Site Admin
- Posts: 2896
- Joined: Tue Nov 30, 2010 12:44 am
- System_Drive: C
- 32bit or 64bit: 64 Bit
- processor: 8th Generation Intel Core i7 8700 3 20 GHz
- ram: 16GB
- Video Card: NVIDIA GeForce RTX 2060 [6 GB GDDR6 dedicated]
- sound_card: NVIDIA High Definition Audio
- Hard_Drive_Capacity: 2TB
- Monitor/Display Make & Model: HP EliteDisplay E243m 23.8-inch
- Corel programs: PSPX2 ~2023; Painter 2018~23
- Location: USA
- Contact:
Re: X6 HelpFiles and Guide.pdf
You can go to Corel.com, sign into your account and under Products, click on Downloads for Members & Subscribers. Here you will find the KPT plug-ins, scripting guide and Creative Content downloads.
PSPX9 | PSP2020 | PSP2021| PSP2022 | PSP2023 & PhotoMirage installed; PSPX | PSPX2 thru PSP2019 owned but not installed
http://www.flickr.com/photos/37153430@N03/
http://www.flickr.com/photos/37153430@N03/
