Corupt Template, Other Problem?..

Okay, here's the situation:
Been working happily for several weeks with a DW MX site on a
PC under XP. Building a site, currently about 115 pages, all
derived from a single template.
Now get error messages preventing me from working on the
pages. One message reads thus:
<<Making this change would require changing code that
is locked by a template or a translator. The change will be
discarded.>>
The part of the page I was working on was an editable region
I've been working on with no problems for six weeks.
Here's another error message:
<<While executing DWMenu_Edit_Paste command in
menus.xml, the following JavaScript error(s) occurred:
"TypeError:MM.event has no properities.">>
I've just tried working on two other sites and I'm getting
similar weird behavior to above.
Oh and one more thing: browser preview doesn't show browsers
selected.
Hmm. Sounds like a corrupt program? I only installed it about
two months ago.
Rebooting didn't help.
Any ideas?

> Building a site, currently about 115 pages, all derived
from a single
> template.
A single template is good, but 115 pages is on the edge of
suitability for
template use, in my experience. Have you considered also
using server-side
includes?
> Now get error messages preventing me from working on the
pages. One
> message
> reads thus:
>
> <<Making this change would require changing code
that is locked by a
> template
> or a translator. The change will be discarded.>>
This error message is something of a red herring in that ANY
coding error on
the page will cause DW to throw it, rather than anything
specifically in the
editable region. Can you show me your template page?
> Here's another error message:
>
> <<While executing DWMenu_Edit_Paste command in
menus.xml, the following
> JavaScript error(s) occurred: "TypeError:MM.event has no
properities.">>
This one troubles me. Which DW are you using? What DW
extensions have you
installed? Is it possible that you have installed a DW4 only
extension?
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"PAB1953" <[email protected]> wrote in
message
news:[email protected]...
> Okay, here's the situation:
>
> Been working happily for several weeks with a DW MX site
on a PC under XP.
> Building a site, currently about 115 pages, all derived
from a single
> template.
>
> Now get error messages preventing me from working on the
pages. One
> message
> reads thus:
>
> <<Making this change would require changing code
that is locked by a
> template
> or a translator. The change will be discarded.>>
>
> The part of the page I was working on was an editable
region I've been
> working
> on with no problems for six weeks.
>
> Here's another error message:
>
> <<While executing DWMenu_Edit_Paste command in
menus.xml, the following
> JavaScript error(s) occurred: "TypeError:MM.event has no
properities.">>
>
> Any ideas?
>

Similar Messages

  • Transparent spry menu that has a background color on sub menus and a few other problems(Please Help)

    Hi im a noob at dream weaver and i've been trying to create a menu and i have been having problems with this menu bar i don't know what to upload and i have made a topic about this before but i only got one reply and so i am trying to make my menu bar transparent and then the sub menu's colored with the color code #1A1A1A and the menu bars that have been color background are only the sub sub menu bars if you know what i mean and also my other problem is the spacing i have between each option is really uneven is there a way to make them evenly sperated apart from each other rather than just the size of a "box" that the text is in. Here is my SpryMenuBarHorizontal.css code
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
              margin: 0 auto;
              padding: 0;
              list-style-type: none;
              font-size: small;
              cursor: default;
              width: 100em;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
              z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 18px;
              position: relative;
              text-align: left;
              cursor: pointer;
              width: 10.8em;
              float: left;
              visibility: visible;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 100%;
              z-index: 1020;
              cursor: default;
              width: 8.2em;
              position: absolute;
              left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
              left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
              width: 15em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
              position: absolute;
              margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
              left: auto;
              top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    ul.MenuBarHorizontal ul
              border: 0px solid #1A1A1A;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
              display: block;
              cursor: pointer;
              background-color: transparent;
              padding: 9px;
              color: #FFF;
              text-decoration: #1A1A1A;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
              font-weight: bold;
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-size: 18px;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
              background-color: #0048ff;
              color: #EEE;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
                          background-color: #1A1A1A
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
              background-color:#1A1A1A;
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
              background-color:#1A1A1A
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
              background-color: #1A1A1A
              background-repeat: no-repeat;
              background-position: 85% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
              position: absolute;
              z-index: 1010;
              filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
              ul.MenuBarHorizontal li.MenuBarItemIE
                        display: inline;
                        f\loat: left;
                        background-color: #1A1A1A;

    See if this post helps :
    http://forums.adobe.com/message/1997762#1997762
    and this one:
    http://forums.adobe.com/message/1898539#1898539
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.perrelink.com.au
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    http://twitter.com/nadiap

  • Report Manager - Template Conversion Problems Excel 2003/2007

    Hello,
    We are having an issue in which templates created using excel 2003 are showing incorrectly formatted outputs in excel 2007. We have performed testing by creating new templates in Excel 2007 and most formatting is correct as long as we only make minimal changes to the initial template. Once the template is changed to a further extent the formatting is correct but no actual output shows, just the token defaults. Patches have been applied for both the issue of incorrect formatting caused by Excel's smartcutandpaste and also the problem with the token defaults showing instead of actual Oracle data. We would prefer not to have to recreate the templates as this would be a lengthy process. To me it seems as something was modified that affected the existing templates (other than the Generic FSG Template, which works fine), but does not affect newly created templates. Other methods of viewing the data work fine (pdf and html).
    Any ideas?
    References:
    Patches Applied to try and fix problem: 8792030, 9020608, 86607013
    Metalink Ref: 960409.1, 1082349.1, 811853.1
    Thanks,
    -Steve
    Edited by: sanstey on Oct 15, 2010 12:08 PM

    The BNE.log for the report that would not show the data (due to column deletion):
    10/20/10 3:12 PM ERROR BneAsyncUploadPage.renderPage Error trying to check whether the job will be importing.
    10/20/10 3:12 PM ERROR BneAsyncUploadPage.renderPage Parameter value is not a Boolean.
    10/20/10 3:12 PM ERROR BneAsyncUploadPage.renderPage Error trying to check whether the job will be importing.
    10/20/10 3:12 PM ERROR BneAsyncUploadPage.renderPage Parameter value is not a Boolean.
    10/20/10 3:12 PM ERROR BneAsyncUploadPage.renderPage Error trying to check whether the job will be importing.
    10/20/10 3:12 PM ERROR BneAsyncUploadPage.renderPage Parameter value is not a Boolean.
    The same error appears on the report that works fine (one without deleting columns):
    10/20/10 3:22 PM ERROR BneAsyncUploadPage.renderPage Error trying to check whether the job will be importing.
    10/20/10 3:22 PM ERROR BneAsyncUploadPage.renderPage Parameter value is not a Boolean.
    10/20/10 3:22 PM ERROR BneAsyncUploadPage.renderPage Error trying to check whether the job will be importing.
    10/20/10 3:22 PM ERROR BneAsyncUploadPage.renderPage Parameter value is not a Boolean.
    10/20/10 3:22 PM ERROR BneAsyncUploadPage.renderPage Error trying to check whether the job will be importing.
    10/20/10 3:22 PM ERROR BneAsyncUploadPage.renderPage Parameter value is not a Boolean.
    The client is testing now and believes the report output is what she needs and will not need to delete the columns afterall, but for my curiosty, any ideas?
    Thanks,
    -Steve

  • HT3384 Template will not open; Pages does not respond when one chooses template other than blank

    The Pages template system crashes when I attempt to choose a template other than blank.  How do I fix this problem, so that I can successfully choose any template that I desire?

    Is it all templates or just a few? It could be a corrupt font or duplicate fonts or an out-dated font. Launch Font Book & validate fonts & check for duplicates.

  • Have to force quit dreamweaver amongst other problems

    I often have to force quit from the dock as going to dreamweaver/quit doesnt work, quite isnt highlighted.  I have some other problems with extensions not working correctly and was wondering if it all ties in.  Also when I make .dwt templates and then base new .html templates on it, the .dwt file updates the changes i make to the .html.
    Any ideas?  Is my dreamweaver installed incorrectly somehow?
    Thanks

    Which version of DW?
    Which OS?

  • Oracle 8.1.5 install on Linux Redhat 6.0: character set (and other) problem(s)

    I am trying to install Oracle 8i on Linux and it does not work : once the install is finished, I have a message saying that "Character Set not found".
    I am runing a french version of Linux (fr-latin 1) and I try to install Oracle with French and English as languages
    An other problem about this install : Oracle does not seem to recognize that I have 6,9 Giga for it to install, and says that I have not enough space for the install...
    And at the end of the install, it takes for ages (about 15mns) during which nothing seems to happen. On one machine I got out of this phase, but on the other I never saw it finish, it looks as if the computer crashed. Is that normal?
    I went through all the initialization phases, set the correct environment variables...
    thanks
    Solange
    null

    I've been dealing with the same problems in the english version but could bypass thiss by doing the folowing.
    -Just ignore the disk space stuff
    -Ignore the charset message, also
    -When creating a database, choose custom and then select the WE8ISO8859P1 char set. It worked for portuguese, must work for french also.
    -Everyone here recommended, and I do the same, leave the database creation for later, not during instalation.
    Good Luck!

  • New 6500 E709n loses wireless connection when it or laptop sleeps... & other problems!

    Just got this printer and am hoping we can get it to work because we really like it.  I believe we've done everything right - it is connected to PC via USB, and to laptop via wireless network.  Both computers are Dells running XP.  Our wireless router is a Linksys Wireless-G WRT54G.  We installed the disk on both.  Immediately after installing on the laptop by plugging in USB and then unplugging, we were able to get it to work.  We printed and scanned from both . . . UNTIL the printer went into power save mode.
    When it sleeps it loses all the network connections (but will still print from PC).  Even the icons disappear from the laptop after it sleeps.  The only way to get it to work with the laptop again is to start all over, plug in the laptop, enter the WPA key again, and so on.  Then it's finebut for just a short while.  Now, when I registered my protection plan, I was on the phone with a techie guy and asked him if it's normal to have to keep entering the key every time you want to print, and he actually said that maybe I shouldn't let the printer sleep - wow! I want to conserve energy, so I may even want to shut it off, okay, and I don't feel I should have to go through this rigamarole every time I want the darn thing to just be available to the network.  Furthermore, what's the sense of having to turn "Wireless Radio" on and off all the time???
    Anyway, there are other problems and the menus in the internal web browser is about as confusing as it can be.  Is the passphrase the same as a WPA key?  There's a passphrase in there which I did not enter, and I don't know what it is because it's been disguised with dots.  When I enter the WPA key on the front panel of the printer, it doesn't stick.  One thing I noticed in the instructions is to keep telephones away from it, so I moved ours (was right next to it) but it's still being ornery.
    In addition, the scan function only works from the software, not as a standalone if I use the front panel.  When using the button on the front panel, sometimes it sees the laptop, sometimes it doesn't, and then it starts to scan, but a menu pops up on the computer asking to update the buttons, and then nothing happens.
    Have we a clunker on our hands that should be returned, or is there a remedy?  All suggestions welcome!
    Message Edited by geoxena on 10-20-2009 10:56 PM
    Message Edited by geoxena on 10-20-2009 11:03 PM

    Let me answer the easy stuff first:
    Yes, the passphrase is the same as the WPA-PSK key.
    No, it's not normal to have to re-enter the wireless security key over and over again.  Politely tell our service agent that he is mistaken on this point.
    There's no sense in having to turn the radio on and off all the time to get the printer to remain on the network.
    When the printer goes into power-save mode, can you still access the printer's internal web page by browsing to it's IP address?  When the printer loses wireless connectivity, can you wake the printer by pressing any of the buttons on the front panel?
    I have a couple more questions:
    What WRT54G HW version do you have (it'll be on the bottom label of the router)?
    What version of FW does your router have?  You'll have to browse to the router's internal web page to find out.
    Finally, change the WPA-PSK group key renewal period to the largest value possible.  Tell if this affects the frequency of printer losing Wi-Fi connectivity?
    One more question.  After you have the printer connected to your wireless network and it's working, if you turn the printer off (via the power button), wait five seconds then unplug it then plug it back in and turn it on, does it connect to your network?
    Regards / Jim B / Wireless Enthusiasts
    ( While I'm an embedded wireless systems engineer at work, on this forum I do not represent my former employer, Hewlett-Packard, or my current employer, Microsoft )
    + Click the White Kudos star on the left as a way to say "thank you" for helpful posts.

  • Crashes, sound loss, and other problems

    Hello,
    I have been having some serious problems over the past several months. In the past it was fairly manageable, but recently things have been getting worse.
    I have a 12-inch PowerBook G4, I bought it at the McGill bookstore in October 2004. The first problem was the apparently random crashes that Mac OS X (v.10.4.8) would experience from time to time. It was fairly infrequent at first so it didn't bother me too much (and I thought it was just some sort of glitch). But it persisted and came to be expected.
    What would happen is that my screen would darken and center box would appear telling me, "You need to restart your computer. Hold down the Power button for several seconds or press the Restart button." (it would display this message in English, French, German, and Japanese for my convenience). After I restart the computer I get the message, "The computer was restarted after Mac OS X quit unexpectedly". At first it seemed to be linked to time; after a while it would just crash, sometimes after an hour or so, sometimes after as little as five minutes. (I fear as I write this that I will have to start over). More recently I've come to associate the crashes with movement of the computer; perhaps the battery (which is pretty much dead after so much use) is affecting the performance, I don't know.
    The next problem, which coincided with the crashes, was my clock being reset. I assumed this was directly associated with the spontaneous shutdown of the computer, yet though the crashes continued, the clock was not always reset (just about a third of the time). This was a pretty frustrating inconvenience given the frequency of the crashes at the beginning.
    The major problem that prompted me to take action was the lose of sound. One day, about a month ago now, my sound suddenly stopped working. At first I thought it was a hardware problem, but then I noticed the sound was still working with some things and just not others. For example, the sound increase/decrease indicator (the 'pop' sound when turning up or down the sound) stopped working, yet the startup sound still worked. I've found that Realplayer, MPlayer X 2, and Windows Media Player work fine but iTunes, VLC, and Quicktime don't. Most of the applications simply don't make sound but when I try to video in VLC I get the following error: "auhal: we cannot find our HAL component" or "auhal: audio-device var does not exist. device probe failed."
    Other minor errors I have come across include inability to detect the Airport card (remedied upon restarting the computer) and occasional seizing up of the keyboard (the letter keys, exclusively, were unresponsive for sometime before working again suddenly without need of restart).
    I've run diagnostic tools such as Disk Utility and the 'fsck' command in single-user mode, but nothing has been detected. It consistently comes up saying that everything is alright.
    I have backed-up all important files and programs (with the exception of my Firefox bookmarks, do you know how I can save those?) and am prepared to do whatever it takes to bring my computer back to working order. I need my computer for schoolwork and assignments so if I can fix it myself in anyway... I would prefer to avoid lengthly repairs if possible.
    Please let me know what my options are, and/or possible things I can do to repair these problems. This whole affair is, unsurprisingly, driving me crazy.
    One last thing, upon launching Microsoft Word, I get the following pop-up:
    Application Launch Failure
    The application "Word" could not be launched because of a shared library error: "3<Microsoft Word><Microsoft Word><MicrosoftLSLibZ>"
    I do not know whether this is linked to my other problems or not. This too, is something that has recently come up and is significantly affecting my work (I have had to switch to writing my essays on TextEdit).
    Any help is greatly appreciated.
    Thank you,
    Eric Oosenbrug
    PowerBook G4   Mac OS X (10.4.8)  

    try shutting down, remove the battery, carefully pull out AirPort card and reinstall it.
    maybe run hardware test included with CD kit

  • My TV is mounted on a wall so I can't connect the Apple TV device. Is it possible to connect to an HD Cable Box and send signal to TV that way? Other problem is that Box only has one HDMI socket .. Help!

    My TV is mounted on a wall so I can't connect the Apple TV device. Is it possible to connect to an HD Cable Box and send signal to TV that way? Other problem is that Box only has one HDMI socket so would also have to use a splitter. Tried Apple Support but couldn't offer a solution. I can't be the only person with this issue surely?
    Help!

    No, unless you are using a home theatre system already, your only option is to connect to the TV.

  • Apple Senior tech lady deleted all my external drive data while sorting out other problem. How can I restore all my photos , music etc back to my Mac Pro?(I am so scared, I haven't connected to sync! Please help)

    Apple Senior tech lady deleted all my external drive data while sorting out other problem. How can I restore all my photos , music etc back to my Mac Pro?(I am so scared, I haven't connected iPhone to sync! Please help)

    It was tele tech. I couldn't open my Page Numbers etc. Frist tech chat idiot - following dumping few things in bin, asked me yo upgrade to Yosemite. But the problem still persists. This morning I was asked to do it via telephone and like yesterday, after wasting 20 min, I was put to this apparent Tech Queen ( my foot!). She eventually decided to reinstall  Yosemite asked me to connect my external drive while I connected to her. She was moving cursor asking me to move files and delete and I followed her like a dummy. It took 3/4 hours and she called me 3 times once the lengthy process was completed. I suspected from the beginng for the fact that why should be asking me to click all my backup from the very beginning! Eventually she said I deleted... Or someone else or may be my children ! It was a blatant lie. I run my small business from home and I was simply staying in front of the Mac whole day! Children were at school. Then she said I must have used another computer! I only have laptop and the iPad. I will talk to their manager first thing in the morning. In the mean time please let me know as to how can I transfer photos, music etc back to my laptop from my Iphone and IPad .? I am will connect to laptop as I am worried the new BLANK iPhoto may supersede iphone/iPad stuff? Will it? Please let me know. I am not a very tech savvy person. My son who could help me, is in Manchester Uni and Inam in London.

  • After upgrading to Lion 10.7.1 - iPhoto and other programs slow to open and other problems

    Am I alone - having lots of problems with 10.7.1.  iPhoto is slow and when I export photos it exists iphoto then I restart and sometimes it will works.  Safari is slower also. Sometimes it justs hangs and I have to force quit.  iTunes is also slower to open. Almost everytime it goes to a checking library for a long time. 
    Should I go back to previous version? Will I lose my purchase. I do not have disks for the upgrade.  I do not want to go back - I have a lot of data and always fear of losing it. 
    Think Apple knows about the problems or am I the only one and have some other problem?

    olegz,
    First, thanks for the clear graphics.
    Authorization seems to be the hangup here. But instead of dealing with the complications of conflicts in authorization, which might take several weeks to months to iron out - site by site - I urge you to follow a different path.
    It looks like you're using Chrome. For this site alone, use either Safari or Firefox, both of which are more likely to have plugins to deal with authorizing your site. Safari is already on your computer, but v.3 of Firefox is stable, too. Frankly, I can't tell you what specifically might be the problem here; but switching browsers will solve the immediate problem.
    Sound good? Not so good? Post in this thread so that I or others can solve your problem once and for all!

  • Adobe Acrobat X incompatible with Office 2010 x64! Along with other Problems I found!

    I AM VERY ANGRY AS WELL AS LOSING IT BIG TIME!!! MADDNESS!!!!
    Can someone FROM ADOBE FIX THESE PROBLEMS? CAN AN UPDATE OR FIX SOLVE OUR SITUATION WITH ACROBAT X?
    First off, I cannot see the plugin appear in the Office ribbon, in ANY office program. I tried everything Adobe told me to do. From trying to locate the adding through the list of disabled add-ins (which is not displayed), or the command prompts option which did not work either.
    Second of all, I have this message of "Missing PDFMaker files", then after reinstalling Adobe 10 times, as well as reinstalling office 2010 x64 Bit 26 times, reformatting Windows "7" Ultimate x64 Bit 5 times, I still had no results.
    Third, yet not least, the other problem is that the option to create blank PDFs no longer exists. In addition, I am unable to edit existing PDFs, even if they do not have security on them. I want a word processing feature added to Acrobat!
    Can someone fix ANY of these problems, or may Adobe create an update to FIX ALL of these problems, OR AM I GOING TO DROP ACROBAT IN FAVOUR OF ANOTHER COMPANY?
    I NEED HELP SOON!!!! NO TIME TO DO THIS ON MY OWN!!!! HELP!!!!!!!!!!!!!!!!!!!!!
    Message was edited by: Uchiha971

    Series of events:
    Purchased Windows 7 PC. 64 Bit OS
    Installed MS Office 2003
    Installed Acrobat 8.0.
    While I did not have the complete functionality of converting Office documents to pdf's,
    I could print documents and emails to pdfs.
    I then upgraded my Acrobat to X. Still could print to pdf, but not do conversions.
    I then upgraded to Office 2010, 64 bit. After upgrading to Office 2010, I cannot print,or convert documents to pdf using Acrobat X.
    I cannot convert, or print e-mails to Pdf's in Outlook 2011. I cannot print or convert Word documents or Excel spreadsheets to to pdf's.
    The only thing i can do is "Save As" a Word document into a pdf. I cannot use Acrobat X in Excel or Outlook at all.
      Is there a solution to this problem?

  • Templates other than what comes with iWeb

    I want to use a template other than what is provided via iweb, is this possible?

    Yea you can. Open up your iDisk (if you don't keep it synchronized on your desktop, go to the Go menu in Finder, then iDisk, then Mount My iDisk). In your iDisk, you can put your site in the Sites folder, but not the Web folder; the Web folder is reserved only for iWeb and other Apple apps.
    Any sites you put in your iDisk/Sites folder will live at homepage.mac.com/username/site. You won't be able to use .Mac's domain redirection.

  • The password for the account "account name" was not changed. Your system administrator may not allow you to change your password or there was some other problem with your password. Contact your system administrator for help.

    I have a user who's Active Directory password is going to expire. I had her reset her password by going to apple > system prefs > user > and clicking change password. She received the error "The password for the account "account name" was not changed. Your system administrator may not allow you to change your password or there was some other problem with your password. Contact your system administrator for help."
    I had her change her password via the kpasswd command in terminal and that changed her password on the server sucessfully however the laptop has FileVault on it. Filevault is not recognizing the new password just the old password.
    I have deleted the keychain which didn't resolve and now I am going to decrypt and reencrypt the drive. I'm hoping this is an isolated issue I have over 25 laptops configured like this.

    I "think" the trick was unbinding and rebinding the computer account.
    After unencrypting and trying to reencrypt Filevault would still not take the new password.
    Rebooted the prompt to update the keychain appeared. Updated the keychain. Filevault would still not take the new password.
    Unbinded and rebinded the computer account. It worked and let me add the user to filevault.

  • Tracks out of order and other problems

    For one of my albums, the tracks are all out of order. I have edited the information, and the track numbers are proper, but it will not order them correctly. I have even removed the files from Itunes and then added them again--still they do not go in order. Then when I move the files onto my Ipod they are out of order, and it's very annoying. If Itunes won't recognize the track numbers, how do I reorganize them?
    My other problem is manly with the Ipod. I'm not entirely sure what I did to cause this but on my Ipod, an artist is doubled. And yet when I view the songs list on Itunes (the list of my Ipod) there is only one artist. How am I supposed to fix this?
    I've tried everything I would know of, and neither problems can fix. Thanks to everyone who replies.
    Message was edited by: Zuzanna

    ditto on tracks out of order. anyone? please?

Maybe you are looking for

  • Upgrading with multiple lines

    My phone (primary line) is available for an upgrade in October, but my wife's (secondary line) isn't until April. We're both grandfathered with the unlimited data plans.  If I upgrade mine in October, the family plan will convert to the tiered data p

  • Acrobat X: Combining Files to PDF hangs and refuses to load

    So I am hoping someone can help me.  I bought this product and installed it yesterday (10/16/12).  I am running Windows 7 OS, and had no problem with the install. 10.1.4 is the version of Acrobat (more specifically) that I am working with.  Today, wh

  • Sync other Outlook Calendars to iPhone

    I'm running Outlook 2003 connecting to Exchange but keeping everything in a pst. I'm currently syncing my default calendar to my - all good. I want to be able to sync a shared Calendar only and not my calendar (or even both) I can't get Itunes to see

  • Apple TV 2nd + LCD monitor (DVI-D socket)

    hi, is it possible to connect Apple TV 2 to LCD screen and have  clear and nice picture on it? I have got all needed cables, Apple TV and monitor are connected and... please have a look what is going on: In fact I can see just only a few letters of e

  • Server Software - No more Deny Permission Feature!!??

    So unfortunately the new Server software for Mountain Lion no longer offers the "Deny" permission option. I'm currently using my Mac tower to host specific folders and sharing them via FTP. You used to be able to "Deny" others from seeing folders you