Page 1 of 1
					
				Adobe CC w/ Switch
				Posted: Thu Aug 15, 2013 5:01 pm
				by Danny
				Hello All,
	Has anyone tried using adobe's CC applications with Switch? I am going to try Photoshop CC but was wondering if anyone has had any issues. The Switch documentation states it supports CS3-CS6. No mention of CC.
	
	Any feedback would be appreciated,
	
	Thanks
			 
			
					
				Adobe CC w/ Switch
				Posted: Tue Aug 20, 2013 10:45 am
				by freddyp
				CC is not officially supported in Switch 11 update 4. It will be in update 5.
	
	We have tried this of course and it does sometimes work, but not always. If Photoshop is installed in the "regular" location Switch will find it, but when you have installed it in a different directory it will not, not even when use "Set path to application". There is an also an issue when you use the multiple language support. We have not tested every possible situation with all of the different operating system versions, so there is room for more potential problems.
	
	I'd say it is definitely worth giving it a try, but success is not guaranteed.
	
	if you do try it, please share your experience on the forum.
	
	Freddy
			 
			
					
				Adobe CC w/ Switch
				Posted: Wed Oct 23, 2013 3:35 pm
				by verstraete
				Hello,
	
	Does anyone know if it will be possible to check fonts in the Adobe Illustrator CC configurator?
	The Illustrator configurator now doesn't support this function.
	
	Greets,
	
	David
			 
			
					
				Adobe CC w/ Switch
				Posted: Wed Oct 23, 2013 4:32 pm
				by carineb
				Hi David,
	
	the main goal is to make sure you can use the current functionality available in the Adobe configurators in combination with Adobe CC. 
	
	Of course we love to hear about any functionalities you feel are missing as - when deciding which new features to add first - it's important to focus on those that bring most value to you. Feel free to send in any requests you might have to 
feature@enfocus.com.
	
	If you'd require an option to check fonts in Illustrator within Switch urgently, it might be handy to know the configurator allows to run scripts for Adobe applications as well, so if you'd have a script for Illustrator that is able to check fonts, there is a good chance you'll be able to run it from within the configurator.
	
	Hope this answers your question?
	
	Kind regards,
	Carine
 
			
					
				Adobe CC w/ Switch
				Posted: Tue Nov 05, 2013 3:11 pm
				by verstraete
				Hello,
	
	Thank you for your answer.
	I have one more question about it. Do we need the Switch scripter module to use a script in the Illustrator configuration?
	
	Greets
			 
			
					
				Adobe CC w/ Switch
				Posted: Tue Nov 05, 2013 3:32 pm
				by carineb
				No, if you want to run a script inside the Illustrator configurator, you'll only need the Configurator Module. The script itself would be written outside of Switch and is seen as a regular 'property' value, a bit like a 'Joboptions' file can be used as in the Distiller configurator for example.
	
	You'd start by writing (or finding) a script for Illustrator and making sure it returns the desired results when ran inside Illustrator (without Switch).
	
	Once you have a script that works fine in Illustrator, there are a few things to be adjusted in order to run it successfully within the Illustrator configurator.
	You can find more details and some sample scripts on this page within the Switch documentation: 
http://www.enfocus.com/manuals/UserGuid ... tions.html
	
	Kind regards,
	Carine
	
 
			
					
				Adobe CC w/ Switch
				Posted: Wed Feb 12, 2014 9:19 am
				by verstraete
				Hello,
	
	I have a short and simple script written in applescript that I want to use in  enfocus Switch.
	Can someone help me with it?
	
	tell application "Adobe Illustrator"
		activate
		tell current document
			set resolution of raster effect settings to 300.0
			save
			close
		end tell
	end tell
	
	Greets,
	David
			 
			
					
				Adobe CC w/ Switch
				Posted: Wed Feb 12, 2014 8:11 pm
				by dkelly
				If you have Scripting module just use the existing AppleScript code.
			 
			
					
				Adobe CC w/ Switch
				Posted: Thu Feb 13, 2014 9:15 am
				by freddyp
				Not quite. In SwitchScripter you can use Applescript, but to make the script well behaved in a Switch flow (using properties, failing jobs, sending jobs to the outgoing connection, etc.) there are a few extra things you have to do. Here is what the script should look like:
	
	on jobarrived( s, j )
	
		set Current_Switch_Server to system attribute "Current_Switch_Server"
		tell application Current_Switch_Server
			using terms from application "Switch_Service"
				set jobPath to path of j
				set scriptResult to "/OK/"
			end using terms from
		end tell
	
		tell application "Adobe Illustrator"
			set user interaction level to never interact
			try
				open jobPath as alias
				tell current document
					set resolution of raster effect settings to 300.0
					save
					close
				end tell
			on error errmsg number errnum
				set scriptResult to ("/ERROR/:" & errmsg)
			end try
		end tell
	
		tell application Current_Switch_Server
			using terms from application "Switch_Service"
				if scriptResult contains "/ERROR/"
					fail j message scriptResult
				else
					send to single j path jobPath
				end if
			end using terms from
		end tell
	
	end jobarrived
			 
			
					
				Adobe CC w/ Switch
				Posted: Thu Feb 13, 2014 11:33 am
				by verstraete
				Thank you for the information, but I don't have Switch scripter module.
	I do have the configuator module.
	Is it possible to use it as a generic application?
	How can I make this work?
	
	Greets,
	David
			 
			
					
				Adobe CC w/ Switch
				Posted: Fri Feb 14, 2014 11:12 am
				by freddyp
				Then you can create an application in Automator that runs your Applescript and use that application in the "Apple Automator" element.
	
	Freddy