New Stationery won't allow edits

We've created new stationery (actually modified existing stationery to create a new one) and placed it in the correct folder structure in /library/ to get it to show up in Mail app in the Stationery list. However, when we create a new message and click on this Stationery, we find that we cannot edit the text in the message. I imagine that, everytime we wanted to use the stationery, we could probably 1) change the text in the content.html file, 2) place that file back into the .mailstationery directory, and 3) restart Mail, but that seems a little barbaric.
Is there something we can change to make our stationery editable from within Mail? I can send the .mailstationery files if that would be helpful.
Thanks!

Just posted this quickie hack for same problem:
http://discussions.apple.com/messageview.jspa?messageID=8514000&stqc=true

Similar Messages

  • I want to use my iPhone 3GS just as an ipod, not a phone. No sym card. New iOS5 won't allow. What do I do? Can I do a hard reset?

    I want to use my iPhone 3GS just as an ipod, not a phone. No sym card. New iOS5 won't allow. What do I do? Can I do a hard reset?

    Hey, as far as I know you need a sim card to activate after a restore
    It however does not have to be a fully working sim card, just not blocked or with a pass code, I repair/refurb. some iPhones and can only advise to try and get a free sim card from a provider supported on your phone and activate it with this,  or maybe someone can lend you theirs for 5 mins?
    To clarify, I have heard there are ways around this, but they sound dubious.

  • Site with editable regions won't allow editing

    Hi, I have set up multple sites for InContext Editing. All works fine except this last one that won't allow editing online. When clicking "Edit Page" I get a message saying "There are no editable regions." I have checked and double checked the pages and the regions are there. I've reflowed the content into all pages (template) but I still get the same message in InContext.
    Please help me figure out what's wrong and how I can get the pages editable.
    Here's a link to the website http://www.nolimithockey.com
    Let me know if you need anything else in order to help me figure this out.
    Thanks a bunch!
    Hanna in Tahoe

    i'm done, thank you
    2009/10/19 Dan POPA <[email protected]>
    >
    InContext Editing can edit only the elements having the ice:editable
    attribute set.
    Your page should contain something like this:
    >
    <!-- the following DIV is an ICE editable region -->
    <div ice:editable="*">
       some editable content here
    </div>
    >
    But there are no such elements in the
    http://www.nolimithockey.com/index.html page.
    >
    You say you can see the ICE regions in that page so I can only assume that
    you didn't upload the file on the FTP server and you are looking at your
    local version of the file, not the one from the server.
    >
    Another possibility is that you mistakenly treat Dreamweaver Template
    Editable Regions as InContext Editable Editable Regions.
    I  can see that there are DW editable regions in your page: the elements
    located between the <!-- InstanceBeginEditable name="Headline" > and <!
    InstanceEndEditable --> comments.
    >
    >
    You can create ICE editable regions by selecting in Dreamweaver an element
    and applying the Create Editable Region command under the DW menbu Insert ->
    InContext Editing menu, see the image:
    >
    http://forums.adobe.com/servlet/JiveServlet/download/2242-505554-2323206-23866/create_ice_ er.png
    >
    Please let me know if any of these were of any help to you,
    Regards,
    Dan Popa
    >

  • HT201304 New iPad won't allow me download apps

    New iPad won't allow me to download apps or go to iTunes store. How can I correct this?

    usually when you get that message "you account have never been used in itunes store" you just need to review your information and update what they want to have on your file and once you do that you can use account.

  • JTable Won't Allow Editing Despite isCellUpdatable is Set to Return True

    Mass apologies if I somehow sent this to the wrong forum by mistake. However, aid from the local Java gurus would be much appreciated since I'm the only Java programmer at this company, so I don't have anyone to really ask for advice or anything.
    I've been trying to enter an updatable ResultSet into a JTable for about a week now, but the issue I ended up running into was that if you click on a cell with the intention to edit the contents, it won't even highlight the cell, much less let you edit it.
    I've searched Google and this forum along with tried to hunt down more complex books on Java rather than your standard "So you want to learn Java" cookbooks, but I've come up with null. I've also created about five different variations of TableModels for the purposes of handling this, including one that used an array of Objects instead of the ResultSet, but the problem persists.
    Here is the latest version of the TableModel that I've come up with
    package EventCalGUI;
    import javax.swing.table.AbstractTableModel;
    import EventCalSQL.TableData;
    @SuppressWarnings("serial")
    public class UpdateRSModel extends AbstractTableModel
         /** <code>TableData</code> from database */
         private TableData data;
         public UpdateRSModel(TableData tdata)
              data = tdata;
         @Override
         public int getColumnCount()
              return data.getColCount();
         @Override
         public int getRowCount()
              return data.getRowCount();
         @Override
         public Object getValueAt(int row, int col)
              return data.getValue(row, col);
         @Override
         public boolean isCellEditable(int row, int col)
              return true;
         @SuppressWarnings("unchecked")
         @Override
         public Class getColumnClass(int col)
              return data.getColClass(col);
         @Override
         public String getColumnName(int col)
              return data.getHeader(col);
         @Override
         public void setValueAt(Object value, int row, int col)
              data.setValue(value, row, col);
    }The reason for suppressing the warnings is because Eclipse attempts to be too helpful with its cautions and I was sick of seeing a long list of unnecessary yellow caution signs.
    This is the TableData class that the above TableModel derives from. I hadn't added in the actual ResultSet updating capabilities until I was sure I could get the JTable to work.
    package EventCalSQL;
    import java.sql.*;
    public class TableData
         Object[][] data = null;
         String[] headers = null;
         int rows = 0;
         int cols = 0;
         @SuppressWarnings("unchecked")
         Class[] colclass = null;
         public TableData (ResultSet rs)
              try
                   ResultSetMetaData metadata = rs.getMetaData();
                   // -------------- SET COLUMN DATA ---------------
                   cols = metadata.getColumnCount();
                   headers = new String[cols];
                   colclass = new Class[cols];
                   String classname = "";
                   for (int b = 0; b < cols; b++)
                        headers[b] = metadata.getColumnName(b + 1);
                        classname = metadata.getColumnClassName(b + 1);
                        colclass[b] = Class.forName(classname);
                   // ------------ SET ROW DATA --------------
                   if (rs.last())
                        rows = rs.getRow();
                        rs.beforeFirst();
                   if (rows != 0)
                        data = new Object[rows][cols];
                        for (int i = 0; i < rows; i++)
                             rs.absolute(i + 1);
                             for (int a = 0; a < cols; a++)
                                  data[i][a] = rs.getObject(a + 1);
              catch (SQLException sql)
                   // I'M UNINTERESTING!
              catch (ClassNotFoundException cnf)
                   // BE BORED!
              catch (NullPointerException np)
                   // I'M BORING!
         public Object getValue(int row, int col)
              return data[row][col];
         public String getHeader(int col)
              return headers[col];
         public void setValue(Object value, int row, int col)
              data[row][col] = value;
         public int getRowCount()
              return rows;
         public int getColCount()
              return cols;
         @SuppressWarnings("unchecked")
         public Class getColClass(int col)
              return colclass[col];
    }I've checked the exceptions, and they work. I just added into the comments since nothing's really supposed to happen there if it's an empty set. I just have a weird sense of humor after twenty-plus hours of coding variations of the same thing over and over.
    Thank you very much for any and all help ahead of time!

    Hidralisk: Thank you for the suggestion, but that's not the problem I'm running into. I really appreciate you trying to help though.
    camickr: I'll double-check my code to see where I might've unintentionally strayed from your suggestion. I deeply appreciate the help.
    Edited by: wsizemore on Dec 6, 2007 6:51 AM
    Haven't had the time to double-check my code since I've been re-assigned to other projects (the joys of being the solo Java programmer here), but I awarded you the points, camickr, since your suggestion seems to be the one that could've put me on the right track. Thanks so much for your help.

  • I have a 3G iphone4, iOS 5.1.1. I changed my apple ID and since then iCloud has constantly helpfully let me know that my user name or password is incorrect. I have edited my password in my iCloud account settings, but it won't allow editing my user name

    Recently changed my apple ID. On my 3G iPhone 4 iCloud has since then been letting me know that my user name or password is incorrect.  I can edit the password in iCloud account information but user name is grayed out and can't be changed to my new apple ID. Haven't been be able to fix this by going into my Apple ID account or synching the iPhone.

    In order to change your Apple ID or password for your iCloud account on your iOS device, you need to delete the account from your iOS device first, then add it back using your updated details. (Settings > iCloud, scroll down and hit "Delete Account")
    Providing you are simply updating your existing details and not changing to another account, when you delete your account, all the data that is synced with iCloud will also be deleted from the device (but not from iCloud), but will be synced back to your device when you login again.

  • Address book won't allow edit

    I can't edit any address in my address book. I can't back up or add new contacts. I have alot of my contacts in Smart groups.

    Hi, any progress on this yet?
    BTW Smart Groups are just Alias list of the Main AB DB.

  • The new firefox won't allow me to auto sign in even to sites I'm approved

    I HATE the new Firefox. It keeps making me "allow" moving to different sites, even when it's within a site. Also, even though I have allowed certain sites (e.g., APA.org) it will not allow me to automatically reload or sign in. This is totally frustrating b/c it means I cannot even manually enter my password and sign in. I NEED this site for my business and Firefox is preventing me from totally normal use.

    Try:
    iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    Next, try doing a manual install/update using the instructions here:
    iDevice Troubleshooting 101 :: iPhone, iPad, iPod touch

  • New phone won't allow backup - not enough memory yet it backed up fine on 4s

    I've upgraded my handset from 4s to 5c. I've followed the instructions from setup and allowed the new handset to download contacts etc from iCloud. Everything is there &amp; I've now factory reset the 4s in order to pass onto my son. However, I can't backup the 5c as it states that I require 2.1 but only have 1.4mb available. How can this be (as I didn't experienced any issues with 4s) and what can I do to resolve? 
    When I access manage storage it shows "iPhone 3.5gb" and "this iPhone 0kb". Is this causing me the problem??
    Thanks in advance

    Always sync photos to a computer for archiving - never rely solely on icloud backups, too many users have lost their photos by doing that.
    Syncing Photos:
    From device to computer...
    http://support.apple.com/kb/HT4083

  • My new leveno won't allow me to open pdf files with adobe

    my new leveno with windos 8 will not let me open pdf files in outlook

    Does that also happen if you try to open a PDF stored on your disk?  If so, change the .pdf file association to open with Adobe Reader.
    P.S. this is a public forum; please do not post your email address and other private data!

  • Can software be downgraded?  New version won't allow iPod to be played through my speakers.

    I'm not sure what version iOS my 4th Gen iPod Touch came with, but since upgrading to 4.3.1 it won't play through my Logitech Pure-Fi speakers.  Upgrading to 4.3.3 doesn't offer any features I need, so I'd liek to hear from someone who could step me through reverting back to an earlier version of software.
    Is this even possible?
    Thanks ;-)

    There is no legitimate way to downgrade an iOS.  Sorry.

  • New mac won't allow me to add files to my old external hard drives.

    Hi there,
    I've been trying my hardest to figure out how to do this without having to delete all of my files and reformatting my external HD, but I haven't been able to find a solution. Maybe I'm not using the right keywords when I search for solutions?
    Anyway...
    I recently purchased a new MacBook Pro, and have since been unable to transfer any files (photos/video/documents) from this new Mac, to any external HD's (that worked fine on my previous Mac as well as other Macs).
    However, I am able to drag files from the external HD to my mac, and transferring files to a small USB works without an issue.
    How do I fix this, without deleting/wiping the external HD so I can transfer files onto it?
    Thanks so much for any help!

    You are still under warranty.  Call Apple Care. Make sure you get a case number as all repairs have an additional 90 days of warranty. 
    #1 - You have 14 days from the date of purchase to return your computer with no questions asked.
    #2 - You have 90 days of FREE phone tech support.
    #3 - You have the standard one year Apple warranty.
    #4 - If you've purchased an AppleCare Protection Plan, your warranty last for 3 years.  You can obtain AppleCare anytime up to the first year of the purchase of your computer.
    Take FULL advantage of your warranty.  Posting on a message board should be done as a last resort and if you are out of warranty or Apple Care has expired.

  • Ipad won't allow editting of a website

    I am the webmaster of two websites.  However, since one of the recent updates, I have not been able to edit the websites from the ipad. 
    Can anyone help me out?

    Then you mean you are using an online form, not actually editing the website?  You might try the corresponding app from the app store: https://itunes.apple.com/us/app/sport-ngin/id499597400?mt=8

  • The new iphoto won't allow 2 up or 4 up printing

    The previous version of iphoto was able to do this.  This provided the best utilization of 8.5x11 photo paper.  By reversing the paper after printing one photo I can get a 2nd photo.  Better than just one 4x6 per sheet but not as good as 4 photos.
    Is this a feature or a bug?

    Do the following:
    1 - put the photo in an album and duplicate it as many times as the number of prints you want on a given page. This is assuming the page is US Letter (borderless).
    2 - select all the prints and type Command+P (Print).
    3 - in the next window select Paper Size to be US Letter (borderless).
    4 - also, at the bottom of the window, select the aspect ratio and a custom size that will allow you to get all of the photos on one page.
    This screenshot is for a photo that has a size ratio of 4:3, was duplicated 3 times and then printed with a custom size of 4x3 selected to get four prints on the page. You can experiment the custom size until you get the largest possible size for the 4 photos on the page.
    When you're done you can delete the duplicates.
    OT

  • Cannot upgrade an app..purchased under old id and password help is blocked..want to purchase again under new id will not allow until old is cancelled can't cancel

    cannot upgrade an app...
    purchased under old apple id and password not known and is now blocked
    want to purchase the app again under new id won't allow until old app is removed

    SIgn out of old ID and sign in with new ID
    Settings>iTune and App Stores>Apple ID

Maybe you are looking for

  • When I open iTunes my iPhone 4S will not show up as a device.

    When I open iTunes my iPhone 4S will not show up as a device. I have tried the advice provided by Apple. I have gone through the iPhone Troubleshooting Assistant. That gave no solutions. I have tried the other solutions offered by Apple. I think that

  • Availability check in Scheduling agreement

    Hi thr, Could someone please explain me about the availability check in the scheduling agreement. In the availability screen of the agreement, when i enter the scheduling lines, when i give partial qts it gives me error saying "on date(which i enter)

  • BAPI_VENDOR_FIND - flds other than SELOPT_TAB

    Hi! If I enter a selection criteria to SELOPT_TAB table parameter of BAPI_VENDOR_FIND, I'll receive RESULT_TAB with only the fields entered in SELOPT_TAB. How can I get values of fields other other than the ones in selection criteria? Thanks! Regards

  • How to have dynamic thumb folder selection?

    I am creating a HTML gallery. I want to have a specific folder structure for each album. Now strugling with setting the directory for the thumbnail and photo folder in galleryinfo.lrweb: The user can enter the albumfoldername, which by default is set

  • Adobe Reader Backwards Compatibility

    I am currently working in Adobe Reader X, however the project I am working must be compatible with Adobe Reader 6. What kinds of compatibilty issues (if any) should I expect?