CC of Dreamweaver for creating nav for the psd layer?

Have used for a very long time adobe products, taking a few years off and now looking at using the CC to make projects internet-platform. In the past, created from layers in the Photoshop files, menus in Navigation who answered the mouse above and down. Example for the various layers to answer in a PSD file with the mouse and the mouse down. Is this possible in Dreamweaver with extraction or other methods? or do I need to do it in Flash, if it is done in flash, then this can be used in cross-platform internet projects (web, smartphone, Tablet) in responsive web design with bootstrap? Started to seek to do, it is in Fireworks, but Fireworks is currently abandoned. What are the new ways to address more effectively?

A lot has changed in a few years.  Flash is a web technology that is now dead.  iOS, Android and other smart devices can't and never will be, so Flash is out.

Mouse event triggers won't hurt on touchscreens because they have no mouse.  Again, the generated PSD menus are one is not a good option in Responsive Web Designs.

Old fashioned and multi-level drop menus have lost favor in recent years because they absorb too much real estate and they are awkward for users of mobile devices. The trend is now simplified, touch friendly menus collapsing on smaller devices.  See the example. Editor of Tryit v2.6

Use PS to design comps and images only.  Learn to work with HTML5, CSS and JavaScript. Sensitive use frameworks such as Bootstrap if they will help you to start your projects.

Bootstrap DW CC tutorials

https://helpx.Adobe.com/Dreamweaver/how-to/make-style-Web-page.html

Nancy O.

Tags: Dreamweaver

Similar Questions

  • How you change the highlight color for the active layer in the layers panel?

    How can you change the highlight color for the active layer in the layers panel BY 9?

    Do you mean you want something other than the darker gray (windows) or blue (mac)? Sorry, no can do, if that's what you hear.

  • JS CS4: Create the variable for the active layer, and then select the layer at the end of a script

    I'm come white with the verbiage and spin my wheels with OMV guide and script.

    var myOriginalLayer = app.activeDocument.layers.item (0);
    Alert (myOriginalLayer)

    Returns "layer object" and not the name of the layer.

    var myOriginalLayer = app.activeDocument.layers.lastItem () .name;

    Returns the name of the layer I want but not by choice.

    I am challenged on how to select the layer.

    Hi John,.

    The difference lies in that the [Object Layer] is the real object, and the 'name' is a property - like color.

    You can use one of these two approaches:

    var myOriginalLayer = app.activeDocument.layers.item (0);
    Alert (myOriginalLayer.Name);

    hosts the original layer object, and you can see the name if necessary :-)

    For re - select the layer, use

    app.activeDocument.activeLayer = myOriginalLayer;

    You can also select name goes like

    var myOriginalLayerNAME = app.activeDocument.layers.lastItem () .name;

    ...

    app.activeDocument.activeLayer = app.activeDocument.layers.item (myOriginalLayerNAME);

    I also noted the following:

    app.activeDocument.layers.item (0) points to the first layer of your document; not the 'active'. Similarly, app.activeDocument.layers.lastItem () points only to the very last. I don't know if the order of the activeDocument.layers array mimicks the order as shown in the tags palette, but I hope for it :-)

    To get/set the active layer, use app.activeDocument.activeLayer as shown above.

  • New default length for the text layer

    Whenever I have add a new image or a text layer, it goes the entire length of the model. Can I change so that it will only a few images by default?

    You can set it in the AE preferences.  But if you're dealing with a group of layers of text or still images, and they are believed to have different lengths, it can get to be a real pain.

    Many people find more easy just use the keyboard shortcuts for the value of the layer in & points: opt/alt-[for the point in opt/alt] - to the out point.  He works for several layers, too: just select the ones you want before using keyboard shortcuts.

  • How to disable CSS in Dreamweaver for the newsletter and electronic signature?

    Given that most email clients do not support CSS, we avoid using CSS in our newsletter e-mail and electronic signature. However, Dreamweaver will automatically genereate the CSS every time we use any style. Is it possible to configure the properties of the page to not to use CSS and fall back to the obsolete html style for maximum compatibility?

    For example:

    " < span style= 'FONT-SIZE: 10pt; FONT-FAMILY: Arial"> </span > signature .

    Found! In Preferences > general, uncheck the box:

    Use CSS instead of HTML tags

  • Mac dreamweaver for the hotspot tool has a problem and I can not choose anything?

    Anyone know the reason for this bug?

    First of all, make sure that you are in Design mode by selecting it from the drop-down list Liv/Design...

    Then, select the image and the Image Map tools will appear in the Properties window...

    If you are in Split with Live View, the tools will not appear. You MUST have view on the design tools toolbar or they do not come to the top. DW CC2014 and later, a Live view editor that allows for editing mode Live View. Unfortunately, Adobe still has failed the LVE all functions of the display of old design.

  • Photoshop CC 2015 - question for the adjustment layer curves

    Hello

    For some reason any, as I'm checking the black point of the image, it turns completely white. The only way to return to normal is to choose the default option from the preset menu.

    When you do the same thing with the white point, it works OK, as usual.

    Any ideas?

    Thank you.

    "Doesn't seem very unlikely but: does turn off ' use graphics processor" in the Performance preference and restarting Photoshop have a bearing on the question?

    Otherwise, I can't offer any advice better than going but the usual routines of troubleshooting, start by restore preferences after checking all the presets custom actions, patterns, brushes etc. have been recorded:

    t http://blogs.Adobe.com/Crawlspace/2012/07/Photoshop-basic-troubleshooting-steps-to-fix-MOS - issues.html

  • Toggle visibility for the Group layer

    With the help of this forum, I got a script that activates / deactivates the visibility of a specific layer without selecting the layer.

    I would like to know if the same functionality can be obtained for a layer group.

    In other words the script can toggle the visibility of a layer with output actually group by selecting the Group of layers?

    I understand that some parts of Photoshop are not scriptable and wan to ensure that it is not one of them, before I was embarking on the creation of the script.

    
    

    I have a script that does what you need. Can't remember if I got here, but I know that the scripts here guys are geniuses and can help you with almost anything. That being said, here's the script you need. All you need to do is replace the three parties "Insert Layer Name Here" with the name of the layer you want to toggle. Don't thank me, thank the guy who wrote (probably someone here)

    var targetID = getLayerIDByName('Insert Layer Name here');
    if(undefined != targetID){
        if(getLayerVisibilityByID( targetID ) ){
            hideByName('Insert Layer Name here');
        }else{
            showByName('Insert Layer Name here');
        }
    }
    function getLayerIDByName(name) {
        try{
        var ref = new ActionReference();
        ref.putProperty( charIDToTypeID("Prpr") , charIDToTypeID( "LyrI" ));
        ref.putName( charIDToTypeID( "Lyr " ), name );
        return executeActionGet(ref).getInteger(charIDToTypeID( "LyrI" ));
        }catch(e){}
    };
    function getLayerVisibilityByID( id ) {
        var ref = new ActionReference();
        ref.putProperty( charIDToTypeID("Prpr") , charIDToTypeID( "Vsbl" ));
        ref.putIdentifier( charIDToTypeID( "Lyr " ), id );
        return executeActionGet(ref).getBoolean(charIDToTypeID( "Vsbl" ));
    };
    function hideByName(name) {
        var desc = new ActionDescriptor();
            var list = new ActionList();
                var ref = new ActionReference();
                ref.putName( charIDToTypeID('Lyr '), name );
            list.putReference( ref );
        desc.putList( charIDToTypeID('null'), list );
        executeAction( charIDToTypeID('Hd  '), desc, DialogModes.NO );
    };
    function showByName(name) {
        var desc = new ActionDescriptor();
            var list = new ActionList();
                var ref = new ActionReference();
                ref.putName( charIDToTypeID('Lyr '), name );
            list.putReference( ref );
        desc.putList( charIDToTypeID('null'), list );
        executeAction( charIDToTypeID('Shw '), desc, DialogModes.NO );
    };
    

    EDIT-Oops, I just realized that it is only for layers, not groups. But I hope that it is a starting point

  • Eraser tool does not work for the black layer mask

    I'm trying to put a black layer mask and use Eraser tool to change.  Unfortunately the Eraser tool does not.  I'm not knowingly do anything differently that I did in the past.  Recently, I did a round of software updates for CS6.  I was wondering if anyone else is experienceing this and if there is a solution?

    Verify that the in the Toolbox foreground color is set to black. (in front of when using the Brush tool)

    Press D, and then press the X key.

    And opacity and flow are 100%.

    Most people use the brush on the layer masks and you might find that works better.

  • Problem of transparency for the half-layer Photoshop CS4

    Hello, my name is Rob. I know this may sound weird, I'm still new with CS4, I use Photoshop CS for a few years now and just passed to CS4 a few days ago, but I have a problem. When I do a new "part" (when you go File-> New) the next thing I get is a transparent layer that is cut in half on the diagonal. I don't know if this is a feature of CS4, adjustment or a bug, or perhaps something that has turned during the installation. I need help.

    I've included a few photos to allow you to take a look.

    Untitled.jpg

    (If I save the image, it is completely visible. I find that very annoying because I don't know where should I put the text/images.)

    (Sorry for noobish image, just wanted to show you my problem.)

    It is a video card driver problem.

    CS4 version 11.0.1 update and then update your video drivers.

    If it does not turn off OpenGL.  If this works it says that your graphics card/driver is not compatible.

  • As for the Apps layer

    Hi Hussein.

    I'm confused. Our customer bought four 4 servers. 2 Teir Apps and 2 DB level that are required to be both in the configuration of the CARS. My question is can the Appstier be configured as CARS? I thought that the CAR has to database.


    Thank you very much

    Hello

    Good luck, but this is a technical forum (not a chat room), so please change your previous answer.

    Thank you
    Hussein

  • Analysis of a psd for the font size.

    I am currently scanning the PSD files. I use imagick for pixelated layers, but I need to get the font data for layers of fonts from imagick can do I need to do it myself. Right now I'm able to grab text, font family, font color, but not the size of the police.

    There are some ' / FontSize xx.xxx ' in the PSD but usually not of them are suitable:

    • In some PSD files all font sizes caught here are disabled by the same scale factor.
    • In some layers of different PSD files is distinguished by the same scale factor.
    • In some files PSD, all sizes are correct.

    Adobe provides specifications for the PSD file format, but these are outdated and incomplete, they don't even mention the size of the font.

    I tried to use a copy of the same file just change the font size, but does not.

    Is there someone who have already done this or ideas pointing me in the right direction?

    Check out the forum script Photoshop there was some discussion on the scripts of text layers.

    https://forums.Adobe.com/search.jspa?place=%2Fplaces%2F1383833&q=text+layer+content

    https://forums.Adobe.com/search.jspa?place=%2Fplaces%2F1383833&q=text+layer+font

    https://forums.Adobe.com/search.jspa?place=%2Fplaces%2F1383833&q=text%2Clayer%2Cattributes

  • Position of the text and the mask for the position was separated

    Hello

    I tried searching for this solution on several different forums, but no luck.  Maybe I'm phrasing the wrong question.  Any help would be greatly appreciated, and I hope it's something pressing.

    What I'm trying to achieve:

    I want to have this sentence scroll down, left to right: "we had a good time."

    I want seems to US first by using the scale, but the following words that follow to be made then slide from left to right, any entry behind the word on his left.  So after 'We', a fraction of a second later, I want the word 'had' to come behind the word 'We' - BUT be hidden by a mask until it clears the word '' We. ''


    After that, I want the word or the letter 'a' to do the same thing after that and so on, and so on.


    I hope I explained this correctly.


    Thank you.


    Kind regards

    Erik

    Have another layer to 'Us', then use a track matte for the other layer.

  • Compensate for the div / positioning in IE problem

    I posted this problem in another thread, but it was a sub-question. Anyway, the problem I have is positioned a div on all other divs. I managed to make it work perfectly on Firefox and Chrome as I wanted. The problem is usually when it comes to internet explore. I want just the image or the div on the right side of the site, but always placed by changing properties will give the same result, places of internet explore is far away where it is supposed to be. I'll add pictures, the code and the site below. Any help would be appreciated.

    View of chrome:

    Chrome View.png

    View of Firefox:

    Firefox View.png

    * IE View (false):

    IE View.png

    Web site: http://emergencyclean-up.com

    Code:

    < ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

    " < html xmlns =" http://www.w3.org/1999/xhtml ">

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"

    < title > emergency Clean Up Homepage < /title >

    < style type = "text/css" >

    {body

    background-color: #333333;

    }

    #entireSite #sidebar #spacer {}

    height: 300px;

    Width: 350px;

    }

    #entireSite #sidebar #newsletter {}

    background-image: url (.. / Images/NewsLetterBackground.png);

    height: 165px;

    Width: 350px;

    color: #FFF;

    }

    < / style >

    < link hand. CSS"rel ="stylesheet"type =" text/css"/ >

    "" < script src = "... / SpryAssets/SpryMenuBar.js" type = "text/javascript" > < / script >

    < script type = "text/javascript" >

    function MM_swapImgRestore() //v3.0 {}

    var i, x = offline. MM_sr; for (i = 0; a & & I <.) Length & & (x = a [i]) & & x.oSrc; i ++) x.src = x.oSrc;

    }

    function MM_preloadImages() {//v3.0

    var d = document; If (d.images) {if(!d.MM_p) d.MM_p = new Array();

    var i, j is d.MM_p.length, a = MM_preloadImages.arguments; for (i = 0; i <.) Length; i ++)

    If (a [i].indexOf("#")! = 0) {d.MM_p [j] = new Image; d.MM_p [j ++] .src = a [i] ;}}

    }

    function MM_findObj (n, d) {//v4.01

    var p, i, x;  if(!d) d = document; If ((p = n.IndexOf ("?")) > 0 & & parent.frames.length) {}

    d = parent.frames [n.Substring(p+1)] .document; n = n.Substring (0, p) ;}

    If (!) () x = d [n]) & & copyrights) x = d.all [n]; for (i = 0;! x & & i < d.forms.length; i ++) x = d.forms [i] [n];

    for (i = 0;! x & & d.layers & & I < d.layers.length; i ++) x = MM_findObj (n, d.layers [i] .document);

    If (! x & & d.getElementById) x = d.getElementById (n); Return x;

    }

    function MM_swapImage() {//v3.0

    var i, j = 0, x, a = MM_swapImage.arguments; document. MM_sr = new Array; for (i = 0; i <(a.length-2); I += 3).

    If ((x = MM_findObj (a [i]))! = null) {document. MM_sr [j ++] = x; if(!x.oSrc) x.oSrc = x.src; x.SRC = a [i + 2] ;}

    }

    < /script >

    "" < link href = "... / SpryAssets/SpryMenuBarHorizontal.css" rel = "stylesheet" type = "text/css" / >

    < / head >

    < onload of the body = MM_preloadImages('..) ' / Images/Buttons/buttonOver_01.gif ','... / .png images/WaterDamageOver ','... / Images/FireDamageOver.png ','... / Images/MoldRemediationOver.png ','... / MovalOver.png images/SootRe ','... / Images/OdorControlOver.png ','... / Images/facebook - logoOver.png ','... / Image s/yelp - logoOver.png ','... / Images/LinkedIn_logoOver.png ','... '. Twitter/images /-logoOver.png') ">"

    <!-it starts the encoding for the centering of the entire Web page->

    < div style = "width: 100%;" >

    < div style = "width: 900px; margin-left: auto; margin-right: auto; ">

    < div style = "width: 100%;" float: left; background-color: #333333; ">

    <! - this starts the background for the navbarArea layer - >

    < div id = "navbarArea" >

    <!-this starts the container div for the navigation bar->

    < div align = "center" >

    < div id = "navbar" >

    < ul id = "MenuBar1" class = "MenuBarHorizontal" >

    < li > < strong > < a href = "index.html" > Home Page < /a > < / strong > < /li >

    < li > < strong > < a href = "On Us.html" > us < /a > < / strong > < /li >

    < li > < strong > < a href = "Services.html" > Services < /a > < / strong > < /li >

    < li > < strong > < a href = "Testimonials.html" > stories < /a > < / strong > < /li > ""

    < li > < strong > < a href = "Us.html of Contact" > contact us < /a > < / strong > < /li >

    < li > < strong > < a href = "Offers.html" special > offers special < /a > < / strong > < /li >

    < /ul >

    < / div > < / div >

    <!-This completes the container div for the navigation bar->

    < / div >

    <! - This completes the background for the navbarArea layer - >

    <!-this starts the entireSite area * excludes navbar *->

    < div id = "entireSite" >

    <! - this starts the container for the sidebar image - >

    < div id = "sidebar" >

    <! - it starts a div for spacing - >

    < div id = "spacer" >

    < / div >

    <!-this ends a div for spacing->

    <! - it starts div newsletter - >

    < div id = "newsletter" >

    < Center > < font size = "5" > subscribe to our Newsletter < / police > < / center >

    < do action = "subscriptionform.php" method = "post" id = "Newsletter" > "

    < table width = "100%" border = "0" cellpadding = "3" >

    < b >

    < td > name: < table >

    < td > < input name = "News Letter Name" type = "text" size = "30" maxlength = "40" / > < table >

    < /tr >

    < b >

    < td > Email: < table >

    < td > < input name = "News Letter Email" type = "text" size = "30" maxlength = "40" / > < table >

    < /tr >

    < b >

    < td > Zip Code: < table >

    "" < td > < input name = "News Letter Postal Code" type = "text" size = "10" maxlength = "12" / > < table >

    < /tr >

    < /table >

    Center of <>< input name = "Subscribing" type = "Submit" id = "subscribe" / > < / center >

    < / make >

    < / div >

    <! - this bulletin ends div - >

    < / div >

    <!-This completes the bar area side image->

    <! - this starts the maintext area - >

    < div id = "maintext" >

    <! - this starts the title within the maintext area bar - >

    < div id = "title bar" >

    < br / >

    < / div >

    <! - the ends of the title bar of maintext area - >

    < br / >

    "" Center of <>< img src = "... / Images/Logo.png" width = "500" height = "160" alt = "Logo" / >

    < br / >

    < br / >

    < center > choose among our different services here for the emergency Clean-Up < /Center >

    < br / >

    < table width = "100%" border = "0" cellpadding = "0" >

    < b >

    "< td > < Center > < a href ="Damage.html water"MM_swapImgRestore" onmouseover = "MM_swapImage ('WD '", '... / Images/WaterDamageOver.png ', 1) "> < img src =" "... / pictures/WaterDamage.png" alt = "Water damage" name = "WD" width = height "75" = "75" border = "0" id = "WD" / > < /a > "

    < br / >

    Water damage < / center > < table >

    "< td > < Center > < a href ="Damage.html fire"MM_swapImgRestore" onmouseover = "MM_swapImage ('FD '", '... / Images/FireDamageOver.png ', 1) "> < img src =" "... / pictures/FireDamage.png" alt = "Fire damage" name = "FD" width = "75" height = "75" border = "0" id = "FD" / > < /a > "

    < br / >

    Fire damage < / center > < table >

    "< td > < Center > < a href ="Remediation.html Pan"MM_swapImgRestore" onmouseover = "MM_swapImage (' SIR '", '... / Images/MoldRemediationOver.png ', 1) "> < img src =" "... / pictures/MoldRemediation.png" alt = "Mold Remediation" name = "MR" width = "75" height = "75" border = "0" id = "MR" / > < /a > "

    < br / >

    Mold remediation < / center > < table >

    "< td > < Center > < a href ="Removal.html of soot"MM_swapImgRestore" onmouseover = "MM_swapImage ('SR '", '... / Images/SootRemovalOver.png ', 1) "> < img src =" "... / Images/SootRemoval.png" alt = "Remove soot" name = "SR" width = "75" height = "75" border = "0" id = "SR" / > < /a > "

    < br / >

    Removal of soot < / center > < table >

    "< td > < Center > < a href ="Control.html of the smell"MM_swapImgRestore" onmouseover = "MM_swapImage ('OC '", '..) " (/ Images/OdorControlOver.png',1) "> < img src ="... / pictures/OdorControl.png "alt ="Odor control"name ="OC"width ="75"height ="75"border ="0"id ="OC"/ > < /a >

    < br / >

    Odour control < / center > < table >

    < /tr >

    < /table >

    < br / >

    < Center > for more services please click < a href = "Services.html" > here < /a >. < /Center >

    < / div >

    <!-this ends the area-> maintext

    <! - this starts the bottombar image - >

    < div id = "bottombar" >

    "" < img src = "... / Images/bottomBar.png" width = "900" height = "25" alt = "bottombar" / > < / div >

    <! - this ends the image of the low bar - >

    <! - this starts the hotlinks box - >

    < div id = "hotlinks" >

    "< a href =" # "MM_swapImgRestore" onmouseover = "MM_swapImage ('FB '", '... /Images/Facebook-logoOver.png',1) "> < img src =" "... /Images/Facebook-logo.png" alt = "Facebook" name = "FB" width = "25" height = "25" border = "0" id = "FB" / align = "left" > < / has > "

    "< a href =" # "MM_swapImgRestore" onmouseover = "MM_swapImage ('YP '", '... /Images/Yelp-logoOver.png',1) "> < img src =" "... /Images/Yelp-logo.png" alt = "Yelp" name = "YP" width = "25" height = "25" border = "0" id = "YP" / align = "left" > < / has > "

    "< a href =" # "MM_swapImgRestore" onmouseover = "MM_swapImage ('TR '", '... /Images/Twitter-logoOver.png',1) "> < img src =" "... /Images/Twitter-logo.png" alt = "Twitter" name = "TR" width = "25" height = "25" border = "0" id = 'B' / align = "left" > < / has > "

    "< a href =" # "MM_swapImgRestore" onmouseover = "MM_swapImage ('LI '", '... / Images/LinkedIn_logoOver.png ', 1) "> < img src =" "... / Images/LinkedIn_logo.png ' alt = 'Linked In' name ="LI"width ="25"height ="25"border ="0"id ="LI"/ align ="left"> < / has >"

    < / div >

    <! - this end area of hotlinks - >

    <! - this starts the field of copyright - >

    < div id = 'copyright' >

    < br / >

    < p align = 'right' > content copyright 2012. EMERGENCYCLEAN - UP.COM. All rights reserved. < /p >

    < / div >

    <! - this end, the field of copyright - >

    < / div >

    <! - This completes the entireSite container - >

    "" < div id = "containerEmergency" > < img src = "... / pictures / emergency contact.png" width = "220" height = "220" / >

    < / div >

    < / div >

    < / div >

    < / div >

    <!-This completes the coding for the centering of the entire Web page * excludes navbar *->

    < script type = "text/javascript" >

    var MenuBar1 = new Spry.Widget.MenuBar ("MenuBar1", {imgDown: "..."}) "" / SpryAssets/SpryMenuBarDownHover.gif ', imgRight: ".. ({"/ SpryAssets/SpryMenuBarRightHover.gif"});

    < /script >

    < / body >

    < / html >

    A few steps to follow.

    First make a backup copy of the file site just in case things go belly up and you need to revert to the original.

    Add position: relative; to the

    the bottom (as shown)

    Then move your

    named "containerEmergency" directly below the
    who added you position: relative; TO:

    Add z-index: 100; to the css "containerEmergency" as shown below:

    {#containerEmergency}

    height: 250px;

    Width: 250px;

    position: relative;

    Top: 0px;

    right: 0px;

    left: 720px;

    border-top-style: none;

    border-right-style: none;

    border-bottom-style: none;

    border-left-style: none;

    border-bottom-color: #F00;

    border-right-color: #F00;

    border-bottom-color: #F00;

    border-left-color: #F00;

    z-index: 100;

    }

    Add z-index: 2; to the css of 'entireSite ':

    {#entireSite}

    height: auto;

    Width: 900px;

    position: absolute;

    top: 50px;

    z-index: 2;

    }

    Add z-index: 1; to the css "navbar":

    {#navbarArea #navbar}

    background-color: #929BA0;

    height: 40px;

    Width: 900px;

    position: relative;

    top: 20px;

    left: auto;

    right: auto;

    do-family: Arial, Helvetica, without serif.

    do-size: 12px;

    z-index: 1;

    }

    Now it should work ok in Internet Explorer.

  • AppleScript continues to stop for the interaction of the user

    I use this great applescript to transform my indesign layers in photoshop layers:

    http://www.zenodesign.com/scripts/PagestoPSLayers.zip

    He asks a folder put a temporary pdf file, then asks some preferences (indesing pdf export preset, color mode, pagenumber, resolution and anti-aliasing on or off). Then the script should work fine until what indesign all layers are beautifully transformed into pixelated photoshop layers.

    This used to work perfectly until today, I had to use the script again. For some reason any the script continues to stop for interaction with the user.

    Photoshop gives me the dialog box 'Open', then 'Import PDF' dialog box (don't use only not settings than the requested script), 'Open' and 'Import PDF' same dialog boxes for the next layer, then a dialog box to name a duplicate layer, the dialog box 'Close Document', 'Préférences' dialog box, "Canvas size" dialog box... you get the point.

    All the stuff the script should be done automatically.

    I'm not in myself, but it used to run fine without present me all these script dialogs. Any help is appreciated!

    Try to put this first statement

    Tell application "Adobe Photoshop"

    set the display of dialog boxes for ever

    tell the end

    and then even add at the end but say

    set the display of the dialog boxes for always

Maybe you are looking for