No dialog box change Site with new installation on Lion 10.7.3

Today, I installed Dreamweaver CS5.5 on OS X Lion 7.3. I'm unable to edit any site. Does not display the Edit dialog box. It gives no error when I create a new Site, but even when there is no edit dialog box.

Thanks in advance.

Open disk utility and run the repair permissions function.  If this does not work, you may need to back up site definitions from the screen of the Site Manager where the Edit button does nothing.  Disable this feature (help-> dŽsactiver) Dreamweaver.  Run the vacuum cleaner ( http://www.adobe.com/support/contact/cscleanertool.html ) and re-install.  If it still does not at this time here, it could be a more serious problem with the installer and 10.7.3.  My version was installed before and if Apple changed something where Setup fails, you will need to contact Adobe at this time here.  They provide installation help: http://www.adobe.com/aboutadobe/contact.html .

Tags: Dreamweaver

Similar Questions

  • Dialog box that says ' Creative Cloud Installer wants to make changes. Type your password for this purpose"- I type my password for Adobe ID (creative cloud), but it will not accept it. who should I go for help with this query?

    Dialog box that says ' Creative Cloud Installer wants to make changes. Type your password for this purpose"- I type my password for Adobe ID (creative cloud), but it will not accept it. who should I go for help with this query?

    It does not ask the cloud your computer admin password password!

  • Why "limit maximum instances of this event in the queue" in the dialog box change events?

    Why I "would limit the maximum instances of this event in the queue" in the dialog box change events?

    I think that this is new for LV 2014, but I couldn't find an explanation for an instance of good use. A research on OR displays only the 2014 help text, which explains what it does, but not why?

    Does anyone know good arguments to use this option?

    Thanks in advance.

    Justin Tyme

    It is useful for user interface elements that can enqueue actions as quickly as they can be made.

    For example, say it takes takes 1 second to take a picture and save it. The user presses the button "Take a photo", but they do not see a new image file again after a wait of 250 ms (human beings humans can be impatient) so they press twice. Finally, they see a new file image... and then another... and then another... To get rid of this possibility, check this box.

    Or that you have a cursor to adjust some settings. Moving the cursor updates very fast! If the user swipes from 0 to 1 then the program might try to send all the rest as a parameter to your instrument, which takes some time. Instead of sending all of these values, it is probably better if the software can keep up with the cursor and send a value of about 1 at the same time, the cursor said 1. If you do not check this box, the user can be 1, but the unit will continue to receive values from 0.53, 0.54, 0.55...

  • Every time I open a file in Media Player 11, I get a dialog box telling me that Windows Installer is "preparation for installation.

    Whenever I open a file in Microsoft Media Player 11, (11.0.5721.5280) I get a dialog box telling me that Windows Installer is "preparation for installation.

    He tell me what it is trying to install and crashes

    No media plays back.

    Cancellation does not - it retrys with encouraging them. The only way to get rid of the dialogue is Ctrl/Alt/Del and end task. It also closes WMP11

    SP3 Win XP32

    I just installed Office 10

    I ran the repair of Office 10

    I uninstalled WMP11 and reinstalled

    I ran "Fix IT" page Support MS

    I run MS Security Essentials... It is to this day and I run a full scan

    I think you meant:

    "a. initially, box run, type"msiexec /unreg", and then press ENTER."

    I did and it helped somewhat. Message anyway, but he went and the media played.

    If I did:

    "(b) then type" msiexec/regserver"and press ENTER."

    The problem comes back

    I went a step further and ran a restoration of the system to the day, I installed Office - it worked.

  • Why is OK disabled in Debugger dialog box change value?

    Hello

    For some reason any OK disabled in the dialog box, change the value of the debugger. None of what I've seen so far explains why this happens. The variable stores an oracle.jbo.domain.Date, and the source ADF library was imported into the project.

    Ideas?

    James

    Is the AutoCorrect on my cell phone. I meant type, not a torus.

    Yes, you should be able to change a string or int type in your code.

    Timo

  • Leave the dialog box change the text display/display

    I have a dialog box that is created with some text objects attached to its buttons. The user can make choices for each one, press OK, and asked of their choice. What I would like is for the buttons to the user in the text, so that they can see it in the context as they decide (that's the only reason why they are buttons; otherwise, they would be static text). I know how to handle this with a palette, but I wonder if there is a way to do it with a dialog box. With the help of a palette for all this seems unfair; I really don't want users to be able to make changes to the document, while the palette is open, and I don't want to change anything in the document until the user clicks OK. It is a dialogue with a palette as oddity, really.

    The problem is that. showText() and setting the activePage throw them the error "Cannot process the request because a modal dialog box or the alert is active." I tried to adjust the dialog box to .the = false or .visible = false, but it has no effect. Is it just impossible? This feature, change the view but not the content, seems to live in a grey zone between the way in which the work of dialog boxes and palettes of way work, so I don't know if I'm just a useless way. Any idea would be appreciated.

    Here's a code example to illustrate what I'm doing:

    #target indesign
    
    
    main();
    
    
    function main(){
        if (app.documents.length == 0){createTestDoc();}
        runDialog();
    }
    
    
    function createTestDoc(){
        //create a test document
        var myDocPre = app.documentPresets.add({name: "testPre", createPrimaryTextFrame: true, pagesPerDocument: 5});
        var myDoc = app.documents.add(true, myDocPre);
        var myPSty = myDoc.paragraphStyles.add({name: "newPageSty", startParagraph: StartParagraph.NEXT_PAGE});
        var myCSty = myDoc.characterStyles.add({name: "CSty", underline: true});
    
    
        myDoc.textFrames[0].contents = "1\r2\r3\r4\r5";
        myDoc.textFrames[0].texts.everyItem().appliedParagraphStyle = myPSty;
    
    
        app.findTextPreferences = app.changeTextPreferences = NothingEnum.NOTHING;
        app.findTextPreferences.findWhat = "^9";
        app.changeTextPreferences.appliedCharacterStyle = myCSty;
        myDoc.changeText();
    
    
        myDocPre.remove();
    }
    
    
    function runDialog(){
        //find text with a particular character style and send that text to my dialog creation function.
        var myDoc = app.activeDocument;
        var myCSty = myDoc.characterStyles.itemByName("CSty");
        if (myCSty.isValid){
            app.findTextPreferences = app.changeTextPreferences = NothingEnum.NOTHING;
            app.findTextPreferences.appliedCharacterStyle = myCSty;
            var myResults = myDoc.findText();
            myDialog(myResults);
        }
    }
    
    
    function myDialog(textRngs){
        //create the dialog.
        var myWin = new Window("dialog", "Test Dialog", undefined);
        var mainGroup = myWin.add("group");
        mainGroup.orientation = "column";
        //each text range gets a row.
        for (var i = 0; i < textRngs.length; i++){
            var myTextRng = textRngs[i];
            var myRow = mainGroup.add("group");
            myRow.orientation = "row";
            var myBut = myRow.add("button", undefined, myTextRng.contents);
            //attaches the text object to the button.
            myBut.targetObject = myTextRng;
            //does nothing - just a reminder that the actual dialog will do something at the end based on the info entered.
            myRow.add("editText");
            
            myBut.onClick = function(){
                //this is what I do when I want this functionality within a palette. Selects the text so that it can be seen in context.
                if (!(this.targetObject.hasOwnProperty("select") && this.targetObject.hasOwnProperty("showText"))) {}
                else{
                    this.targetObject.showText();
                    this.targetObject.select();
                    
                    //OR
                    //tried this as an alternative, but setting myWin.visible does nothing.
                    //myWin.visible = false;
                    //myDoc.layoutWindows[0].activePage = this.targetObject.parentTextFrames[0].parentPage;
                    //myWin.visible = true;
                }
            }        
        }
        var OKGrp = myWin.add("group");
        var OKBut = OKGrp.add("button", undefined, "OK");
        
        OKBut.onClick = function(){
            //do something
            myWin.close();
        }
        myWin.show();
    }
    

    You have no choice: If you want the script to interact with the text that you will need to use a palette.

    P.

  • Programmatic equivalent to the Find dialog box change functions

    Hello

    Is there a reasonable programmatic equivalent of the buttons change to the Find dialog box? FDK or ARE? I have no urgency to find one, but I was going to use it if they are available. I'm looking for something simple and direct, not savages button-push-automation-routines or something like that.

    I hope this isn't a stupid question. I'm amused that after all these years, this is the first time I ever thought that the need for it.

    Russ

    Hi Russ,

    using 'find', you will receive a textlocation. Now, he must 'manually' change the text with oDoc.Delete (TextRange) and then insert your text replace.

    I hope I understood your question right?

  • How can I reverse the function of the curves in the dialog box change the curves

    in the oldest version of PS, there was a small set of arrows to reverse the function of the curves in the change the curves dialog box. I miss it greatly, because I use them in front of the standard direction for more than 20 years.

    A way to change this DC?'

    old_ps_curves_dialog.jpg

    Wow. guess I should have tried to click that. the description made zero sense to me. couldn't guess that's what he did.

    Thank you.

  • Disable editing of the dialog box when I open new photo photos?

    Hello

    I do photos of products, and I'm new to Photoshop. When I go to file > open and select 1 image or multiple images, a dialog window opens with all these photo editing options. I don't need to use this feature. Is there a way that I can just open a bunch of photos in Photoshop without having this dialog open on me whenever I open a file?

    Thank you

    Peter

    If Yes...

    Photoshop CC

    Edit > Preferences > file management, click Camera Raw (Mac: Photoshop > preferences > file management, click Camera Raw)

    or on Photoshop CS6

    Edit > Preferences > Camera Raw (Mac: Photoshop > Preferences Camera Raw)

    Disable JPEG/TIFF support.

  • Replacing the current site with new site Made in Adobe Muse, after download from FTP can not do work?

    I tried this again and again. I have the FTP and password... I changed the liabilities to another... and is in charge of all the way to 99% and said FTP has expired. I then went through GoDaddy (host and also have FTP on there)... all this shows (Vitro export the folder with all the files of muse). I have the preview mode Local in Dreamweaver and all is great. However, set the remote server mode. See the folder under another folder and now site is completely inaccessible with nothing. Any help? Please, I beg you!

    I doubt there are many Adobe or anyone here can help with if it's GoDaddy expire. I would say try to publish the site on a Business Catalyst trial site and check that everything works.

  • Problem with download of change site with Muse CC

    Hello

    When downloading from my site, everything is out of place on the home page and a product page. I get the following message: "MuseJSAssert: error calling the function switch: TypeError: $(...)." toBrowserWidth is not a function"on these two pages, others are fine.

    I downloaded it initially through Muse. When it did not work, I tried to download with Dreamweaver, Filezilla and Cyberduck, nothing helps... I get the same result every time.

    I checked all my belongings have been correct and that they are.

    It works perfectly when I publish in British Colombia.

    I'm at a loss to know what to do. Can anyone help?

    Thank you!

    Hi again,

    The site is now in ".com" and for this I changed my host.

    I downloaded Muse, empty the cache of my browsers (Safari and Firefox), and it works now!

    The problem must come from my previous host I guess.

    Aish thank you want to study the issue, don't need her now.

    Kind regards

    Pascale

  • An error occurred when attempting to change modules?  New installation on Mac Pro

    OK, I use LR since version 3.  I used it on Mac and windows. I was part of the program cloud creatives photographers for a year.  I recently got a new MAC Pro and setup the creative cloud thereon.  Photoshop, bridge and first test all work fine.  Lightroom, the application I use the most, does not work.  I get the above message.  I searched the troubleshooting tips and tried them - no results - I deleted LR and installed from a DVD - no change.

    I also noticed there are a lot of reports of this error on the forum and very little "problem solved" annotations - it also disturbs me that users have reported this error for what looks like a long time - it doesn't seem to be a new show. ".  It is a recurring issue that has not been set or is a container for lots of different reasons/questions?

    I am seriously disappointed that LR does not work on my new Mac Pro that I intend to move my photography work to this new computer.  All Adobe solutions?

    I tried the Solutions 1,2,4 and 5 on Fri/Sat.  No joy.  Today, I went back and looked at the troubleshooting guide again and realized that I had not tried solution 6.

    6 solution solved the problem.  I still argue that this is a recurring question and as Keith_Reeder said "it is not a managed exception.  May not be a priority issue for Adobe but a frustrating for users.

    Solution 1: Install the update of current Lightroom.

    Solution 2: Re-create the preferences file.

    Solution 3: Create a different catalog.

    Solution 4 (Lightroom 3) uninstall Nik Software plug-ins - NA

    Solution 5: Set the correct permissions on the Lightroom Application Support folder

    Solution 6: Try a different user account.

  • probs with new installation

    Hello

    My goal is to intall a new hard drive in my computer dell laptop

    I have my old the factory.wim but I Don t know how to handle

    You can help in installation

    Joerg

    Help me please - how I cam replace a hard drive

  • I have a new requiremant to enter a password before thunderbird will give me new emails. I used dialog boxes to make a new password but no luck

    See the box above

    Sometimes a mail server "remember" user credentials. They may also have changed the log in method. If you are sure that you use the name of user and password correct you should contact the provider for reasons that your credentials do not work.

  • Upgrade to the Mavericks without new installation Mountain Lion?

    Hi guys,.

    I'm looking to upgrade my Mac to the Mavericks Mountain Lion (I do not want to Yosemite or El Capitan again that not all my software is fully compatible), but I was wondering if it was possible to not have to do a clean install, but just upgrade?  I know it was an option when Mavericks was the current OSX, but don't know if it's feasible now.

    I have the installation of the Mavericks.

    Any thoughts?

    Thank you!!

    James

    Yes. Install it normally.

    (139277)

Maybe you are looking for

  • No display on the audio track

    Probably something stupid I'm do or do not do... but I saved a piece of Hammond organ on an audio track in Logic Pro X. For some reason but there is no display on the console when playing track. The track renders perfectly, but the meter section rema

  • Execution of multiple user profiles does not not in Firefox 32.0.3

    Hello. I have several profiles user for work and private use. Today I decided to use Firefox for private use again (currently using Chrome for private use). Because on Chrome, the video is "pixelated" when video quality is superior to 720 p. Also for

  • Just installed 29 and don't see the gear icon. Where is he?

    I want to be able to "Clear recent history", but according to the instructions of the Support, I need to go through the "Gear" icon, but I can't.

  • The Satellite Pro A100 has a modem 'voice '?

    The Satellite Pro A100 has a modem 'voice '? If so, can I make phone calls using the Dialer in MS Outlook with a microphone plugged into my laptop.How can I do this?

  • Skype app metro not in the shop

    I read through all the FAQ, I could find, but none of the problems seem to be the case: I am under the build 8400 Preview, 64-bit version. country is the United States. This is all that is displayed when I search Skype in the store: http://i.imgur.co