Adobe Fireworks CS6
Informations
Creator | Message |
---|---|
chocoelho
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks1 1 DescriptionFireworks provides web designers with a lightweight, effective means of creating graphics for their web pages without getting deep into code or lost amid multiple color palettes. ScreenshotsSource code#!/bin/bash # Date : (2015-12-08) # Distribution used to test : Duzeru GNU/Linux 2.0 64 bit(Debian Jessie based) # Author : chocoelho # Based on: PhotoshopCS6 script # Licence : GPLv3 # PlayOnLinux: 4.2.9 # # CHANGELOG # [chocoelho] (2015-12-08) # First script. # [Dadu042] (2019-11-28) # Wine 1.7.46-staging -> 2.22 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="FireworksCS6" WINEVERSION="2.22" TITLE="Adobe Fireworks CS6" EDITOR="Adobe Systems Inc." GAME_URL="https://www.adobe.com/products/fireworks" AUTHOR="chocoelho" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 2670 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 "Fireworks.exe" "$TITLE" "" "" "Graphics;" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Friday 29 November 2019 at 11:22 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -5,13 +5,19 @@ # Based on: PhotoshopCS6 script # Licence : GPLv3 # PlayOnLinux: 4.2.9 +# +# CHANGELOG +# [chocoelho] (2015-12-08) +# First script. +# [Dadu042] (2019-11-28) +# Wine 1.7.46-staging -> 2.22 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="FireworksCS6" -WINEVERSION="1.7.46-staging" +WINEVERSION="2.22" TITLE="Adobe Fireworks CS6" EDITOR="Adobe Systems Inc." GAME_URL="https://www.adobe.com/products/fireworks" @@ -58,7 +64,7 @@ POL_Wine_WaitExit "$TITLE" # Create Shortcuts -POL_Shortcut "Fireworks.exe" "$TITLE" +POL_Shortcut "Fireworks.exe" "$TITLE" "" "" "Graphics;" POL_SetupWindow_Close exit 0 New source code#!/bin/bash # Date : (2015-12-08) # Distribution used to test : Duzeru GNU/Linux 2.0 64 bit(Debian Jessie based) # Author : chocoelho # Based on: PhotoshopCS6 script # Licence : GPLv3 # PlayOnLinux: 4.2.9 # # CHANGELOG # [chocoelho] (2015-12-08) # First script. # [Dadu042] (2019-11-28) # Wine 1.7.46-staging -> 2.22 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="FireworksCS6" WINEVERSION="2.22" TITLE="Adobe Fireworks CS6" EDITOR="Adobe Systems Inc." GAME_URL="https://www.adobe.com/products/fireworks" AUTHOR="chocoelho" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 2670 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 "Fireworks.exe" "$TITLE" "" "" "Graphics;" POL_SetupWindow_Close exit 0 RepliesSunday 25 July 2021 at 19:36
|
haluanedecassia | Saturday 9 January 2016 at 18:55 |
haluanedecassia
|
MessageThere's a problem with the tools that are used dragging the mouse. They just don't work. Replies |
chocoelho | Wednesday 9 December 2015 at 11:32 |
chocoelho
|
|
chocoelho | Tuesday 8 December 2015 at 14:30 |
chocoelho
|
WarningThis update has not been approved yet by the team. MessageI've forgotten to update script info, leaving the original PhotoshopCS6 info. Differences@@ -1,9 +1,10 @@ #!/bin/bash -# Date : (2014-10-20) -# Distribution used to test : Arch Linux 64-bit -# Author : RoninDusette +# Date : (2015-12-08) +# Distribution used to test : Duzeru GNU/Linux 2.0 64 bit(Debian Jessie based) +# Author : chocoelho +# Based on: PhotoshopCS6 script # Licence : GPLv3 -# PlayOnLinux: 4.2.8 +# PlayOnLinux: 4.2.9 [ "$PLAYONLINUX" = "" ] && exit 0 @@ -13,8 +14,8 @@ WINEVERSION="1.7.46-staging" TITLE="Adobe Fireworks CS6" EDITOR="Adobe Systems Inc." -GAME_URL="http://www.adobe.com" -AUTHOR="RoninDusette" +GAME_URL="https://www.adobe.com/products/fireworks" +AUTHOR="chocoelho" #Initialization POL_SetupWindow_Init New source code#!/bin/bash # Date : (2015-12-08) # Distribution used to test : Duzeru GNU/Linux 2.0 64 bit(Debian Jessie based) # Author : chocoelho # Based on: PhotoshopCS6 script # Licence : GPLv3 # PlayOnLinux: 4.2.9 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="FireworksCS6" WINEVERSION="1.7.46-staging" TITLE="Adobe Fireworks CS6" EDITOR="Adobe Systems Inc." GAME_URL="https://www.adobe.com/products/fireworks" AUTHOR="chocoelho" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 2670 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 "Fireworks.exe" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
chocoelho | Tuesday 8 December 2015 at 14:00 |
chocoelho
|
WarningThis update has not been approved yet by the team. MessageIt's based on Photoshop CS6 script. It's running fine on Duzeru GNU/Linux 2.0(based on Debian 8 Jessie). Differences@@ -0,0 +1,63 @@ +#!/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="FireworksCS6" +WINEVERSION="1.7.46-staging" +TITLE="Adobe Fireworks CS6" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="RoninDusette" + +#Initialization +POL_SetupWindow_Init +POL_SetupWindow_SetID 2670 + +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 "Fireworks.exe" "$TITLE" + +POL_SetupWindow_Close +exit 0 New source code#!/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="FireworksCS6" WINEVERSION="1.7.46-staging" TITLE="Adobe Fireworks CS6" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="RoninDusette" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 2670 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 "Fireworks.exe" "$TITLE" POL_SetupWindow_Close exit 0 RepliesEdited by petch |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com