Help with Services created in Automator

I've created a basic automator service action that I've used before.  In previous OS versions, the file saved to a location in on my hd, and the action appeared in the Services sub-menu.  I could also add hotkeys via Sys Prefs.
In 10.9.1, services are saved to iCloud, and I can't change the location.  However, it never appears in the submenu or the Sys Prefs.

I've created a basic automator service action that I've used before.  In previous OS versions, the file saved to a location in on my hd, and the action appeared in the Services sub-menu.  I could also add hotkeys via Sys Prefs.
In 10.9.1, services are saved to iCloud, and I can't change the location.  However, it never appears in the submenu or the Sys Prefs.

Similar Messages

  • Validations with Service Create Expense Report

    Dear experts.
    I have the following doubt:
    In the service "Create Expense Report" ESS the system call two component different:
    Application: FITE_EXPENSES
    Web Dynpro Component: FITV_FPM
    Window Information: FPM_WINDOW
    View Information: LAYOUT_VIEW
    Configuration ID: FITV_FPM_EXPENSES
    This component show two buttons Start and Cancel, as is displayed in the screen attach.
    And other component is
    Application: FITE_EXPENSES
    Web Dynpro Component: FITE_VC_PRESELECTION
    Window Information: VC_WINDOW
    View Information: PRESELECTION_VIEW
    Configuration ID: FITE_VC_PRESELECTION
    That show the information with "Available Travel Requests / Plans and a listbox with Schema Selection(National Trip and Foreign Trip). as is displayed in the screen attach.
    I need do two validations and I dont know Where Can I do this validations:
    1.When I select the schema National and press the button Start the system must validate that the enduser have selectioned a row of "Available Travel Requests / Plans",  if the enduser not select a row the system have that show a message saying "Please select a row". This message have that be type error.
    2. What is the name of the table and the method that use SAP for get the information that is displayed in the grid "Available Travel Requests / Plans"
    Thanks in advance
    Regards

    Hi Carmen,
    You can add custom code, just like the one for selected row validation. It can have logic such that if a particular trip number is selected, and it has cities of a particular country, the schema, say, 'Domestic' would be chosen. To 'auto-choose' schema, bind the attribute TRIP_SCHEMA of node TRIP_SCHEMA with the value 'Domestic'.
    ABAP Dynpro is a component based model. So, a typically a component is created in such a way that it can be reused at many places. The component FITE_VC_PRESELECTION is for listing already initiated trips, and is rendered in expense report. The same component might be used in other travel web dynpro applications, like FITE_REQUEST, FITE_EXPRESS_EXPENSES, etc. The component FITV_FPM uses many other components for rendering different features of travel. You can think of it as parent-child relationship.
    I am attaching an old book on WDA, which I guess, I downloaded from SDN itself.
    I hope I could clear you doubts.
    couldn't attach the book, as the file extension is not allowed. You can search for WDA resources at SDN, SAP help, or do a simple google search for PDF.

  • I need help with Services

    I hve become very dependent onFruit Menus Contextual Menu items. Since SL doesn't support contextual menus, I guess I have to substitute Services. I minimized my mousing on my desktop by contextual menu commands "Move to (appropriate folder). I tried to make automator scripts to accomplish the same thing, but end up being told there are no services for the Finder. How can accomplish these tasks in SL?
    Thanks.
    Sass

    dodgertown wrote:
    I'm looking for an email to get a hold of verizon.  I continue to have issues with my services  ... Someone please [religious reference omitted] help me.
    It's possible that your issues can be addressed by volunteers who post here, but until you describe them that's not going to happen.  Meanwhile here's an email address that may help:
    [email protected]

  • Help with Script created to check log files.

    Hi,
    I have a program we use in our organization on multiple workstations that connect to a MS SQL 2005 database on a Virtual Microsoft 2008 r2 Server. The program is quite old and programmed around the days when serial connections were the most efficient means
    of connection to a device. If for any reason the network, virtual server or the SAN which the virtual server runs off have roughly 25% utilization or higher on its resources the program on the workstations timeout from the SQL database and drop the program
    from the database completely rendering it useless. The program does not have the smarts to resync itself to the SQL database and it just sits there with "connection failed" until human interaction. A simple restart of the program reconnects itself
    to the SQL database without any issues. This is fine when staff are onsite but the program runs on systems out of hours when the site is unmanned.
    The utilization of the server environment is more than sufficient if not it has double the recommended resources needed for the program. I am in regular contact with the support for the program and it is a known issue for them which i believe they do not
    have any desire to fix in the near future. 
    I wish to create a simple script that checks the log files on each workstation or server the program runs on and emails me if a specific word comes up in that log file. The word will only show when a connection failure has occurred.
    After the email is sent i wish for the script to close the program and reopen it to resync the connection.
    I will schedule the script to run ever 15 minutes.
    I have posted this up in a previous post about a month ago but i went on holidays over xmas and the post died from my lack or response.
    Below is what i have so far as my script. I have only completed the monitoring of the log file and the email portion of it. I had some help from a guy on this forum to get the script to where it is now. I know basic to intermediate scripting so sorry for my
    crudity if any.
    The program is called "wasteman2G" and the log file is located in \\servername\WasteMan2G\Config\DCS\DCS_IN\alert.txt
    I would like to get the email side of this script working first and then move on to getting the restart of the program running after.
    At the moment i am not receiving an error from the script. It runs and doesn't complete what it should.
    Could someone please help?
    Const strMailto = "[email protected]"
    Const strMailFrom = "[email protected]"
    Const strSMTPServer = "mrc1tpv002.XXXX.local"
    Const FileToRead = "\\Mrctpv005\WasteMan2G\Config\DCS\DCS_IN\alert.txt"
    arrTextToScanFor = Array("SVR2006","SVR2008")
    Set WshShell = WScript.CreateObject("WScript.Shell")
    Set objFSO = WScript.CreateObject("Scripting.FileSystemObject")
    Set oFile = objFSO.GetFile(FileToRead)
    dLastCreateDate = CDate(WshShell.RegRead("HKLM\Software\RDScripts\CheckTXTFile\CreateDate"))
    If oFile.DateCreated = dLastCreateDate Then
    intStartAtLine = CInt(WshShell.RegRead("HKLM\Software\RDScripts\CheckTXTFile\LastLineChecked"))
    Else
    intStartAtLine = 0
    End If
    i = 0
    Set objTextFile = oFile.OpenAsTextStream()
    Do While Not objTextFile.AtEndOfStream
    If i < intStartAtLine Then
    objTextFile.SkipLine
    Else
    strNextLine = objTextFile.Readline()
    For each strItem in arrTextToScanFor
    If InStr(LCase(strNextLine),LCase(strItem)) Then
    strResults = strNextLine & vbcrlf & strResults
    End If
    Next
    End If
    i = i + 1
    Loop
    objTextFile.close
    WshShell.RegWrite "HKLM\Software\RDScripts\CheckTXTFile\FileChecked", FileToRead, "REG_SZ"
    WshShell.RegWrite "HKLM\Software\RDScripts\CheckTXTFile\CreateDate", oFile.DateCreated, "REG_SZ"
    WshShell.RegWrite "HKLM\Software\RDScripts\CheckTXTFile\LastLineChecked", i, "REG_DWORD"
    WshShell.RegWrite "HKLM\Software\RDScripts\CheckTXTFile\LastScanned", Now, "REG_SZ"
    If strResults <> "" Then
    SendCDOMail strMailFrom,strMailto,"VPN Logfile scan alert",strResults,"","",strSMTPServer
    End If
    Function SendCDOMail( strFrom, strSendTo, strSubject, strMessage , strUser, strPassword, strSMTP )
    With CreateObject("CDO.Message")
    .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
    .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = strSMTP
    .Configuration.Fields.item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 'basic
    .Configuration.Fields.item("http://schemas.microsoft.com/cdo/configuration/sendusername") = strUser
    .Configuration.Fields.item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = strPassword
    .Configuration.Fields.Update
    .From = strFrom
    .To = strSendTo
    .Subject = strSubject
    .TextBody = strMessage
    On Error Resume Next
    .Send
    If Err.Number <> 0 Then
    WScript.Echo "SendMail Failed:" & Err.Description
    End If
    End With
    End Function

    Thankyou for that link, it did help quite a bit. What i wanted was to move it to csript so i could run the wscript.echo in commandline. It all took to long and found a way to complete it via Batch. I do have a problem with my script though and you might
    be able to help.
    What i am doing is searching the log file. Finding the specific words then outputting them to an email. I havent used bmail before so thats probably my problem but then im using bmail to send me the results.
    Then im clearing the log file so the next day it is empty so that when i search it every 15 minutes its clean and only when an error occurs it will email me.
    Could you help me send the output via email using bmail or blat?
    @echo off
    echo Wasteman Logfile checker
    echo Created by: Reece Vellios
    echo Date: 08/01/2014
    findstr "SRV2006 & SRV2008" \\Mrctpv005\WasteMan2G\Config\DCS\DCS_IN\Alert.Txt > c:\log4mail.txt
    if %errorlevel%==0 C:\Documents and Settings\rvellios\Desktop\DCS Checker\bmail.exe -s mrc1tpv002.xxx.local -t [email protected] -f [email protected] -h -a "Process Dump" -m c:\log4mail.txt -c
    for %%G in (\\Mrctpv005\WasteMan2G\Config\DCS\DCS_IN\Alert.Txt) do (copy /Y nul "%%G")
    This the working script without bmail
    @echo off
    echo Wasteman Logfile checker
    echo Created by: Reece Vellios
    echo Date: 08/01/2014
    findstr "SRV2006 & SRV2008" \\Mrctpv005\WasteMan2G\Config\DCS\DCS_IN\Alert.Txt > C:\log4mail.txt
    if %errorlevel%==0 (echo Connection error)
    for %%G in (\\Mrctpv005\WasteMan2G\Config\DCS\DCS_IN\Alert.Txt) do (copy /Y nul "%%G")
    I need to make this happen:
    If error occurs at "%errorlevel%=0" then it will output the c:\log4mail.txt via smtp email using bmail.

  • Help with drop create and update table

    Sir/Madam,
    I have joined 5 tables and selected some columns ,then I need to update some columns in that. After updating I need to create a report with the new column values.
    To do this my method is to create temp table with the select statement then update the temp table , use this temp table for the report and then drop the temp table.
    Is there anyother way to do this ??
    Can I create a cursor and update the cursor column ??
    Does dynamic sql always be created as procedure ??

    Hi,
    you need to understand how eventing works in BSP and MVC architecture. Pls refer to the below link for a basic understanding of how BSP works - View, Controller and Model class concepts.
    http://www.sapdev.co.uk/webapps/bsp/washome.htm
    For your requirement -
    1. you need a view on which you will create a drop down list UI element and a table view element
    2. you will need to create a contoller class - this will be used to handle the event that will be triggered   when user selects an entry from drop down list
    3. you will need a model class in which you will write the business logic to retrieve employees of selected department.
    Pls search this forum or blogs for - data binding with BSPs, Table View. Pls read these concepts and try to develop your requirement. You can come back to this forum if you face any issues during development.
    hope this helps.

  • Need some help with Service Manager Powershell commands

    I am a real noob with SM and often I am asked to grant users access to the SM console. I am typically told to pattern the role membership like another user. Problem is I can't find and easy way to do that. If someone tells me, " I need the same access
    as John Doe", what power shell command can I use to find out all the roles John Doe belongs to. I am guessing its going to be PS because there is no option in the console for this.

    This is the wrong side up when you're thinking about permissions. Nobody gets hired to do "the same job as bob". It doesn't make any more sense to copy permissions for a user then it does to take bob's keychain and copy all of his keys. Just because bob
    needs access to his car, doesn't mean his successor needs the same access.
    The best way to deal with permissions (in Service Manager and in IT in general) is to create job role groups that reflect the rights required to do a given job. When someone is hired into a job, they get added into that group and get the right permissions.
    in service manager, you can put that job role group into all of the SCSM role groups that apply to that job role.

  • HELP with Problem creating a page from a template Suggestions PLS.

    Nadia was kind enough to give me step by step in creating a template the right way.
    Problem is why won't it work?
    1) I create a page exactily like I want the templete to look.
    2) I save the child page as a template.
    3) I go to FILE>NEW>Page from template, look at the template on the insert on the right and it is just as I would expect it to be. The update is checked on change. I say ok and what appears on screen is I have lost all my formatting. When I look at the code, creating a page from the template causes the process to change the location of (for instance) the background image gif file from ...images/background.gif to the full location name starting the string at the C:/ all the way to ...background.gif. Therefore, the created page from the template loses all of its formatting.
    How do I fix this problem????

    Okay, here I go again with this problem step by step.
    1) Created a basic page that has a header, body and footer: www.goodimage.com and saved it as maintemp.html .
    2) I saved maintemp.html in the normal place where all the html are stored because as I was creating the template it told me I needed to save the page I was working on. So I decided to store it as an html until as it was layed out. Then I went to FILE/SAVE AS TEMPLATE storing it as maintemp.dwt.
    3) Then I created an edItable area called BODY.
    4) Then I did a FILE/SAVE AS TEMPLATE or tried to. As part of this process it wants to know if I want to UPDATE LINKS. If I do then the links will reference the template folder (but it is the DW default - hmmm what do I do) When in doubt take the default. So I did.
    5) So now I have a nice looking template called maintemp.dwt with one editablel region. So I feel pretty good until I suspect the next problem I have been fighting all along will appear. I select FILE/NEW PAGE FROM TEMPLATE and I see goodimage site, and my template called maintemp and a nice picture of it on the right screen part. Also update page when template changes is checked. Then I select to do the action.
    6)  Upcomes an unformatted screen caused by the links not being correct. I save the page as index.html to see if it will correct itself. I does not correct itself. So the index.html page is not formatted even after I closed down DW to see if that would help. It didn't. So I could go in and manually update the page but what a mess that would be.
    7) So I will go back to create a page from the maintemp.html with the UPDATE LINKS turned off. Using maintemp.html to create a template just like in step 2). When UPDATE LINKS is not selected then the template falls apart and is unusable.
    I HAVE WASTE ABOUT THREE DAYS ON THIS ONE PROBLEM AND I HAVE BUT A FEW MORE HOURS TO GET IT DONE. ONCE THIS WORKS IT WILL GO FAST. I AM TIRED OF BEING TIRED BUT MAYBE THAT IS CAUSING MY PROBLEM. ANYWAY, PLEASE HELP AS I AM AT A LOSE.
    HLOWER

  • Help with a VERY simple Automator script

    i spent a few minuted trying to figure this out, but concluded it might be easier to simply ask in the forum how to do this.
    I want to
    1) open a terminal window
    2) execute the following commands:
    cd /Users/lenny/ventrilo/
    lenny$ /Users/lenny/ventrilo/ventrilo_srv
    thats it...
    please help using very small works
    ideally i would like this to be execute when i start up my computer. (i.e. a login script)

    If you need the Terminal window to stay open, then you're looking at scripting Terminal. You can do this with Automator's run applescript action, or you can just use Script Editor (in Applications > AppleScript). Either way you will need to save the workflow/script as an application and drag it to your Login Items (in System Preferences > Accounts).
    click here to open this script in your editor<pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">tell application "Terminal"
    activate
    set commands to "cd /Users/lenny/ventrilo/ 
    /Users/lenny/ventrilo/ventrilo_srv"
    do script commands in front window
    end tell</pre>
    PowerMac G5 (June 2004) 2x1.8GHz 1.25GB, PowerBook G4 (12-inch DVI) 1x1GHz 768MB   Mac OS X (10.4.3)  

  • Need help with Services (email from finder using unibox)

    I have scoured the discussions and googled to find a solution to my problem and have had zero luck.
    Basically I want to be able to right-click on a file in finder and go to services and choose Unibox (my default email app) to send the file. I remember being able to do that using one of the other apps I used to use for email, but have been unsuccessful finding the steps to creating the service.
    Any and all help to create that context menu option is appreciated.

    Mail/Preferences/General - do you have Unibox set as your default e-mail application?

  • Need urgent help with service and file removal

    Hi,
    I need a powershell script that would stop a windows service ,wait for 2 mins, delete a particular file from C:\documents&settings and then start the service again.Is this possible ?
    Thanks

    Thanks for the reply chen. May be i was not clear in my query
    I plan this because a particular file of configmgr is corrupt on workstations. So the service has to be stopped first before the deletion. I need to run this on many computers remotely. The import file will have the machines that need the script to be run.
    The script has to run all the four steps on the machines based on the import file and export to a file with the results.How can i modify ?
    The sequence will be as follows
    Stop-Service -Name BITS -Verbose
    Start-Sleep -Seconds 120
    Remove-Item -Path C:\documents&settings\***** -Force -Verbose
    Start-Service -Name BITS -Verbose
    Regards
    Sd

  • Can anyone help with a creating a 'Pop Up' box?

    Hi there,
    Was wondering if anyone could help me with some javascript in my shopping cart. I have two things that I'm after but the second one might be too hard?
    1. I need a pop up box saying "Please choose a shipping option" when they click on the 'Get Quote button' as it's not a mandatory field for quoting.
    2. I'd love to have a pop up box in the shopping cart that won't let a customer proceed to getting quoted if their purchase is below $250.
    Our quote button is "Charge to Franchise" and the website is www.harcourtsonlineshop.co.nz
    Would love your help! I'm only able to do very basic things in BC.
    Thanks for your time,
    Kirsty

    Alright... first off this only almost works.  I'm posting it because hopefully one of the js gurus around here can figure out what the issue is because I can't.
    For me at least (testing in greasemonkey) it works fine until I make more than a couple changes in the shipping options menu, after which it just stops altogether.
    You'll need jquery running obviously.
    var tooltip = '';     
    var total = $('tr.total').find('td:eq(2) > strong ').text();
    total = parseFloat(total.replace(/[^0-9\.]+/g,""));
    var unlockcharge = 250.00;
    var t='';
    $('body').append(tooltip);
    function setPageState(){
         $('#tooltip').empty();
         t='';
         sel = $('select#ShippingOptions').val();
         var bt = (total < unlockcharge)? true: false;
         var ps = (sel == -1)? true: false;
         if(bt){
              t+='A minimum purchase of $250 is required for a quote.';
         if(ps){
              t+= 'Please select a shipping option.';
         if(bt||ps){
              $('#tooltip').html(t);
              $('#catshopquote').fadeTo(100, 0.5).on({
                   'click': function(e){
                        e.preventDefault();
              $('#catshopquote').on({
                   'mouseenter': function(e){
                        $('#tooltip').css({
                             'top': (e.pageY-15)+'px',
                             'left':e.pageX+15+'px'
                        }).fadeIn();
                   'mouseleave': function(e){
                        $('#tooltip').fadeOut();
    $('select#ShippingOptions').on('change', function(){
         setPageState();
    setPageState();

  • Help with Services from dropdown

    Hi everyone,
    Everytime I try to use "services" - from the Safari toolbar (Click Safari, then Services from dropdown) I get many of my applications.
    The one I would frequently like to use is "Grab" but it's never highlighted as working.
    THe word Grab is dark - but then "Screen" "Selection" and "Timed Selection" are grayed out and I cannot grab a page.
    I know of the other ways to get grab - but I want to use this pulldown. Why have it if it never works...
    I'm sure I'm the one doing something wrong so if someone can help me I would really be appreciative.
    Have a beautiful day!
    Claudia
    <edited out by Moderator>

    Hi Claudia, You're not doing anything wrong. The Services menu for Grab doesn't work on Tiger either. It's a bug.
    You have a beautiful day too!
    Tom

  • Need HELP with JTree created by user input

    I have been trying to create code that takes a user input string
    ex: a:b,c;b:g,h,j;g:k,m;b:u
    note: (the above string is then stored into a string array such in the format a:bc;b:ghj;g:km;b:u after it is verified that the hierarchy order is correct)
    The string is read in such that the any value before the : is a parent and its childern continue until a ; is found. Anyway verifying the sting I have accomplished and I have been able to input the string into a modified binary tree as long as there are only 2 childern per parent and graphically represents its structure of hierarchy. The problem is that each parent can have more the two childern.
    I have been working with the BTree class and find its output similar to what I am wanting which would represent a hierarchy of objects (files, employees, etc...) anyway I have been stumped as to how to get the above string into a format that can then create the correct JTree output without hard code.
    If any one has any suggestions on how to turn the data, in the string array into a usable format to create the correct JTree output, I would greatly appreciate it.
    In the above example the string array, a:bc;b:ghj;g:km;b:u would have a desired ouput of
    a
    ..b
    ....g
    ......k
    ......m
    ....h
    ....j
    ....u
    ..c
    Thanks
    Shane

    I have been trying to create code that takes a user input string
    ex: a:b,c;b:g,h,j;g:k,m;b:u
    note: (the above string is then stored into a string array such in the format a:bc;b:ghj;g:km;b:u after it is verified that the hierarchy order is correct)
    The string is read in such that the any value before the : is a parent and its childern continue until a ; is found. Anyway verifying the sting I have accomplished and I have been able to input the string into a modified binary tree as long as there are only 2 childern per parent and graphically represents its structure of hierarchy. The problem is that each parent can have more the two childern.
    I have been working with the BTree class and find its output similar to what I am wanting which would represent a hierarchy of objects (files, employees, etc...) anyway I have been stumped as to how to get the above string into a format that can then create the correct JTree output without hard code.
    If any one has any suggestions on how to turn the data, in the string array into a usable format to create the correct JTree output, I would greatly appreciate it.
    In the above example the string array, a:bc;b:ghj;g:km;b:u would have a desired ouput of
    a
    ..b
    ....g
    ......k
    ......m
    ....h
    ....j
    ....u
    ..c
    Thanks
    Shane

  • Need help with either printing or automating word

    I am attempting to write a simple application to print out formatted business checks to a printer. in vb.net in 2013 Visual Studio. Problem is I need to be able to change font type in the middle of the page, and it appears that font type is applied to
    the whole document that is printed, is there a work around. Last line of a check needs to be in MIC font while the rest of the check is in a standard font. I have the MIc font but no way to make a change for only the last line of the check. there are
    3 checks per sheet of paper so need to change fonts multiple times.

    Hi MstrWayne,
    >>I am attempting to write a simple application to print out formatted business checks to a printer. in vb.net in 2013 Visual Studio. Problem is I need to be able to change font type in the middle of the page.
    Based on your description, I'm afraid that it is not the correct forum for this issue, since this forum is to discuss the VS IDE. Your real issue would be related the language development.
    To help you find the correct forum, would you mind letting us know more information about it?
    Which kind of project did you want to create, WinForm or web or others? Please let me know more information about it, I will help you find a
    more appropriate forum, you know that the VB language, WinForm or ASP.net or others all have own support forums.  
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Help with a creating a logo from a patch

    Import the picture to photoshop, correct any distortion, then vector trace over the lines in a new layer.

    Ok so this is going to sound strange and make you smack yourself in the help. Our Detention Center is using a picture they took of their patch for their logo....... (yes you read that right)
    What is the easiest way to recreate that patch in to an image in photoshop? I'm not that good with Photoshop.  Also I had the idea that I could call the people who made the patch and get them to send me the Vector image. Well they will send it to me but with a  $1500 Price tag. 
    So I am looking at different options to get this logo  I have attached a copy of their current "logo".
    This topic first appeared in the Spiceworks Community

Maybe you are looking for

  • G50-80 can't find my wireless network at all?

    My brand new G50-80 can't find my home network at all. And no, the SSID isn't set to hidden. I've spent the whole night troubleshooting, and tried all of the suggestions on the intel website for the AC 3160. The router is D-link DIR-635. It is capabl

  • How to debug module pool program

    Hi everybody, How to debug module pool program ,please send any material for module pool programming . Thanks & Regards, Siddivinesh.Jogu [email protected]

  • MacPro's digital outs not working w/ Express

    So I have Logic Express working OK with my new MacPro's normal analog output, but it won't work with the digital outs. Why? This shouldn't be too difficult to set up. At the same time, maybe I'm missing something because I don't even see where in LE

  • Rotate During Drag: ActionScript 3

    Greetings from Boise! I'm working up an interface in which I have several rectangular cards on Stage. Those cards are draggable and "throwable," all of which works wonderfully. They bounce back from the edge of the Stage and decelerate...that sort of

  • Reinstalling CS3 Why the is it asking for Adobe Fireworks CS4

    When attempting to reinstall my Photoshop CS3 on my Mac because of the clone brush not working I am prevented from doing so because It is asking for Adobe Fireworks CS4. Thanks