X Symbol In Image Window

I have a demo version of Contribute cs3 v4.1 on a win xp pro,
and am trying to make changes on my website that was created by
someone else. I can change the text and some of the full size
images, but not the thumbnail images, they have X symbols in them,
also the text that is a image shows a circle with a slash through
it on the cursor. Are these things not editable with Contribute ?
do I have to start over and use dreamweaver or another web
designing software.
Thanks

In Contribute you can do all your editing operation only
inside the editable region. Other non-editable region of the
template can't be modified using Contribute.

Similar Messages

  • Illustrator script to create symbols from images in folder

    Time to give back to the community...
    Here is a script I recently devised to bulk create symbols from images in a folder. Tested with Illustrator CC 2014.
    // Import Folder's Files as Symbols - Illustrator CC script
    // Description: Creates symbols from images in the designated folder into current document
    // Author     : Oscar Rines (oscarrines (at) gmail.com)
    // Version    : 1.0.0 on 2014-09-21
    // Reused code from "Import Folder's Files as Layers - Illustrator CS3 script"
    // by Nathaniel V. KELSO ([email protected])
    #target illustrator
    function getFolder() {
      return Folder.selectDialog('Please select the folder to be imported:', Folder('~'));
    function symbolExists(seekInDoc, seekSymbol) {
        for (var j=0; j < seekInDoc.symbols.length; j++) {
            if (seekInDoc.symbols[j].name == seekSymbol) {
                return true;
        return false;
    function importFolderContents(selectedFolder) {
        var activeDoc = app.activeDocument;     //Active object reference
      // if a folder was selected continue with action, otherwise quit
      if (selectedFolder) {
            var newsymbol;              //Symbol object reference
            var placedart;              //PlacedItem object reference
            var fname;                  //File name
            var sname;                  //Symbol name
            var symbolcount = 0;        //Number of symbols added
            var templayer = activeDoc.layers.add(); //Create a new temporary layer
            templayer.name = "Temporary layer"
            var imageList = selectedFolder.getFiles(); //retrieve files in the folder
            // Create a palette-type window (a modeless or floating dialog),
            var win = new Window("palette", "SnpCreateProgressBar", {x:100, y:100, width:750, height:310});
            win.pnl = win.add("panel", [10, 10, 740, 255], "Progress"); //add a panel to contain the components
            win.pnl.currentTaskLabel = win.pnl.add("statictext", [10, 18, 620, 33], "Examining: -"); //label indicating current file being examined
            win.pnl.progBarLabel = win.pnl.add("statictext", [620, 18, 720, 33], "0/0"); //progress bar label
            win.pnl.progBarLabel.justify = 'right';
            win.pnl.progBar = win.pnl.add("progressbar", [10, 35, 720, 60], 0, imageList.length-1); //progress bar
            win.pnl.symbolCount = win.pnl.add("statictext", [10, 70, 710, 85], "Symbols added: 0"); //label indicating number of symbols created
            win.pnl.symbolLabel = win.pnl.add("statictext", [10, 85, 710, 100], "Last added symbol: -"); //label indicating name of the symbol created
            win.pnl.errorListLabel = win.pnl.add("statictext", [10, 110, 720, 125], "Error log:"); //progress bar label
            win.pnl.errorList = win.pnl.add ("edittext", [10, 125, 720, 225], "", {multiline: true, scrolling: true}); //errorlist
            //win.pnl.errorList.graphics.font = ScriptUI.newFont ("Arial", "REGULAR", 7);
            //win.pnl.errorList.graphics.foregroundColor = win.pnl.errorList.graphics.newPen(ScriptUIGraphics.PenType.SOLID_COLOR, [1, 0, 0, 1], 1);
            win.doneButton = win.add("button", [640, 265, 740, 295], "OK"); //button to dispose the panel
            win.doneButton.onClick = function () //define behavior for the "Done" button
                win.close();
            win.center();
            win.show();
            //Iterate images
            for (var i = 0; i < imageList.length; i++) {
                win.pnl.currentTaskLabel.text = 'Examining: ' + imageList[i].name; //update current file indicator
                win.pnl.progBarLabel.text = i+1 + '/' + imageList.length; //update file count
                win.pnl.progBar.value = i+1; //update progress bar
                if (imageList[i] instanceof File) {         
                    fname = imageList[i].name.toLowerCase(); //convert file name to lowercase to check for supported formats
                    if( (fname.indexOf('.eps') == -1) &&
                        (fname.indexOf('.png') == -1)) {
                        win.pnl.errorList.text += 'Skipping ' + imageList[i].name + '. Not a supported type.\r'; //log error
                        continue; // skip unsupported formats
                    else {
                        sname = imageList[i].name.substring(0, imageList[i].name.lastIndexOf(".") ); //discard file extension
                        // Check for duplicate symbol name;
                        if (symbolExists(activeDoc, sname)) {
                            win.pnl.errorList.text += 'Skipping ' + imageList[i].name + '. Duplicate symbol for name: ' + sname + '\r'; //log error
                        else {
                            placedart = activeDoc.placedItems.add(); //get a reference to a new placedItem object
                            placedart.file = imageList[i]; //link the object to the image on disk
                            placedart.name =  sname; //give the placed item a name
                            placedart.embed();   //make this a RasterItem
                            placedart = activeDoc.rasterItems.getByName(sname); //get a reference to the newly created raster item
                            newsymbol = activeDoc.symbols.add(placedart); //add the raster item to the symbols                 
                            newsymbol.name = sname; //name the symbol
                            symbolcount++; //update the count of symbols created
                            placedart.remove(); //remove the raster item from the canvas
                            win.pnl.symbolCount.text = 'Symbols added: ' + symbolcount; //update created number of symbols indicator
                            win.pnl.symbolLabel.text = 'Last added symbol: ' + sname; //update created symbol indicator
                else {
                    win.pnl.errorList.text += 'Skipping ' + imageList[i].name + '. Not a regular file.\r'; //log error
                win.update(); //required so pop-up window content updates are shown
            win.pnl.currentTaskLabel.text = ''; //clear current file indicator
            // Final verdict
            if (symbolcount >0) {
                win.pnl.symbolLabel.text = 'Symbol library changed. Do not forget to save your work';
            else {
                win.pnl.symbolLabel.text = 'No new symbols added to the library';
            win.update(); //update window contents
            templayer.remove(); //remove the temporary layer
        else {
            alert("Action cancelled by user");
    if ( app.documents.length > 0 ) {
        importFolderContents( getFolder() );
    else{
        Window.alert("You must open at least one document.");

    Thank you, nice job & I am looking forward to trying it out!

  • Photoshop CS2 redraw garbage when moving around an image window on my G4 laptop

    Hi.I recently had to reinstall Photoshop CS2 onto my Mac Laptop 1.5 GHz PowerPC G4, running system 10.4.11, which required a new hard drive after the old one died. I am immediatly encountering a serious redraw/image repositioning problem in Photoshop that I have never seen before, and in Imageready as well. This does not happen in Macromedia Fireworks 8 however.
    I am zoomed into an image. Using the hand tool, or the scroll bars or the arrows, as soon as I move an image little messed up line graphic glitches appear and stay in place for the remainder or working with an image, and ultimately covers the image completely after moving around within it a number of times. you can see examples of this in these screenshots I've uploaded:
    http://pixeljam.com/temp/photoshopRedrawGarbage/moveGarbage04.gif
    http://pixeljam.com/temp/photoshopRedrawGarbage/moveGarbage03.gif
    http://pixeljam.com/temp/photoshopRedrawGarbage/moveGarbage02.gif
    and the lines stay the same size and position even when zooming in. here's the same image w/ the same defects zoomed out and in:
    http://pixeljam.com/temp/photoshopRedrawGarbage/moveGarbage01.gif
    http://pixeljam.com/temp/photoshopRedrawGarbage/moveGarbage01_zoomed.gif
    I've tried trashing & re-installing photoshop completely, tried running it before the updates needed from the original Photoshop application disk, and after. still the same problem.
    This occurs only when using the laptop on its own. When I hook it up to my Apple Studio Cinema Display, it works fine. The problem does not occur on the Cinema Display OR the laptop screen! it's very odd. Basically, the laptop is now something I cannot actually use away from my desk until this is resolved.
    Has anyone ever encountered this or possibly have any suggestions or advice? Thanks so much!
    -Rich
    And here are some more specs on my computer & hardware:
    Hardware Overview:
    Machine Name: PowerBook G4 12"
    Machine Model: PowerBook6,8
    CPU Type: PowerPC G4 (1.5)
    Number Of CPUs: 1
    CPU Speed: 1.5 GHz
    L2 Cache (per CPU): 512 KB
    Memory: 1.25 GB
    Bus Speed: 167 MHz
    Boot ROM Version: 4.9.0f0
    Serial Number: 4H5456AZRJ7
    Sudden Motion Sensor:
    State: Enabled
    Version: 1.0
    GeForce FX Go5200:
    Chipset Model: GeForce FX Go5200
    Type: Display
    Bus: AGP
    VRAM (Total): 64 MB
    Vendor: nVIDIA (0x10de)
    Device ID: 0x0329
    Revision ID: 0x00b1
    ROM Revision: 2122
    Displays:
    Color LCD:
    Display Type: LCD
    Resolution: 1024 x 768
    Depth: 16-bit Color
    Built-In: Yes
    Core Image: Supported
    Mirror: Off
    Online: Yes
    Quartz Extreme: Supported
    Cinema Display:
    Display Type: LCD
    Resolution: 1680 x 1050
    Depth: 32-bit Color
    Core Image: Supported
    Main Display: Yes
    Mirror: Off
    Online: Yes
    Quartz Extreme: Supported
    DIMM0/BUILT-IN:
    Size: 256 MB
    Type: Built-in
    Speed: Built-in
    Status: OK
    ATA Bus:
    MATSHITADVD-R UJ-845E:
    Capacity: 1.72 GB
    Model: MATSHITADVD-R UJ-845E
    Revision: DMP2
    Serial Number:
    Removable Media: Yes
    Detachable Drive: No
    BSD Name: disk5
    Protocol: ATAPI
    Unit Number: 0
    Socket Type: Internal
    OS9 Drivers: No
    S.M.A.R.T. status: Not Supported

    Hi. Thanks for your responses. There is definitely some incorrectness in the info I provided about the computer. for the Hard Drive, it's odd.. I copied and pasted that from my system profiler.. In actuality the Hard Drive is 74.53 GB. Not sure how that error occurred.
    Also I looked again at the computer's memory. I forgot the second larger 1GB memory card when I was copying and pasting from the system profiler. Sorry about that. I was in a but of a rush to get the question out.
    DIMM0/BUILT-IN:
    Size: 256 MB
    Type: Built-in
    Speed: Built-in
    Status: OK
    DIMM1/J31:
    Size: 1 GB
    Type: DDR SDRAM
    Speed: PC2700U-25330
    Status: OK
    Another thing I noticed about the problem I'm facing is that it leaves defects from mouse trails as well in the image window. None of the defects are lasting nor will they print. I close the file and they go away, if I zoom, they stay the same size. I'd agree, it sounds like a video card problem, but the reason I posted here is that only in photoshop and imageready do these problems occur. My guess, if it's the video card is that they are just programs that require more of the system. why my video card would be crapping out now, I have no idea. but I guess that's how it goes.
    But why would it work fine when hooked up to the apple cinema display? even on the laptop screen itself the problem is not present. only when the laptop is on its own.
    The computer has served me very well for almost 3 years without this problem, so that's why it's something that is not a normal problem that should be expected from this computer. I am grateful to have it & can't afford a new one.. this one is still sitting on my credit card balance. Thankfully I am under the applecare protection plan and will bring it in to the local Mac shop on monday and demonstrate the issue to them.
    Thanks for your replies.

  • Exporting animated symbol to image sequence

    Hi guys!
    I'm unable to export an animated symbol to image sequence properly because the symbol does not animate.
    I created the tweens in multiple layers, then cut-pasted all layers to a new symbol. I did this so I could then just do some tween motions on the symbol.
    The tweening is perfect, but when I export the image sequence, the images do not animate the way it does on the Flash player. All I get is an image sequence with the tweened symbol, but the symbol itself does not animate.
    I'd really appreciate if you guys could give me a tip on how to get the symbol to animate when exporting the image sequence.
    Alternatively, is there a way to motion-tween multiple layers simoultaneously? (Layers which are themselves tweened)
    Thank you guys!
    Any additional info, I'll be checking regularly so I can provide as much description as possible to get this to work.

    Ok, I figured it out!
    I changed the symbol type to "Graphic," and I was able to see the animation in the timeline. Easy!
    Now I just exported the movie to png sequence, and bam! Magic!
    If anyone has this problem, don't hesitate to ask me and I'll ellaborate on what I did.
    Thanks!

  • Opening Image Window defaults

    When I open images in photoshop(windows, not tabs), why do the image windows open far left? Each time I edit I have to drag to center and enlarge. Is there any way to change defaults to have images open centered and full screen?

    I use the very same script. In Photoshop Preferences > Interface  I have "open in Tabbed mode" checked.  There tall images center against a dark background
    If I have my documents open as separate windows, as when I uncheck the Application Frame on my Photoshop Mac, then the image window opens to the left.
    So it's "Tabbed mode" and Window menu > Application Frame checked on.
    Of course that does not fix your dilemma if you must use Document Windows instead of Tabs. So I will link you to two scripting venues for a possible solution.
    Gene
    Photoshop Scripting
    ps-scripts.com • Index page

  • How to draw an arc in the image window?

    Now I try to draw an arc in the image window, but when I try to use IMAQ Overlay Arc.vi, it need Bounding Rectangle that made a problem because the arc I draw has a big size whose bounding rectangle was out of the image window. What should I do?

    Hello,
    Bounding rectangle parameters will allow you to enter larger values than your image size as well as negative numbers in order to position your arc properly.
    I hope this helps!
    Regards,
    Yusuf C.
    Applications Engineering
    National Instruments

  • CS 6 Image Windows Don't Stay Where I Put Them

    I installed CS 6 yesterday.  My system runs 64 bit Win 7.  In Preferences > Interface, as I did in CS 5, I unchecked both Open Documents as Tabs and Enable Floating Document Window.  However, unlike CS 5, in CS 6 images 'insist' on positioning themselves in the upper left corner of CS 6 and will cover both the options bar and the tool bar.  For example, this will happen after opening an image if I try to move it or if I enlarge the image window (CTRL-0).  If I open two images and try to move one so I can see both at the same time, the one I try to move will not stay where I put it but instead will reposition itself to the upper left, and cover the options bar and menu bar.
    As you might image, this makes working in CS 6 difficult and inconvenient.  I assume this is a bug, and wonder if there are any workarounds or other solutions.  To this point, I have not yet uninstalled and re-installed CS 6.  Any suggestions would be appreciated.
    Best regards,
    David

    Noel Carboni wrote:
    Can we assume you hate the Auto-Hide feature even worse? 
    Hi,
    The answer to your question is 'probably'.  I like things to stay put, ideally where I want them.  So far my feeling is that having the task bar on the bottom is the lesser of the two 'evils'.  But your note reminds me to give auto-hide another try.  Thanks.
    Best,
    David

  • Adjust Image window disappeared

    I have a Macbook - it looks like the Adjust Image Window for Keynote is to the left or right of the screen beyond view. How do I get it back?
    cp

    My inspector window was completely hidden with the additional monitor in full resolution, just like You describe it- funnily enough not even restarting the program/computer helped getting the window back in range
    I found the ultimate help: with a second monitor (I use a laptop, so one is always in the go):
    - switch the display settings to "synchronize" and "attach" the additional monitor on the edge the inspector is hiding at (detectable by a little stripe that disappears when You push the inspector button- it should appear again so You can move it to where it belongs... thanks Fatih!

  • Mac OS X 10.6.8; iPhoto- photos  to 'burn folder'; press 'burn' symbol. This window appears: 'Burn - The disc can't be burned, bcause the device failed to calibrate the laser power level for this media'; what to do next to address this?-

    have Mac OS X 10.6.8; Put a few iPhoto-photos  to 'burn folder'; press 'burn' symbol. This window appears: 'Burn - The disc can't be burned, bcause the device failed to calibrate the laser power level for this media'; what to do next to address this?-

    That's a hardware issue and I'd ask on the forum for whatever Mac you have.

  • Resizing Image Window in Photoshop using Javascript

    I write many scripts using the ScriptListener as my base for obtaining my scripts. One of the steps I need is to resize the Image window so I can properly place a logo on an image. When I resize the image using File>Automate>Fit Image. The Image Window shrinks down and I have to use Control 0 or Command 0 to resize the image window to be able to view a larger image on the screen to place the logo.
    This is the Image Window Size after File>Automate>Fit Image
    I need ot make the Image Window Larger using Control or Command 0
    ScriptListener does not record this step of Control or Command 0.
    Is there a script that anyone knows that does this?
    It would be a great time saver if there was.
    Thanks in advance for assisting me.
    WorkflowMaster

    Hi Workflowmaster,
    Can you check the below mentioned script for your solution...
    I think it can be works.......
    - yajiv
    Code :
    Fit_ON_Screen();
    function Fit_ON_Screen(){
            var idslct = charIDToTypeID( "slct" );
            var desc64 = new ActionDescriptor();
            var idnull = charIDToTypeID( "null" );
            var ref44 = new ActionReference();
            var idMn = charIDToTypeID( "Mn  " );
            var idMnIt = charIDToTypeID( "MnIt" );
            var idFtOn = charIDToTypeID( "FtOn" );
            ref44.putEnumerated( idMn, idMnIt, idFtOn );
            desc64.putReference( idnull, ref44 );
            executeAction( idslct, desc64, DialogModes.ALL );

  • Image Window Problem

    Please advise why my image windows fly to the left of the screen when I select 'float in window' or float all in windows in the work space tab.   If I drag the window back to where I want it, it flies back to the left of the screen.   I'm using Windows 7 Prof.  Thanks for help.  Paul

    Hi,
    Are you using photoshop cs6?
    Have you installed the latest photoshop cs6 updates by going to Help>Updates from within photoshop?

  • Cropping question: image window disappears

    Lately, when click after cropping an image in CS5 the image window disappears.
    Rashid Arshed

    You probably have some values entered in the width, height or resolution fields.
    With the crop tool selected, either click on the Clear button or right click on the Crop icon in the tool options bar and select Reset Tool.

  • Assistance with Imaging windows 7 via windows PE

    Hi All.
    I require help imaging windows 7 with windows PE.
    I have a correctly set up bootable UFD with all PE and imagex files on it.
    I have created and prepared the windows 7 installation for imaging and have sysprepped it.
    When trying to capture the image to the UFD, it will capture but lasts 3 seconds and produces an 8mb file.
    Why is it not capturing the whole image?  There are no errors displayed.
    I am using the command 
    F:\imagex /compress fast /check /capture c: f:\install.wim "Windows 7" "Windows 7 Image"

    Hi Jarad,
    We hope your issue has been resolved, if you've found solution by yourself. We would appreciate it if you could share with us and we will mark it as answer.
    Drive letter might be not same as Windows Explorer under Windows PE, please follow Tripredacus suggestion using disk part check again.
    Regards
    D. Wu
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • HP Deskjet 3050A J611 series - error message -Bad image windows\system 32\d3d 10 warp.dll

    I use the HP Deskjet 3050A J611 series printer with my laptop and a desktop PC.  It works fine with the laptop but when I installed the software onto the desktop the window error message Bad Image Windows\ System 32\d3d 10 warp.dll kept popping up every few minutesd.  By a process of ilimination I discovered that it was the Photo Creations that was causing the problems, when I removed it all was good and I was able to use the printer.  The only problems is that I now cannot print photos from my pc.  I have windows 7.
    Can anyone help please?

    Hi Chris.
    That error message comes from Direct3D, which is part of the DirectX software in Windows. It appears that part of the DirectX environment on your computer is corrupt. Microsoft provides a diagnostic tool that should help you sort this out. Please see http://windows.microsoft.com/en-us/windows-vista/run-directx-diagnostic-tool
    If that does not solve the issue, you may want to reinstall the device driver for your graphics adapter.
    When all's running smoothly, you can reinstall HP Photo Creations to print again. Our customer support team would be happy to help with the reinstallation. You can reach them at www.hp.com/global/us/en/consumer/digital_photography/free/software/support-form.html
    Hope this helps,
    RocketLife
    RocketLife, developer of HP Photo Creations
    » Visit the HP Photo Creations Facebook page — news, tips, and inspiration
    » See the HP Photo Creations video tours — cool tips in under 2 minutes
    » Contact Customer Support — get answers from the experts

  • I have a 16" mac book pro. The bottom of the Photoshop image window is below my screen view..

    I have a 16" mac book pro. The bottom of the Photoshop image window is below my screen view. I cannot shrink my Photoshop window!   I tried changing the Display what else can I do?

    buzzero wrote:
    You cannot size the image window from any corner but the bottom right corner in Photoshop on a MAC
    That was true for many years...but not anymore. Adobe started allowing window resize from any edge (not just any corner, but any edge) a couple of versions ago, on the Mac, to match Windows. On top of that, in OS X Lion, Apple itself now allows window resizing from any edge in any application. That said, even in Lion, I noticed that I had to move the Photoshop CS6 window edges away from the monitor edge before I would get the double-arrow resize pointer. Not sure if that's a bug. Here's a picture of what Photoshop window resizing looks like:
    Also, if resetting workspaces doesn't work, you could try a complete Photoshop preferences reset. Start Photoshop CS6 and press Command+Option+Shift, and a reset dialog box should come up. Click OK.

Maybe you are looking for