Vous êtes ici    Logiciels supportés    Adobe Photoshop CS6 nl sv ru pl es de en

Adobe Photoshop CS6

Informations

Créateur Messages
Ronin DUSETTE
Admin

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 741153
Wine: 3.4

Retours d'expérience

Description

THIS SHOULD ALSO WORK WITH THE ADOBE CC VERSION OF PHOTOSHOP. 

NOTE: This application does NOT work on Intel graphics (at least not that I have seen). Nvidia and AMD graphics should be used. 

From adobe.com:

"Adobe Photoshop CS6 Extended delivers all the imaging magic in Photoshop CS6 plus 3D graphic design and image analysis tools.* Easily create rich 3D artwork, and enhance your 3D scenes with shadows, lighting, and animation. Retouch images with utter precision, control, and speed. Create vibrant videos and design anything you can imagine using intuitive tools. Paint and draw naturally and expressively. And get blazingly fast performance with the Mercury Graphics Engine."

Captures d'écran

MiniatureMiniature

Code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Arch Linux 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.8
 
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
       
PREFIX="PhotoshopCS6"
WINEVERSION="3.4"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
       
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 2316
       
POL_Debug_Init
       
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
INSTALLER="$APP_ANSWER"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
 
#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB
 
POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE"
 
 
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
 
# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"
 
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"
 
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
LinuxScripter Lundi 16 Avril 2018 à 13:14
LinuxScripter Anonymous

Information

Cette mise à jour a été acceptée par l'équipe

Messages

Changed from wine 3.3 to wine 3.4 and removed both of the 'SetOS = winxp' lines. Both of those steps were necessary to make Photoshop load.

Differences

@@ -4,37 +4,34 @@
 # Author : RoninDusette
 # Licence : GPLv3
 # PlayOnLinux: 4.2.8
-
-
+ 
+ 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
-      
+       
 PREFIX="PhotoshopCS6"
-WINEVERSION="3.3"
+WINEVERSION="3.4"
 TITLE="Adobe Photoshop CS6"
 EDITOR="Adobe Systems Inc."
 GAME_URL="http://www.adobe.com"
 AUTHOR="RoninDusette"
-      
+       
 #Initialization
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
 POL_SetupWindow_Init
 POL_SetupWindow_SetID 2316
-      
+       
 POL_Debug_Init
-      
+       
 # Presentation
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
-
+ 
 # Create Prefix
 POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
 INSTALLER="$APP_ANSWER"
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WINEVERSION"
-
-# Configuration
-Set_OS "winxp"
-
+ 
 #Dependencies
 POL_Call POL_Install_AdobeAir
 POL_Call POL_Install_atmlib
@@ -47,20 +44,19 @@
 POL_Call POL_Install_corefonts
 POL_Call POL_Install_tahoma2
 POL_Call POL_Install_FontsSmoothRGB
-
+ 
 POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE"
-
-
+ 
+ 
 # Installation
-Set_OS "winxp"
 POL_Wine_WaitBefore "$TITLE"
 POL_Wine "$INSTALLER"
 POL_Wine_WaitExit "$TITLE"
-
+ 
 # Create Shortcuts
 POL_Shortcut "photoshop.exe" "$TITLE"
-
+ 
 POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"
-
+ 
 POL_SetupWindow_Close
 exit 0
\ No newline at end of file

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Arch Linux 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.8
 
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
       
PREFIX="PhotoshopCS6"
WINEVERSION="3.4"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
       
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 2316
       
POL_Debug_Init
       
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
INSTALLER="$APP_ANSWER"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
 
#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB
 
POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE"
 
 
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
 
# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"
 
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"
 
POL_SetupWindow_Close
exit 0

Réponses

Anonymous
Dimanche 22 Avril 2018 à 6:37 -
You have to pay for this version of Photoshop right?
Anonymous
Lundi 23 Avril 2018 à 14:55 -
Why yes.
Lundi 23 Avril 2018 à 16:22 -
Of course. We provide no software like that.
soachishti Mercredi 21 Mars 2018 à 23:01
soachishti Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Wine 1.7.46-staging doesn't work fine on Ubuntu 18.04. Wine 3.3 did the job for me.

Differences

@@ -10,7 +10,7 @@
 source "$PLAYONLINUX/lib/sources"
       
 PREFIX="PhotoshopCS6"
-WINEVERSION="1.7.46-staging"
+WINEVERSION="3.3"
 TITLE="Adobe Photoshop CS6"
 EDITOR="Adobe Systems Inc."
 GAME_URL="http://www.adobe.com"

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Arch Linux 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.8


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="3.3"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 2316
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
INSTALLER="$APP_ANSWER"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE"


# Installation
Set_OS "winxp"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Anonymous
Vendredi 23 Mars 2018 à 22:51 -
Why do you use Set_OS function twice?
Vendredi 23 Mars 2018 à 23:06 -
@linuxscripter because it needs to be set for installation dependencies. At least at the time I wrote the script it did. That is not a sin to do that, BTW. I've written quite a few scripts and functions and sometimes it's required to automate the process.
Vendredi 23 Mars 2018 à 23:08 -
Ah. I see what you are saying. It's setting the same one twice. I will test that later. It originally declared win7 then xp (or vice versa), and it got changed along the way. My bad. Lol.
Vendredi 23 Mars 2018 à 23:09 -
@soachishti please verify that this works with screenshots and your debug output. You will need to wipe the virtual drive for previous installs before trying again.
Anonymous
Vendredi 30 Mars 2018 à 23:26 -
Photohop CS6 was working good on Ubuntu 18 but Photoshop performance was slow/lagging (like using over teamviewer). I tried Set_OS=win7 but no success.

However I am on Ubuntu 16 now and with Set_OS=win7 and WINE=3.4, it is working great.
Anonymous
Vendredi 30 Mars 2018 à 23:32 -
Log file: https://gist.github.com/soachishti/fdaad9a77884e152b5c98a7875a464a9
Screenshot: https://imgur.com/a/4Cdvp
Vendredi 30 Mars 2018 à 23:36 -
Word. I will update shortly.
Anonymous
Lundi 16 Avril 2018 à 13:10 -
I am on ubuntu 18.04 64bit. Had to change wine version to 3.4 and set the os to Windows 7 to get this program to work. But now it works fine. Log file: https://pastebin.com/F0XycWfn
Ronin DUSETTE Samedi 6 Janvier 2018 à 18:21
Ronin DUSETTE
Admin

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -52,7 +52,7 @@
 
 
 # Installation
-Set_OS "win7"
+Set_OS "winxp"
 POL_Wine_WaitBefore "$TITLE"
 POL_Wine "$INSTALLER"
 POL_Wine_WaitExit "$TITLE"

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Arch Linux 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.8


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.46-staging"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 2316
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
INSTALLER="$APP_ANSWER"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE"


# Installation
Set_OS "winxp"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

michaeldyl520 Mercredi 12 Juillet 2017 à 8:37
michaeldyl520 Anonymous

Messages

I`m in china,this program can`t recognize the chinese.Please tell me how to fixed it.

Réponses

philmoonamjid Lundi 20 Mars 2017 à 5:53
philmoonamjid Anonymous

Messages

Hello, thank you for the program. Unfortunatelly the program is not working. Whenever I run my Adobe Photoshop CS6, an error pop ups  "pol_wine" error. And the program is closed. I need help.

Réponses

Samedi 6 Janvier 2018 à 18:20 -
Please read the wiki. It will show you how to post the information we need to fix things like this. Without the proper information, I would just be guessing. ;)
danger89 Dimanche 12 Février 2017 à 21:52
danger89

Messages

But.. It only worked after I put Wine in Windows XP. Somhow Windows XP was set as version. Maybe: Set_OS "winxp", in the sript doesn't work anymore..?!

Réponses

Dimanche 12 Février 2017 à 21:53 -
Somehow Windows 7 as set***
Samedi 6 Janvier 2018 à 18:20 -
It jumps around because it needs to set other things up as XP. I will change that real quick.
Litceo Mardi 24 Janvier 2017 à 13:07
Litceo Anonymous

Messages

When I try to install Photoshop CC the installer says, that i need a64bit system Version.

Please Help me - my Linux Version is Ubuntu 16.10 64-bit

Litceo

Réponses

je1977 Vendredi 6 Janvier 2017 à 13:05
je1977 Anonymous

Messages

Hey together,

 

i have a little problem, Photoshop starts perfect after i install de POL vcrun6 but if i want to open a new image or if i load an image i get this Screen,,,, anybody an idea what can i do ?

My system is Arch Linux with XFCE

Photoshop_Error

Réponses

Anonymous
Vendredi 6 Janvier 2017 à 13:10 -
ohh i forgot what you see in the workplace is my Desktop and not an image
Vendredi 6 Janvier 2017 à 15:27 -
Which graphics card/drivers are you using?
Anonymous
Vendredi 6 Janvier 2017 à 16:39 -
Card: Nvidia GT630
Driver: nvidia 375.26-1
Anonymous
Mardi 10 Janvier 2017 à 8:42 -
any ideas ?
Mardi 10 Janvier 2017 à 15:18 -
I have no clue. I can't replicate the issue. Post your debug logs and lets see if that shows anything.
Anonymous
Mardi 10 Janvier 2017 à 16:22 -
here the log:
http://pastebin.com/2UR3LgM3
Anonymous
Samedi 14 Janvier 2017 à 14:07 -
and here my install log i hope it helps to fix my problem
http://uploaded.net/file/at7x8ieg
i have no idea what can i do
Anonymous
Dimanche 22 Janvier 2017 à 12:16 -
I had this problem myself and managed to fix it. Fix: Go to Edit > Preferences > Performance and uncheck "Use Graphics Processor' . I have a GTX 980 myself, what do you use? I hope this gets a better fix because Photoshop is a lot more laggy when not using my GPU.
98q43g Dimanche 16 Octobre 2016 à 6:20
98q43g Anonymous

Messages

Successfully installed CS6 version. But can't run it on Linux x86_64. Tried both staging and system's wine versions. Same result.
Here is a debug report:


[10/16/16 08:12:59] - Running wine-1.7.46-staging Photoshop.exe (Working directory : /home/<user>/.PlayOnLinux/wineprefix/PhotoshopCS6/drive_c/Program Files/Adobe/Adobe Photoshop CS6)
preloader: Warning: failed to reserve range 00010000-00110000
preloader: Warning: failed to reserve range 00010000-00110000
fixme:winediag:start_process Wine Staging 1.7.46 is a testing version containing experimental patches.
fixme:winediag:start_process Please report bugs at http://bugs.wine-staging.com (instead of winehq.org).
preloader: Warning: failed to reserve range 00010000-00110000
preloader: Warning: failed to reserve range 00010000-00110000
preloader: Warning: failed to reserve range 00010000-00110000
preloader: Warning: failed to reserve range 00010000-00110000
preloader: Warning: failed to reserve range 00010000-00110000
preloader: Warning: failed to reserve range 00010000-00110000
preloader: Warning: failed to reserve range 00010000-00110000
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
fixme:dwmapi:DwmIsCompositionEnabled 0x6cb0bfac
fixme:iphlpapi:NotifyIpInterfaceChange (family 0, callback 0x69e6d901, context 0x714108, init_notify 0, handle 0xfde7d4): stub
fixme:iphlpapi:CancelMibChangeNotify2 (handle (nil)): stub
preloader: Warning: failed to reserve range 00010000-00110000
wine: configuration in '/home/<user>/.PlayOnLinux//wineprefix/PhotoshopCS6' has been updated.
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
err:shell:HCR_GetFolderAttributes should be called for simple PIDL's only!
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x32fcc8 1 C) semi-stub
fixme:system:SetProcessDPIAware stub!
fixme:clipboard:AddClipboardFormatListener 0x3004e: stub
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
wine: Unhandled page fault on read access to 0x00000011 at address 0x4ec7c1f6 (thread 0009), starting debugger...
preloader: Warning: failed to reserve range 00010000-00110000

Unhandled exception: page fault on read access to 0x00000011 in 32-bit code (0x4ec7c1f6).
Register dump:
 CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
 EIP:4ec7c1f6 ESP:0032e828 EBP:0032e838 EFLAGS:00210256(  R- --  I  Z-A-P- )
 EAX:00110000 EBX:05c468c8 ECX:00000011 EDX:00000011
 ESI:05c48df4 EDI:00000000
Stack dump:
0x0032e828:  05c48d2c 05c48df4 00110000 05c46880
0x0032e838:  0032e858 4eca8916 00110000 0032e850
0x0032e848:  05c48d2c 05c48c90 00000002 000000c0
0x0032e858:  0032e884 4eca885a 0000000f 05c46880
0x0032e868:  00000000 05c48b48 05c48c68 00000005
0x0032e878:  05c48c94 00000000 00000007 0032e8c0
Backtrace:
=>0 0x4ec7c1f6 in gdiplus (+0x2c1f6) (0x0032e838)
  1 0x4eca8916 in gdiplus (+0x58915) (0x0032e858)
  2 0x4eca885a in gdiplus (+0x58859) (0x0032e884)
  3 0x4ec7c6b7 in gdiplus (+0x2c6b6) (0x0032e8c0)
  4 0x4ec7ad4a in gdiplus (+0x2ad49) (0x0032e8e0)
  5 0x4ec7ac05 in gdiplus (+0x2ac04) (0x0032ea1c)
  6 0x4ed13ef8 in gdiplus (+0xc3ef7) (0x0032ec40)
  7 0x4ed1413a in gdiplus (+0xc4139) (0x0032f29c)
  8 0x4ecc7b67 in gdiplus (+0x77b66) (0x0032f2c0)
  9 0x4eca9c47 in gdiplus (+0x59c46) (0x0032f2e4)
  10 0x0323dca7 in adobeowl (+0xcdca6) (0x0032f308)
  11 0x03243072 in adobeowl (+0xd3071) (0x0032f3a0)
  12 0x03a70000 (0x0032f3a0)
  13 0x03a70000 (0x0032f3a0)
  14 0x03a70000 (0x0032f3a0)
  15 0x03a70000 (0x0032f3a0)
  16 0x03a70000 (0x0032f3a0)
  17 0x03a70000 (0x0032f3a0)
  18 0x03a70000 (0x0032f3a0)
  19 0x03a70000 (0x0032f3a0)
  20 0x03a70000 (0x0032f3a0)
  21 0x03a70000 (0x0032f3a0)
  22 0x03a70000 (0x0032f3a0)
  23 0x03a70000 (0x0032f3a0)
  24 0x03a70000 (0x0032f3a0)
  25 0x03a70000 (0x0032f3a0)
  26 0x03a70000 (0x0032f3a0)
  27 0x03a70000 (0x0032f3a0)
  28 0x03a70000 (0x0032f3a0)
  29 0x03a70000 (0x0032f3a0)
  30 0x03a70000 (0x0032f3a0)
  31 0x03a70000 (0x0032f3a0)
  32 0x03a70000 (0x0032f3a0)
  33 0x03a70000 (0x0032f3a0)
  34 0x03a70000 (0x0032f3a0)
  35 0x03a70000 (0x0032f3a0)
  36 0x03a70000 (0x0032f3a0)
  37 0x03a70000 (0x0032f3a0)
  38 0x03a70000 (0x0032f3a0)
  39 0x03a70000 (0x0032f3a0)
  40 0x03a70000 (0x0032f3a0)
  41 0x03a70000 (0x0032f3a0)
  42 0x03a70000 (0x0032f3a0)
  43 0x03a70000 (0x0032f3a0)
  44 0x03a70000 (0x0032f3a0)
  45 0x03a70000 (0x0032f3a0)
  46 0x03a70000 (0x0032f3a0)
  47 0x03a70000 (0x0032f3a0)
  48 0x03a70000 (0x0032f3a0)
  49 0x03a70000 (0x0032f3a0)
  50 0x03a70000 (0x0032f3a0)
  51 0x03a70000 (0x0032f3a0)
  52 0x03a70000 (0x0032f3a0)
  53 0x03a70000 (0x0032f3a0)
  54 0x03a70000 (0x0032f3a0)
  55 0x03a70000 (0x0032f3a0)
  56 0x03a70000 (0x0032f3a0)
  57 0x03a70000 (0x0032f3a0)
  58 0x03a70000 (0x0032f3a0)
  59 0x03a70000 (0x0032f3a0)
  60 0x03a70000 (0x0032f3a0)
  61 0x03a70000 (0x0032f3a0)
  62 0x03a70000 (0x0032f3a0)
  63 0x03a70000 (0x0032f3a0)
  64 0x03a70000 (0x0032f3a0)
  65 0x03a70000 (0x0032f3a0)
  66 0x03a70000 (0x0032f3a0)
  67 0x03a70000 (0x0032f3a0)
  68 0x03a70000 (0x0032f3a0)
  69 0x03a70000 (0x0032f3a0)
  70 0x03a70000 (0x0032f3a0)
  71 0x03a70000 (0x0032f3a0)
  72 0x03a70000 (0x0032f3a0)
  73 0x03a70000 (0x0032f3a0)
  74 0x03a70000 (0x0032f3a0)
  75 0x03a70000 (0x0032f3a0)
  76 0x03a70000 (0x0032f3a0)
  77 0x03a70000 (0x0032f3a0)
  78 0x03a70000 (0x0032f3a0)
  79 0x03a70000 (0x0032f3a0)
  80 0x03a70000 (0x0032f3a0)
  81 0x03a70000 (0x0032f3a0)
  82 0x03a70000 (0x0032f3a0)
  83 0x03a70000 (0x0032f3a0)
  84 0x03a70000 (0x0032f3a0)
  85 0x03a70000 (0x0032f3a0)
  86 0x03a70000 (0x0032f3a0)
  87 0x03a70000 (0x0032f3a0)
  88 0x03a70000 (0x0032f3a0)
  89 0x03a70000 (0x0032f3a0)
  90 0x03a70000 (0x0032f3a0)
  91 0x03a70000 (0x0032f3a0)
  92 0x03a70000 (0x0032f3a0)
  93 0x03a70000 (0x0032f3a0)
  94 0x03a70000 (0x0032f3a0)
  95 0x03a70000 (0x0032f3a0)
  96 0x03a70000 (0x0032f3a0)
  97 0x03a70000 (0x0032f3a0)
  98 0x03a70000 (0x0032f3a0)
  99 0x03a70000 (0x0032f3a0)
  100 0x03a70000 (0x0032f3a0)
  101 0x03a70000 (0x0032f3a0)
  102 0x03a70000 (0x0032f3a0)
  103 0x03a70000 (0x0032f3a0)
  104 0x03a70000 (0x0032f3a0)
  105 0x03a70000 (0x0032f3a0)
  106 0x03a70000 (0x0032f3a0)
  107 0x03a70000 (0x0032f3a0)
  108 0x03a70000 (0x0032f3a0)
  109 0x03a70000 (0x0032f3a0)
  110 0x03a70000 (0x0032f3a0)
  111 0x03a70000 (0x0032f3a0)
  112 0x03a70000 (0x0032f3a0)
  113 0x03a70000 (0x0032f3a0)
  114 0x03a70000 (0x0032f3a0)
  115 0x03a70000 (0x0032f3a0)
  116 0x03a70000 (0x0032f3a0)
  117 0x03a70000 (0x0032f3a0)
  118 0x03a70000 (0x0032f3a0)
  119 0x03a70000 (0x0032f3a0)
  120 0x03a70000 (0x0032f3a0)
  121 0x03a70000 (0x0032f3a0)
  122 0x03a70000 (0x0032f3a0)
  123 0x03a70000 (0x0032f3a0)
  124 0x03a70000 (0x0032f3a0)
  125 0x03a70000 (0x0032f3a0)
  126 0x03a70000 (0x0032f3a0)
  127 0x03a70000 (0x0032f3a0)
  128 0x03a70000 (0x0032f3a0)
  129 0x03a70000 (0x0032f3a0)
  130 0x03a70000 (0x0032f3a0)
  131 0x03a70000 (0x0032f3a0)
  132 0x03a70000 (0x0032f3a0)
  133 0x03a70000 (0x0032f3a0)
  134 0x03a70000 (0x0032f3a0)
  135 0x03a70000 (0x0032f3a0)
  136 0x03a70000 (0x0032f3a0)
  137 0x03a70000 (0x0032f3a0)
  138 0x03a70000 (0x0032f3a0)
  139 0x03a70000 (0x0032f3a0)
  140 0x03a70000 (0x0032f3a0)
  141 0x03a70000 (0x0032f3a0)
  142 0x03a70000 (0x0032f3a0)
  143 0x03a70000 (0x0032f3a0)
  144 0x03a70000 (0x0032f3a0)
  145 0x03a70000 (0x0032f3a0)
  146 0x03a70000 (0x0032f3a0)
  147 0x03a70000 (0x0032f3a0)
  148 0x03a70000 (0x0032f3a0)
  149 0x03a70000 (0x0032f3a0)
  150 0x03a70000 (0x0032f3a0)
  151 0x03a70000 (0x0032f3a0)
  152 0x03a70000 (0x0032f3a0)
  153 0x03a70000 (0x0032f3a0)
  154 0x03a70000 (0x0032f3a0)
  155 0x03a70000 (0x0032f3a0)
  156 0x03a70000 (0x0032f3a0)
  157 0x03a70000 (0x0032f3a0)
  158 0x03a70000 (0x0032f3a0)
  159 0x03a70000 (0x0032f3a0)
  160 0x03a70000 (0x0032f3a0)
  161 0x03a70000 (0x0032f3a0)
  162 0x03a70000 (0x0032f3a0)
  163 0x03a70000 (0x0032f3a0)
  164 0x03a70000 (0x0032f3a0)
  165 0x03a70000 (0x0032f3a0)
  166 0x03a70000 (0x0032f3a0)
  167 0x03a70000 (0x0032f3a0)
  168 0x03a70000 (0x0032f3a0)
  169 0x03a70000 (0x0032f3a0)
  170 0x03a70000 (0x0032f3a0)
  171 0x03a70000 (0x0032f3a0)
  172 0x03a70000 (0x0032f3a0)
  173 0x03a70000 (0x0032f3a0)
  174 0x03a70000 (0x0032f3a0)
  175 0x03a70000 (0x0032f3a0)
  176 0x03a70000 (0x0032f3a0)
  177 0x03a70000 (0x0032f3a0)
  178 0x03a70000 (0x0032f3a0)
  179 0x03a70000 (0x0032f3a0)
  180 0x03a70000 (0x0032f3a0)
  181 0x03a70000 (0x0032f3a0)
  182 0x03a70000 (0x0032f3a0)
  183 0x03a70000 (0x0032f3a0)
  184 0x03a70000 (0x0032f3a0)
  185 0x03a70000 (0x0032f3a0)
  186 0x03a70000 (0x0032f3a0)
  187 0x03a70000 (0x0032f3a0)
  188 0x03a70000 (0x0032f3a0)
  189 0x03a70000 (0x0032f3a0)
  190 0x03a70000 (0x0032f3a0)
  191 0x03a70000 (0x0032f3a0)
  192 0x03a70000 (0x0032f3a0)
  193 0x03a70000 (0x0032f3a0)
  194 0x03a70000 (0x0032f3a0)
  195 0x03a70000 (0x0032f3a0)
  196 0x03a70000 (0x0032f3a0)
  197 0x03a70000 (0x0032f3a0)
  198 0x03a70000 (0x0032f3a0)
  199 0x03a70000 (0x0032f3a0)
  200 0x03a70000 (0x0032f3a0)
0x4ec7c1f6: movl    0x0(%edi,%ecx,1),%ecx
Modules:
Module    Address            Debug info    Name (116 modules)
PE      330000-  38a000    Deferred        cggl
PE      390000-  399000    Deferred        adbeape
PE      3a0000-  3de000    Deferred        ahclient
PE      3e0000-  3f3000    Deferred        tbbmalloc
PE      400000- 30cb000    Deferred        photoshop
PE     30d0000- 3161000    Deferred        sccore
PE     3170000- 32e7000    Export          adobeowl
PE     32f0000- 3397000    Deferred        axedomcore
PE     33a0000- 381c000    Deferred        mps
PE     3820000- 3928000    Deferred        plugplug
PE     3930000- 3955000    Deferred        tbb
PE     4a30000- 4bf5000    Deferred        adobelinguistic
PE     5270000- 53df000    Deferred        photoshop
PE     53e0000- 561f000    Deferred        psviews
PE     5620000- 5a62000    Deferred        psart
PE    10000000-100a4000    Deferred        extendscript
PE    4ec50000-4edfb000    Export          gdiplus
PE    6a000000-6a63a000    Deferred        cg
PE    78520000-785c3000    Deferred        msvcr90
PE    78aa0000-78b5f000    Deferred        msvcr100
ELF    7a800000-7a92c000    Deferred        opengl32<elf>
  \-PE    7a820000-7a92c000    \               opengl32
ELF    7b800000-7ba6a000    Deferred        kernel32<elf>
  \-PE    7b820000-7ba6a000    \               kernel32
ELF    7bc00000-7bcf2000    Deferred        ntdll<elf>
  \-PE    7bc10000-7bcf2000    \               ntdll
ELF    7bf00000-7bf03000    Deferred        <wine-loader>
ELF    7d64e000-7d654000    Deferred        libxfixes.so.3
ELF    7d654000-7d65f000    Deferred        libxcursor.so.1
ELF    7d65f000-7d670000    Deferred        libxi.so.6
ELF    7d670000-7d673000    Deferred        libxcomposite.so.1
ELF    7d673000-7d67e000    Deferred        libxrandr.so.2
ELF    7d67e000-7d689000    Deferred        libxrender.so.1
ELF    7d689000-7d68f000    Deferred        libxxf86vm.so.1
ELF    7d68f000-7d692000    Deferred        libxinerama.so.1
ELF    7d692000-7d698000    Deferred        libxdmcp.so.6
ELF    7d698000-7d6ba000    Deferred        libxcb.so.1
ELF    7d6ba000-7d7fd000    Deferred        libx11.so.6
ELF    7d7fd000-7d80f000    Deferred        libxext.so.6
ELF    7d80f000-7d8a3000    Deferred        winex11<elf>
  \-PE    7d820000-7d8a3000    \               winex11
ELF    7d8a3000-7d8aa000    Deferred        libffi.so.6
ELF    7d8aa000-7d91c000    Deferred        libgmp.so.10
ELF    7d91c000-7d94f000    Deferred        libhogweed.so.4
ELF    7d94f000-7d98e000    Deferred        libnettle.so.6
ELF    7d98e000-7d9c2000    Deferred        libidn.so.11
ELF    7d9c2000-7da1b000    Deferred        libp11-kit.so.0
ELF    7da1b000-7da4e000    Deferred        libcrypt.so.1
ELF    7da4e000-7db9a000    Deferred        libgnutls.so.30
ELF    7db9a000-7dc08000    Deferred        libcups.so.2
ELF    7dc42000-7dc66000    Deferred        imm32<elf>
  \-PE    7dc50000-7dc66000    \               imm32
ELF    7dd80000-7dda7000    Deferred        libexpat.so.1
ELF    7dda7000-7dde2000    Deferred        libfontconfig.so.1
ELF    7dde2000-7de19000    Deferred        libpng16.so.16
ELF    7de19000-7de2a000    Deferred        libbz2.so.1
ELF    7de2a000-7df6c000    Deferred        libglib-2.0.so.0
ELF    7df6c000-7e003000    Deferred        libfreetype.so.6
ELF    7e044000-7e047000    Deferred        libxau.so.6
ELF    7e047000-7e0c9000    Deferred        libharfbuzz.so.0
ELF    7e103000-7e246000    Deferred        oleaut32<elf>
  \-PE    7e120000-7e246000    \               oleaut32
ELF    7e246000-7e26d000    Deferred        mpr<elf>
  \-PE    7e250000-7e26d000    \               mpr
ELF    7e26d000-7e286000    Deferred        libz.so.1
ELF    7e286000-7e303000    Deferred        wininet<elf>
  \-PE    7e290000-7e303000    \               wininet
ELF    7e303000-7e455000    Deferred        msvcp90<elf>
  \-PE    7e340000-7e455000    \               msvcp90
ELF    7e455000-7e6fe000    Deferred        shell32<elf>
  \-PE    7e460000-7e6fe000    \               shell32
ELF    7e6fe000-7e740000    Deferred        winspool<elf>
  \-PE    7e710000-7e740000    \               winspool
ELF    7e740000-7e77b000    Deferred        ws2_32<elf>
  \-PE    7e750000-7e77b000    \               ws2_32
ELF    7e77b000-7e88e000    Deferred        msvcp100<elf>
  \-PE    7e7c0000-7e88e000    \               msvcp100
ELF    7e88e000-7e909000    Deferred        shlwapi<elf>
  \-PE    7e8a0000-7e909000    \               shlwapi
ELF    7e909000-7e956000    Deferred        liblcms2.so.2
ELF    7e956000-7e9dc000    Deferred        rpcrt4<elf>
  \-PE    7e960000-7e9dc000    \               rpcrt4
ELF    7e9dc000-7eb1f000    Deferred        ole32<elf>
  \-PE    7e9f0000-7eb1f000    \               ole32
ELF    7eb1f000-7eb98000    Deferred        advapi32<elf>
  \-PE    7eb30000-7eb98000    \               advapi32
ELF    7eb98000-7ecb1000    Deferred        gdi32<elf>
  \-PE    7ebb0000-7ecb1000    \               gdi32
ELF    7ecb1000-7ee27000    Deferred        user32<elf>
  \-PE    7ecc0000-7ee27000    \               user32
ELF    7ee27000-7eede000    Deferred        msvcrt<elf>
  \-PE    7ee40000-7eede000    \               msvcrt
ELF    7ef2c000-7ef3e000    Deferred        libnss_files.so.2
ELF    7ef3e000-7ef4b000    Deferred        libnss_nis.so.2
ELF    7ef4b000-7ef67000    Deferred        libnsl.so.1
ELF    7ef67000-7ef72000    Deferred        libnss_compat.so.2
ELF    7ef72000-7efc6000    Deferred        libm.so.6
ELF    7efc7000-7efe7000    Deferred        mscms<elf>
  \-PE    7efd0000-7efe7000    \               mscms
ELF    7efe7000-7f000000    Deferred        version<elf>
  \-PE    7eff0000-7f000000    \               version
ELF    f7297000-f72bd000    Deferred        sti<elf>
  \-PE    f72a0000-f72bd000    \               sti
ELF    f72bd000-f72f5000    Deferred        uxtheme<elf>
  \-PE    f72c0000-f72f5000    \               uxtheme
ELF    f72f5000-f7400000    Deferred        comctl32<elf>
  \-PE    f7300000-f7400000    \               comctl32
ELF    f740b000-f7410000    Deferred        libdl.so.2
ELF    f742d000-f7440000    Deferred        psapi<elf>
  \-PE    f7430000-f7440000    \               psapi
ELF    f7441000-f744a000    Deferred        librt.so.1
ELF    f744a000-f75e4000    Deferred        libc.so.6
ELF    f75e4000-f7601000    Deferred        libpthread.so.0
ELF    f7601000-f77c7000    Dwarf           libwine.so.1
ELF    f77c9000-f77f0000    Deferred        ld-linux.so.2
ELF    f77f2000-f77f3000    Deferred        [vdso].so
Threads:
process  tid      prio (all id:s are in hex)
00000008 (D) C:\Program Files\Adobe\Adobe Photoshop CS6\Photoshop.exe
    00000042    0
    00000041    0
    00000040    0
    0000003f    0
    0000003e    0
    00000009    0 <==
0000000e services.exe
    0000003d    0
    0000001c    0
    00000016    0
    00000014    0
    00000010    0
    0000000f    0
00000012 winedevice.exe
    0000001b    0
    00000018    0
    00000017    0
    00000013    0
00000019 plugplay.exe
    0000001f    0
    0000001e    0
    0000001a    0
00000022 explorer.exe
    00000028    0
    00000027    0
    00000026    0
    00000023    0
System information:
    Wine build: wine-1.7.46 (Staging)
    Platform: i386
    Host system: Linux
    Host version: 4.7.7

Réponses

Anonymous
Mercredi 2 Novembre 2016 à 16:31 -
what?
Anonymous
Vendredi 6 Janvier 2017 à 15:18 -
try to install other libraries, like vcrun6 msxml3 or others in my case was vcrun6 helpful
Dimanche 12 Février 2017 à 21:49 -
In my it worked to go to Configuration --> Configure Wine --> Windows Version: Windows XP (was: Windows 7). This fixed it for me.
ZenYu0101 Mercredi 12 Octobre 2016 à 17:46
ZenYu0101 Anonymous

Messages

Hy, i got this error when i am tring to install it. Any clue? Ty

Error in POL_Shortcut
Binary not found: photoshop.exe
Have you installed the program to the default location?

Réponses

Anonymous
Vendredi 18 Mai 2018 à 1:31 -
any luck??? Mine is taking forever - but keeps getting that message
Vendredi 18 Mai 2018 à 2:40 -
You need to start a thread in the forums with your computer specs and debug log. Without any information about your system or logs, we could only guess.
riotbr Dimanche 3 Juillet 2016 à 0:49
riotbr Anonymous

Messages

Hi!

It gets an error when downloading Tahoma32.exe. The host of Microsoft doesn't work.

I've tested with another URL and the download it's working: http://residence-eon.tuxfamily.org/Wine/tahoma32.exe

Thanks in advance ;)

 

 

Réponses

pecg Dimanche 19 Juin 2016 à 16:29
pecg Anonymous

Messages

La dirección no resulta comprensible

Firefox no sabe cómo abrir esta dirección, porque el protocolo (playonlinux) no está asociado con ninguna aplicación.

    Podría necesitar instalar otro software para abrir esta dirección.

it tells me that:

the direction is not understandable

firefox doesnt know how to open this direction, because the protocol (playonlinux) isnt asociated with another aplication

Réponses

Dimanche 26 Juin 2016 à 17:42 -
Read the wiki to learn how to use PlayOnLinux.
josemiguel Mardi 24 Mai 2016 à 17:12
josemiguel Anonymous

Messages

I'm having problem with the healing brush tool; the alt+ click is not working; is a problem with photoshop or is a configuration problem with linux mint?

How can't a fix?

Réponses

Anonymous
Mardi 24 Mai 2016 à 22:54 -
fix on Linux mint mate.
Mardi 24 Mai 2016 à 23:20 -
Probably a problem with Wine itself. Check winehq.org and see if a fix may be available. I am working from my phone at the moment and can't look into the issue at this time. It may actually be because of a hockey associated with the ALT key, but I can't test it right now to be sure.
Vendredi 27 Mai 2016 à 9:02 -
By default many distros bind [ALT] + Left click to drag windows around your desktop and that's why its not working. Unbind or reassign the [ALT] key in your OS.
josemiguel Jeudi 19 Mai 2016 à 23:37
josemiguel Anonymous

Messages

Is giving a error:

fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
err:shell:HCR_GetFolderAttributes should be called for simple PIDL's only!
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x32fcc8 1 C) semi-stub
fixme:system:SetProcessDPIAware stub!

HOW CAN I FIX?

Réponses

Anonymous
Samedi 21 Mai 2016 à 1:59 -
3rd and 4th are kinda "normal" thing with PS (at least I think). With 1st I'm not familiar... but 2nd I'm getting from time to time and to fix it, I need to shut down all POL processes (option in menu) and start/run again. So far, worked every time. This issue also seems "normal" :)
Anonymous
Mardi 24 Mai 2016 à 17:09 -
Problem fix, re-install photoshop.
calex Samedi 13 Février 2016 à 11:57
calex Anonymous

Messages

This script works for Adobe Illustrator CS6 as well.

Installed and tested on Linux Mint 17.3 64-bit

AMD Graphics.

 

 

 

 

 

 

 

Réponses

Anonymous
Vendredi 8 Avril 2016 à 16:39 -
Confirmed on Ubuntu 14.04. Uploaded my working script to this topic:
https://www.playonlinux.com/pl/app-2731.html
petch Vendredi 4 Décembre 2015 à 23:48
petch
Développeur

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Add POL_SetupWindow_SetID

Differences

@@ -19,6 +19,7 @@
 #Initialization
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
 POL_SetupWindow_Init
+POL_SetupWindow_SetID 2316
       
 POL_Debug_Init
       

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Arch Linux 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.8


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.46-staging"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 2316
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
INSTALLER="$APP_ANSWER"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE"


# Installation
Set_OS "win7"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Ronin DUSETTE Jeudi 9 Juillet 2015 à 18:01
Ronin DUSETTE
Admin

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

So, the new wine-staging version works with PS. Probably works with Lightroom, as well. One thing that I figured out is that this seems to work really well with Adobe Creative Cloud; I can connect to my account and download and run PS and LR so far. I am going to make a separate script for Adobe CC, though (I anticipate the CC versions needing more TLC than the regular versions before they went into cloud services. 

Differences

@@ -1,16 +1,16 @@
 #!/bin/bash
 # Date : (2014-10-20)
-# Distribution used to test : Kubuntu 14.04 LTS 64-bit
+# Distribution used to test : Arch Linux 64-bit
 # Author : RoninDusette
 # Licence : GPLv3
-# PlayOnLinux: 4.2.5
+# PlayOnLinux: 4.2.8
 
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
       
 PREFIX="PhotoshopCS6"
-WINEVERSION="1.7.34-PhotoshopBrushes"
+WINEVERSION="1.7.46-staging"
 TITLE="Adobe Photoshop CS6"
 EDITOR="Adobe Systems Inc."
 GAME_URL="http://www.adobe.com"

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Arch Linux 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.8


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.46-staging"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
INSTALLER="$APP_ANSWER"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE"


# Installation
Set_OS "win7"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Jeudi 9 Juillet 2015 à 21:25 -
This is good news. Wine staging will be the default distribution in POLv5. We should try to avoid patches as we can now
Jeudi 9 Juillet 2015 à 21:40 -
Sounds good to me. :) I will make sure that I keep that in mind. I will also try to go back and update any older scripts that I can with -staging releases. I know for a fact I cannot do it with Reason 5 (it is a one-off patch, specifically for that program), but I should be able to update the others, as long as the -staging WineBuild works.
Anonymous
Vendredi 23 Décembre 2016 à 10:07 -
Hello..Happy Cristmas.
Quentin PÂRIS Lundi 29 Juin 2015 à 23:26
Quentin PÂRIS
Admin

Messages

It seems that the AdobePhotoshop patch has been included into Wine Staging (https://bugs.wine-staging.com/show_bug.cgi?id=382)

Can you confirm?

Réponses

Mercredi 8 Juillet 2015 à 21:24 -
Yes. I opened a ticket to do this and assign it to myself. I was going to test it tomorrow. I have been uber busy lately. :)

https://www.playonlinux.com/en/issue-5096.html
phsouza Lundi 1 Juin 2015 à 22:16
phsouza Anonymous

Messages

Hello,

Can I use The complete creative Suit CS6? or just Illustrator and Photoshop CS6 with POL?

Réponses

Mercredi 3 Juin 2015 à 6:08 -
This was only tested with PS CS6. Not the whole suite. Illustrator may work. Let us know if it does, and I will whip up a script for Illustrator. :)
Anonymous
Jeudi 3 Décembre 2015 à 16:33 -
Tested with Illustrator, it installs but does not run, Error 16, some problem with permissions according to Adobe forums.
Anonymous
Jeudi 3 Décembre 2015 à 16:33 -
Playon linux on terminal shows: fixme:ntdll:NtLockFile I/O completion on lock not
Anonymous
Jeudi 3 Décembre 2015 à 17:03 -
Edit: CC does not work, CS6 does.
Ayaskull Mardi 26 Mai 2015 à 16:52
Ayaskull Anonymous

Messages

Can I use a wacom tablet with this software on POL?

Réponses

Mardi 26 Mai 2015 à 20:57 -
Only if it works through Linux. Usually, if you can use a device in Linux, you can use it with Wine/POL. :)
logesh arun Mercredi 29 Avril 2015 à 20:39
logesh arun Anonymous

Messages

its very usefull software

Réponses

Ronin DUSETTE Dimanche 19 Avril 2015 à 6:26
Ronin DUSETTE
Admin

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Updating to new WineBuild.

Differences

@@ -10,7 +10,7 @@
 source "$PLAYONLINUX/lib/sources"
       
 PREFIX="PhotoshopCS6"
-WINEVERSION="1.7.34-PhotoshopBrushes"
+WINEVERSION="1.7.41-PhotoshopBrushes"
 TITLE="Adobe Photoshop CS6"
 EDITOR="Adobe Systems Inc."
 GAME_URL="http://www.adobe.com"

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.41-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
INSTALLER="$APP_ANSWER"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE"


# Installation
Set_OS "win7"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Ronin DUSETTE Lundi 16 Février 2015 à 0:04
Ronin DUSETTE
Admin

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Changing order of Windows version call.

Differences

@@ -51,10 +51,10 @@
 
 
 # Installation
+Set_OS "win7"
 POL_Wine_WaitBefore "$TITLE"
 POL_Wine "$INSTALLER"
 POL_Wine_WaitExit "$TITLE"
-Set_OS "win7"
 
 # Create Shortcuts
 POL_Shortcut "photoshop.exe" "$TITLE"

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.34-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
INSTALLER="$APP_ANSWER"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE"


# Installation
Set_OS "win7"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Anonymous
Mercredi 18 Février 2015 à 21:45 -
I'm experiencing some issues related to fonts. Menus with problems: Image Size, Duplicate Layer and New option Menu. How can I send screenshots showing problems?
Mercredi 18 Février 2015 à 21:51 -
Please post in the forums with your full computer specs and debug log and we can take a look at it.
Anonymous
Jeudi 19 Février 2015 à 18:01 -
Thanks Rodin. See this thread: http://www.playonlinux.com/en/topic-12876.html
Ronin DUSETTE Vendredi 13 Février 2015 à 8:45
Ronin DUSETTE
Admin

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Adding better note before PS install actually starts.

Differences

@@ -47,7 +47,7 @@
 POL_Call POL_Install_tahoma2
 POL_Call POL_Install_FontsSmoothRGB
 
-POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"
+POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE"
 
 
 # Installation

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.34-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
INSTALLER="$APP_ANSWER"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE"


# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Ronin DUSETTE Vendredi 13 Février 2015 à 8:37
Ronin DUSETTE
Admin

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Updating to newer patched Wine version as per ticket 4984:

http://www.playonlinux.com/en/issue-4984.html

Differences

@@ -10,7 +10,7 @@
 source "$PLAYONLINUX/lib/sources"
       
 PREFIX="PhotoshopCS6"
-WINEVERSION="1.7.20-PhotoshopBrushes"
+WINEVERSION="1.7.34-PhotoshopBrushes"
 TITLE="Adobe Photoshop CS6"
 EDITOR="Adobe Systems Inc."
 GAME_URL="http://www.adobe.com"

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.34-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
INSTALLER="$APP_ANSWER"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"


# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

petch Mercredi 28 Janvier 2015 à 2:51
petch
Développeur

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Hi,

Looking at a bug report, it may happen that POL_Download_Resource clobbers $APP_ANSWER in case of redownload. I just pushed a fix to the dev branch of PoL/PoM but it might not be common use for a while, so for the time being it may be a good idea to save $APP_ANSWER content to another variable when they're lots of function calls before it's being used...

Differences

@@ -27,6 +27,7 @@
 
 # Create Prefix
 POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
+INSTALLER="$APP_ANSWER"
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WINEVERSION"
 
@@ -51,7 +52,7 @@
 
 # Installation
 POL_Wine_WaitBefore "$TITLE"
-POL_Wine "$APP_ANSWER"
+POL_Wine "$INSTALLER"
 POL_Wine_WaitExit "$TITLE"
 Set_OS "win7"
 

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
INSTALLER="$APP_ANSWER"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"


# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Mercredi 28 Janvier 2015 à 3:07 -
Sounds good. Thanks, petch.
Ronin DUSETTE Samedi 10 Janvier 2015 à 8:24
Ronin DUSETTE
Admin

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -14,7 +14,7 @@
 TITLE="Adobe Photoshop CS6"
 EDITOR="Adobe Systems Inc."
 GAME_URL="http://www.adobe.com"
-AUTHOR="DJYoshaBYD"
+AUTHOR="RoninDusette"
       
 #Initialization
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"


# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Anonymous
Samedi 24 Janvier 2015 à 18:14 -
Just curious, does Josefin Sans not work correctly for anyone else?
Anonymous
Samedi 24 Janvier 2015 à 18:16 -
(whoops, wanted a newline...)
Roboto from Google Fonts works fine but Josefin Sans is only shown to have a couple of weights (Light Italic, Bold and Bold Italic). https://www.google.com/fonts#UsePlace:use/Collection:Josefin+Sans
Ronin DUSETTE Vendredi 9 Janvier 2015 à 22:51
Ronin DUSETTE
Admin

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Adding revised Tahoma installer to help fix missing font issue on certain machines. 

Differences

@@ -43,6 +43,7 @@
 POL_Call POL_Install_vcrun2008
 POL_Call POL_Install_vcrun2010
 POL_Call POL_Install_corefonts
+POL_Call POL_Install_tahoma2
 POL_Call POL_Install_FontsSmoothRGB
 
 POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="DJYoshaBYD"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"


# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Vendredi 9 Janvier 2015 à 23:04 -
Ok ok ok. This is now FIXED! The missing fonts from certain systems should now not be a problem. No virtual desktop needed. The fix is ready to go. Enjoy!
phys1ks Vendredi 2 Janvier 2015 à 21:40
phys1ks Anonymous

Messages

Program runs well, but is there a fix for image previews in the open box? a wine bug has been submit here... https://bugs.winehq.org/show_bug.cgi?id=35805 but maybe a work around can be found? gdiplus does not seem to fix it...

Can also confirm no labels on layers. Debian Jessie - Openbox

Réponses

Samedi 3 Janvier 2015 à 7:26 -
That is not something that I can really fix. That is something that will need to be worked by the Wine team to see if it is a bug in Wine itself. gdiplus already installs with this, so there is no need to install it, but if that does not help, I am not sure. Let's see what the Wine team says (I noticed you said you launched it with POL; they are likely going to close your bug report and tell you to run it with regular Wine. Just a warning. They have done it to me before. They like to only work with plain Wine. lol.).
Anonymous
Mardi 6 Janvier 2015 à 23:01 -
I'd really almost call this a show stopper... I can't create new documents because the dialog is smooshed beyond recognition. I'm not sure what is causing this either or how to troubleshoot it?
Mardi 6 Janvier 2015 à 23:07 -
Can you post a screenshot? Can you try it with a different desktop environment like KDE, Cinnamon, XFCE, or something? I don't have that issue on my system at home, so I am not sure. Also, what did the Wine team say about the bug? I mean, it cannot be doing this on every system, because with over 21,000 downloads, I would imagine a lot more people would have reported this.
Anonymous
Mercredi 7 Janvier 2015 à 19:04 -
Alright, tried in GNOME XFCE4 and my default OpenBox. All have the same issue...
Mercredi 7 Janvier 2015 à 19:08 -
No labels on the layers is something that is still an issue with Wine, so hopefully they will come up with a fix, but as for the image previews, I just don't know what would cause that. I am running Kubuntu 14.04 on my system, and it seems to work great. I have to imagine it is an issue with Wine, but we would need the Wine team to troubleshoot it (I personally don't know C or C++) and create a fix, though I would have to imagine there is a fix, as it seems to work fine with how it is set up on my systems. Has there been any movement on the bug report at winehq?
Anonymous
Mercredi 7 Janvier 2015 à 19:09 -
Crap I hit enter too fast... here is the screenshots -> http://imgur.com/a/OZvsZ
Mercredi 7 Janvier 2015 à 19:10 -
Lol.
Anonymous
Mercredi 7 Janvier 2015 à 19:10 -
Nothing on the bug report at winehq from what I can see or have got in my email.
Mercredi 7 Janvier 2015 à 19:12 -
From the screenshots I see, it looks like you are missing fonts. A previous user commented:

"i have already installed microsoft paint at play on linux, and then, i just copy font folder from Playonlinux virtual hard drive > ms paint > drive_c > windows, paste that at Playonlinux virtual hard drive > photoshopcs6 > drive_c > windows, and that fixed, im sorry too late to answer :)"

I am going to be adding this fix into the script pretty soon, but for the time being, try that and see if it helps. Your screenshots pretty much match the same issue the user below brought up.
Anonymous
Mercredi 7 Janvier 2015 à 19:15 -
lol the Fonts folder is empty in the ms paint / drive_c / windows folder....I'll see what I can do about fonts...
Mercredi 7 Janvier 2015 à 19:18 -
That is odd... I am not sure why it wouldn't show up. Unfortunately, I have no clue which exact font it is wanting, but that is for sure why the fonts are not showing up. I just wish I had some more concise information, but if a lot people are having this issue, they are not speaking up about it, which makes it hard to troubleshoot. If I figure out anything, I will, of course, be updating this script to make sure that it is up-to-par.
Anonymous
Mercredi 7 Janvier 2015 à 19:18 -
Well actually, the fonts are working inside Photoshop, its just that the dialogs are all smooshed. Like its not reading the size the fields are supposed to be? If I hit a dropdown I see the options.
Anonymous
Mercredi 7 Janvier 2015 à 19:20 -
Do you have Skype or something? We can troubleshoot this and get it figured out. noah.dolph is mine
Anonymous
Mercredi 7 Janvier 2015 à 19:23 -
Wait, are you running the 2014 update? I'm on Adobe Photoshop Version: 13.0.1 (13.0.1.3 20131024.r.34 2013/10/24:21:00:00) x32 and I found this article... http://feedback.photoshop.com/photoshop_family/topics/menu_too_small_on_photoshop_cc_2014
Mercredi 7 Janvier 2015 à 19:26 -
I don't offer support like that (I would forever be on Skype helping thousands of users). lol. Sorry. See if maybe changing the DPI settings works:

PlayOnLinux -> Configure -> select the virtual drive for PS -> Wine tab -> configure wine -> Graphics tab -> adjust the DPI slider

That might open those dialogues up a bit. Again, this is something that I have only seen on one system personally, but I used the MS Paint font fix to fix it (I have no clue why it is not working for you) and that corrected it (Xubuntu 14.04 64 bit). I really would like to see more winehq movement on this ticket. I would update the Wine bug report, and try and get some more dialogue moving between them. This is not a POL issue, it is Wine, but we have limited control over that. I will do some research and see what I can find. If you could do the same, and post whatever you find here, that would be cool (if possible, try to post as much as possible in a SINGLE post, because I get an email every time we add a comment on here. ;)
Mercredi 7 Janvier 2015 à 19:29 -
I saw that article. Give it a shot. I am running whatever the newest version of CS6 is (NOT CC), which I got last year, so it is likely the 2013 update. I haven't checked.
Anonymous
Mercredi 7 Janvier 2015 à 20:03 -
I fixed it, but i used winetricks to install more fonts. I have the following installed... Baekmuk cambria consolas constantia corefonts eufonts liberation lucida tahoma uff and it is working great now. Also reinstalled Photoshop because I borked my wineprefix haha but it works
Anonymous
Mercredi 7 Janvier 2015 à 20:04 -
Image preview still does not work, so I'll stand on the winehq bug report to get that sorted out. Thanks!
Mercredi 7 Janvier 2015 à 20:05 -
SWEET. Thank you SO much for getting me the list of fonts. I will be adding that to the script to make sure have that covered in the future. Glad you got it figured out.

If you they get a fix implemented, let me know, and I will get the patch(s) and get a POL-Wine build ready. Thanks VERY much.
Anonymous
Mercredi 7 Janvier 2015 à 20:07 -
I saw people complaining about 3D not working, um, i've never used 3D but it seems to work...I guess? http://imgur.com/9VQJ1p9
Mercredi 7 Janvier 2015 à 20:08 -
Yeah. 3D does not work, and will probably be a while, but that is a very small part of PS, so I am not worried about it.
Vendredi 9 Janvier 2015 à 20:48 -
None of the fonts listed made any difference. What else did you do, exactly?
Vendredi 9 Janvier 2015 à 20:53 -
Actually, I switched to a virtual desktop on that system, and it worked. I am testing this out, but that seems to be the key. I will update this in a few minutes
Vendredi 9 Janvier 2015 à 21:15 -
OK. So it needs:

Virtual desktop on
Tahoma (from winetricks. The POL one does not work for some reason.)

I am working on this now.
Vendredi 9 Janvier 2015 à 23:03 -
Refer to above comment.
Anonymous
Dimanche 26 Juin 2016 à 10:42 -
I had the "smooshed dialogues and unlabeled layers" glitch, but was able to fix it by going into configure, making sure the core fonts, Tahoma fonts, and gdiplus were installed. Then under Display, I made sure to choose gdi under Direct Draw Render. It works great. Hope this helps someone in the future.
Ronin DUSETTE Vendredi 19 Décembre 2014 à 21:53
Ronin DUSETTE
Admin

Messages

THIS SHOULD WORK WITH THE ADOBE CC VERSION OF PHOTOSHOP, AS WELL. 

 

Réponses

Dimanche 22 Février 2015 à 10:35 -
Thank you very much for your work, I tested with the offline installer photoshop cc 32-bit and it works.
Dimanche 22 Février 2015 à 16:05 -
Excellent.
c0ffee Dimanche 14 Décembre 2014 à 16:00
c0ffee Anonymous

Messages

Have missing text labels like in current screenshots been fixed? Hard to work without layer names and all dialogs without text.

Réponses

Anonymous
Dimanche 14 Décembre 2014 à 17:06 -
Increasing dpi in 'configure wine'->'graphics' also increases label rectangles a bit and words get partially shown in Preferences, so it may be not a font problem.
Dimanche 14 Décembre 2014 à 17:07 -
I know. It only does that on certain distros. The user below apparently found a fix, but he has not replied. I even sent a private message, but with no answer. I wish he would tell us how he fixed it. If you can get him to give an answer, please repost the solution here so that I can try to implement it. Lol.
Mercredi 17 Décembre 2014 à 16:49 -
So, I sent the user below another pm about this, and still no answer, which is weak, because I have a system still doing that and I cannot find the solution. If anyone figures it out, I urge you to post here with the solution, so at least it it documented.
Maroce Lundi 8 Décembre 2014 à 15:43
Maroce

Messages

im sorry, i have a problem, when i click the "install program" this computer not do anything, can you help me to fix this problem?

and when i installed manually, i have a new problem :

 

Réponses

Lundi 8 Décembre 2014 à 19:33 -
Do you have the installer for this program?
Lundi 8 Décembre 2014 à 19:44 -
Don't install manually. You need to have the installer (you need to own CS6), and when the Install program asks you for the installer, you just select it. POL does not install the software if you do not own it. You have to have an actual copy. Delete the Photoshop virtual drive, click INSTALL on PlayOnLinux, and when prompted, select the .exe installer for Photoshop. If it still fails after that, pastebin your debug log here. It simply looks like you didn't tell it where your photoshop installer is at.
Lundi 8 Décembre 2014 à 19:45 -
BTW, if you are going to post any log errors, don't post a screenshot. It is almost useless most of the time, because we can only see part of it. Pastebin the log is the best way. :)
Mercredi 10 Décembre 2014 à 10:40 -
oh awesome, its works! thx ronin DUSETTE :)
Mercredi 10 Décembre 2014 à 10:41 -
amazing works! but in my photoshop, i've lost some text, would you like to help me prove this problem?
Mercredi 10 Décembre 2014 à 13:35 -
im sorry, i've solved my problem about the text! thx for you attention admin!
Mercredi 10 Décembre 2014 à 18:22 -
How did you fix the text problem? I am just curious.
Vendredi 19 Décembre 2014 à 15:42 -
i have already installed microsoft paint at play on linux, and then, i just copy font folder from Playonlinux virtual hard drive > ms paint > drive_c > windows, paste that at Playonlinux virtual hard drive > photoshopcs6 > drive_c > windows, and that fixed, im sorry too late to answer :)
Vendredi 19 Décembre 2014 à 18:25 -
Excellent. Can you do me a favour and list the fonts in the ms paint folder? It must be one specific font that makes it break. Thanks so much for them help.
Vendredi 19 Décembre 2014 à 21:39 -
Actually, I will do it, and I will isolate the particular font that is missing. Thanks a whole lot. That really helps me a bunch. I will get it included in the script soon, so that this will be fixed. Your feedback was essential to fixing this bug. Thanks. :)
Dimanche 21 Décembre 2014 à 5:18 -
im sorry, when im check the font folder, nothing i founded some files
Dimanche 21 Décembre 2014 à 5:33 -
but now, if i import an image to photoshop, the photoshop not responding, i try to make new layer and still not responding, would you like to help me?
Dimanche 21 Décembre 2014 à 9:04 -
You are giving very vague info, no specs, and no debug output, so I don't know. Importing images works, as you can see from the screenshots above. Please post up in the forums with your issue, full computer specs, and debug output, and then we can try and figure it out. Again, I know that feature works, so it has to be something specific. Thanks. :-)
Ronin DUSETTE Vendredi 7 Novembre 2014 à 6:56
Ronin DUSETTE
Admin

Messages

Pulling this out of "testing", as after almost 4,000 downloads, I would imagine that any major bugs (aka 'show stoppers') would have been reported. 

Teehee. This is a good thing. 

Réponses

Ronin DUSETTE Jeudi 23 Octobre 2014 à 3:59
Ronin DUSETTE
Admin

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -14,7 +14,7 @@
 TITLE="Adobe Photoshop CS6"
 EDITOR="Adobe Systems Inc."
 GAME_URL="http://www.adobe.com"
-AUTHOR="DJYoshaBYD"
+AUTHOR="RoninDusette"
       
 #Initialization
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Install will fail and program will not launch with Intel graphics. Use only AMD and Nvida cards. Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"

POL_Wine_reboot

# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Dimanche 26 Octobre 2014 à 16:57 -
I have added the script resources here: http://www.playonlinux.com/en/topic-12543-SCRIPTPhotoshop_CS6_resources.html
Lundi 27 Octobre 2014 à 21:21 -
Should have been uploaded by now
Lundi 27 Octobre 2014 à 21:22 -
Sweet, Looks good to go. Thanks. :)
Anonymous
Dimanche 2 Novembre 2014 à 13:31 -
Hi, thanks, by this script I install Photoshop CC, not only CS6. Maybe you add this fact in description?
Dimanche 2 Novembre 2014 à 18:27 -
It is not the same program, so I would need to see tests confirming that every feature works like CS6 before I make a unified installer. If anything, I may obtain the demo for CC, and write a different script for that. I feel that it would be better, since they are not the same program (though I do understand the relationship).
Dimanche 2 Novembre 2014 à 18:38 -
Yeah, a different script would be definitely better. (You may install both program)
Dimanche 2 Novembre 2014 à 18:41 -
That is what I was thinking, as well. I would much rather have them apart from each other, simply because if something changes in CC and breaks compat. with CS6, then I would need to separate them anyway. I should be able to get to that within the next couple of weeks, after I am able to test CC and make sure that it works.
Ronin DUSETTE Mardi 21 Octobre 2014 à 0:06
Ronin DUSETTE
Admin

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Added note stating that Intel graphics will not work. I looked a lot into this, and it seems most Intel graphics will not run this app. I am going to test it on an AMD laptop later. 

Differences

@@ -45,7 +45,7 @@
 POL_Call POL_Install_corefonts
 POL_Call POL_Install_FontsSmoothRGB
 
-POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"
+POL_SetupWindow_message "$(eval_gettext 'NOTICE: Install will fail and program will not launch with Intel graphics. Use only AMD and Nvida cards. Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"
 
 POL_Wine_reboot
 

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="DJYoshaBYD"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Install will fail and program will not launch with Intel graphics. Use only AMD and Nvida cards. Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"

POL_Wine_reboot

# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Edité par RoninDusette

Ronin DUSETTE Lundi 20 Octobre 2014 à 21:52
Ronin DUSETTE
Admin

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -47,12 +47,13 @@
 
 POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"
 
+POL_Wine_reboot
 
 # Installation
-Set_OS "win7"
 POL_Wine_WaitBefore "$TITLE"
 POL_Wine "$APP_ANSWER"
 POL_Wine_WaitExit "$TITLE"
+Set_OS "win7"
 
 # Create Shortcuts
 POL_Shortcut "photoshop.exe" "$TITLE"

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="DJYoshaBYD"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"

POL_Wine_reboot

# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Ronin DUSETTE Lundi 20 Octobre 2014 à 20:54
Ronin DUSETTE
Admin

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Changed to Win7 before PS install.

Differences

@@ -49,10 +49,10 @@
 
 
 # Installation
+Set_OS "win7"
 POL_Wine_WaitBefore "$TITLE"
 POL_Wine "$APP_ANSWER"
 POL_Wine_WaitExit "$TITLE"
-Set_OS "win7"
 
 # Create Shortcuts
 POL_Shortcut "photoshop.exe" "$TITLE"

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="DJYoshaBYD"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"


# Installation
Set_OS "win7"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Lundi 20 Octobre 2014 à 21:29 -
Amazing!
Lundi 20 Octobre 2014 à 21:35 -
So far it is working great on my desktop (kubuntu 14.04 64-bit), but my laptop (Mint with Cinnamon, 64 bit), it keeps crashing during install. I know it has something to do with connecting to the internet. I install libgnutls and libcrypto* and all of that, and I am pretty sure that I have it covered, but there is something on my desktop that lets the install work fine, and my laptop seems to be missing it. Unfortunately, I am having a very hard time checking what is missing. haha.
Lundi 20 Octobre 2014 à 22:04 -
Graphic drivers? Same wine version?
Lundi 20 Octobre 2014 à 22:07 -
Completely different system. Intel chipset, same exact script. I actually cleared out the ~/.PlayOnLinux folder and rebooted my laptop and I am trying again. For some reason, I want to say that something failed to install into the virtual drive correctly or something. Just before it crashes, it would throw some wbemproxy errors, but those only showed up on my laptop, not my desktop, which is odd.
Lundi 20 Octobre 2014 à 22:07 -
It throws this a lot, too: "(python:2431): Gtk-CRITICAL **: IA__gtk_widget_get_direction: assertion 'GTK_IS_WIDGET (widget)' failed
" But I do not think that is causing this.
Lundi 20 Octobre 2014 à 22:17 -
Here is the pastebin. It is not that Wine crashes, but the PS installer says that it failed. If you could take a look at it and see if you can find something, that would be wonderful. The odd thing is, the installer says that it crashes, but if I don't touch anything, and watch the terminal, the install actually does finish, but this is not reflected in the installer. If I wait about 5 minutes after the installer says that it failed, I can close it, and the shortcut is created and it works fine. Problem is, my desktop requires no such workaround. It just works. Anyway, here is the pastebin from my laptop (Intel Core2, Mobile 4 series GPU, same script, fresh install):

http://pastebin.com/rtTQwuvp
Lundi 20 Octobre 2014 à 22:42 -
Weird. Want to write a big news ? :) :D
Lundi 20 Octobre 2014 à 22:45 -
Not just yet. Lol. It has to connect online to register, otherwise it just won't work. Again, I have it working on my desktop, but the laptop will not work. Is there a way to check what 32-bit libraries I have installed on both machines, that way I can diff them?
Lundi 20 Octobre 2014 à 23:08 -
Reinstall wine 1.7.20-PhotoshopBrushes on both computer also
Lundi 20 Octobre 2014 à 23:10 -
ok
Ronin DUSETTE Lundi 20 Octobre 2014 à 20:22
Ronin DUSETTE
Admin

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -43,7 +43,6 @@
 POL_Call POL_Install_vcrun2008
 POL_Call POL_Install_vcrun2010
 POL_Call POL_Install_corefonts
-POL_Call POL_Install_FontsSmoothBGR
 POL_Call POL_Install_FontsSmoothRGB
 
 POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="DJYoshaBYD"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"


# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Anonymous
Vendredi 23 Décembre 2016 à 10:11 -
Hello Happy Cristmas. I am new in Ubuntu and i need to instal photoshop and ilustrator sc6
Ronin DUSETTE Lundi 20 Octobre 2014 à 20:05
Ronin DUSETTE
Admin

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Initial commit. Will add screenshots and resources later. 

Differences

@@ -0,0 +1,64 @@
+#!/bin/bash
+# Date : (2014-10-20)
+# Distribution used to test : Kubuntu 14.04 LTS 64-bit
+# Author : RoninDusette
+# Licence : GPLv3
+# PlayOnLinux: 4.2.5
+
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+      
+PREFIX="PhotoshopCS6"
+WINEVERSION="1.7.20-PhotoshopBrushes"
+TITLE="Adobe Photoshop CS6"
+EDITOR="Adobe Systems Inc."
+GAME_URL="http://www.adobe.com"
+AUTHOR="DJYoshaBYD"
+      
+#Initialization
+POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
+POL_SetupWindow_Init
+      
+POL_Debug_Init
+      
+# Presentation
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+
+# Create Prefix
+POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINEVERSION"
+
+# Configuration
+Set_OS "winxp"
+
+#Dependencies
+POL_Call POL_Install_AdobeAir
+POL_Call POL_Install_atmlib
+POL_Call POL_Install_gdiplus
+POL_Call POL_Install_msxml3
+POL_Call POL_Install_msxml6
+POL_Call POL_Install_vcrun2005
+POL_Call POL_Install_vcrun2008
+POL_Call POL_Install_vcrun2010
+POL_Call POL_Install_corefonts
+POL_Call POL_Install_FontsSmoothBGR
+POL_Call POL_Install_FontsSmoothRGB
+
+POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"
+
+
+# Installation
+POL_Wine_WaitBefore "$TITLE"
+POL_Wine "$APP_ANSWER"
+POL_Wine_WaitExit "$TITLE"
+Set_OS "win7"
+
+# Create Shortcuts
+POL_Shortcut "photoshop.exe" "$TITLE"
+
+POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"
+
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file

Nouveau code source

#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="DJYoshaBYD"
      
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
      
POL_Debug_Init
      
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Configuration
Set_OS "winxp"

#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothBGR
POL_Call POL_Install_FontsSmoothRGB

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"


# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"

# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Lundi 20 Octobre 2014 à 20:21 -
You can't "install" both POL_Install_FontsSmoothBGR and POL_Install_FontsSmoothRGB since they tweak the same parameters...
Lundi 20 Octobre 2014 à 20:22 -
Ok. I will make that change real quick.
Anonymous
Dimanche 14 Décembre 2014 à 10:46 -
current screenshots show same bug I have - mostly all labels aren't displayed correctly. Is it so for everyone? My setup is Ubuntu 14.04, notebook ux32vd with intel+ nvidia graphics under bumblebee. But works very smoothly so far
Anonymous
Jeudi 25 Aoüt 2016 à 14:01 -
nothing happens when i click "install this program" link
Anonymous
Samedi 7 Janvier 2017 à 3:07 -
It worked out for me. I have Linux Mint 18 - Mate. I had issued when I installed, because the huge file of 300mb was always interrupted by something I couldn't find. Finally, I got it after 10 times trying.