Best way to order dust jacket by itself (without book)?

I just received my first hardcopy book that I ordered through Aperture.  Just my luck, I discovered a typo in my text on the dust jacket, which I missed the 3 times I proofread it on-screen.
I didn't see a way of ordering the dust jacket by itself.  I suppose I could print to PDF and get it printed locally somewhere, but there doesn't seem to be a way of specifying pages to print (e.g. the first two pages and last two pages).
Otherwise I'll use white-out?

>
Daniel Ruiz wrote:
> I know what is recommened and whats not. I would like to know WHY such recommendation thou. Not accessing View elements? - Weird, since WDP does not have any sort of OGNL or EL where we could create directly in the UI (View Composer) all the required information for a LinkToAction - we use the wdDoModify in order to access and fill the missing information in the View itself.
>
> So, why create all the Context, bind to the UI (when you Bind you are somehow reading your Context and modifying the UI manually) which will do exactly the same thing?
>
>
> Regards,
> Daniel
I don't understand your issue. Where do you need code in wdDoModifyView() to configure a LinkToAction? Just create an action with a text/icon, assign it to the "onAction" event and the LinkToAction is complete.
The usage of context elements for data binding has for example the advantage that you can use the same context element for controlling properties of different UI elements. Using context mapping you can also control UI elements in different views.
In the given use-case you could for example compose your screen from different views and control the enabled/visibility state with one commen supply function which would be implemented in the component controller or some custom controller. If you would use wdDoModifyView() and direct access to UI elements you had to write code inside each view controller.
Armin

Similar Messages

  • Best way to clean dust out of workstations

    What's the best way to clean dust out of Power Macs and Mac Pros? Are there any specialised tools out there that can help? Historically I've wiped and vacuumed ours at work (without touching anything), but there must be a better way.

    Thanks, I was hoping you wouldn't disapprove
    Placed an order for this one today. Don't get the big paychecks some people do
    http://www.amazon.com/Data-Vac-MDV-1BA-Computer-Vacuum-MetroVac/dp/B000UVN646/re f=pdcp_e_1?pf_rd_p=413863501&pf_rd_s=center-41&pf_rd_t=201&pf_rd_i=B00006HR5F&pf_rd_ m=ATVPDKIKX0DER&pf_rdr=1MZ1G6R5SRDKVFS9C1Z4

  • What is the best way to archive old e mail folders without buying software. I tried to drag them into a folder on the hard drive but they get saved in a strange format

    What is the best way to archive old e mail folders without buying software. I tried to drag them into a folder on the hard drive but they get saved in a strange format.

    This is on sale for US $12:
    http://www.mupromo.com/?ref=4506

  • What is the best way to clean dust from unibody MacBook?

    I have the aluminum late 2008 MacBook (basically like the pro, except not). I've realized that I keep finding myself in dusty situations, and while I don't think it's affected my MacBook too much, I think a basic clean is in order.
    Anyone know the best method? I've done a bit of browsing and it seems that my options include using a compressed air can, vacuum, moist dust cloth, and even opening it up and shaking. They've all been heavily disputed. I suppose I'll recieve a debate of that sort here, but perhaps we can reach a majority of votes toward one or the other?
    Or perhaps, does anyone know if Apple provides some kind of MacBook cleaning service or if computer repair companies would do this? I don't know if that's too drastic...

    Migration Assistant is the best way to get everything.

  • Best way to remove dust from a MacPro

    what is the best way to clean the inside of a Macpro. When I go inside to remove or update components there is considerable dust. In the past I have grounded my self and gently wipe some of the areas with a light cloth to remove dust. There are areas on the mother board I would like to clean off also would canned air be ok.
    Thank you
    Dick

    Computer and electronics safe to use:
    Metro Vacuum ED500 DataVac 500-Watt 0.75-HP Electric Duster 120-Volt
    www.amazon.com/Metro-Vacuum-ED500-500-Watt-Electric/dp/B001J4ZOAW/
    My guess though is any thing that was loose or can be loosened (cable connection somewhere?) can be, would be the only thing to watch out for. Less on Mac Pro than on my PCs with fans and clips for power or an SATA cable that could slide off.
    I don't know what mac model you have but DIMMs do have a tendency like any electronic part to attract and hold onto dust.
    The old G5s were notorious for how much dust could build up down inside those systems and get empacked. And somehow still work but not as well.
    If you see temperature sensors that don't look normal, or the fans seem to be working when you aren't doing anything, that would then be a reason to take action. Otherwise, not sure if more harm than needed good.

  • What's the best way to clean dust out of headphone jack?

    Best way to clean iPhone headphone jack?

    As randers4 said, use canned compressed gas and NEVER BY MOUTH.  That blows humidity and moisture right on the water sensor at the base of the jack, possibly voiding the warranty and corroding the jack and other parts.

  • What is the Best way To Copy and paste data from 1 book to another

     I have 18 sheets in 5 different books that I want to extract data from specific cells.  What is the best way to do this?  Example:  1 sheet is called Numbers E-O1 data in 13:WXYZ. The data updates and moves up 1 row every time I enter
    a new number. So let's say I enter the number 12. Through a lot of calculations the output goes in 13:WXYZ. To what I call a counter which is a 4 digit number.  Anyways, how can I send that 4 digit number to a totally different sheet?  To bullet
    what I'm talking about
    data in cells Row 13:WXYZ in book called Numbers sheet E-O1
    send data to book called "Vortex Numbers" Sheet E-O row 2001:CDEF
    What formula or Macro can I use to make this work?
    thank you!

    Hello Larbec,
    Syntax:
    '[BookName]SheetName'!Range
    Enter in cell  2001:CDEF:
    ='[Numbers]E-O1'!13:WXYZ
    This assumes that the file is open in Excel. Otherwise you need to add the path:
    'ThePath[BookName]SheetName'!Range
    Best regards George

  • Best way to call methods on similar objects without an interface

    Hi,
    I have two objects that i need to iterate, they both have the same method i need to call during iteration, but those two objects are from different libraries and i cannot change them to add them as implement interface...
       for (Iterator it = documents.iterator(); it.hasNext();) {
               Document1 document = (Document1) it.next();
               document.getName();
    But I can also get a documents's collection where the object is Document2 and not Document1 that also has getName(), what's the best way to implement this? I mean i know i can just add if conditions to say if (instanceof) do this or that.. but I don't think this is good as everytime there's a new type of doc i'd have to add one more...
    Any suggestions?
    Thanks,

    I have two objects that i need to iterate, they both have the same method i need to call during iteration, but those two objects are from different libraries and i cannot change them to add them as implement interface...
    You already know what you need to do. You just don't want to do it.
    You can't treat two (or more) instances the same if they aren't the same. Here are three methods:
    1. Add code (like you propose) to determine which type you have
    2. Create your own classes that extend those classes and have your own class implement your own interface that has the 'getName' method. When you create instances of your own class the constructor can have code that determines which type you have and then use the appropriate 'getName' method. Your app code would use your own classes instead of the ones from the libraries
    3. Use reflection to call the 'getName' method.

  • What is the best way to place image (with caption) in a Book?

    I am preparing a template for an Encyclopedia project, The Encyclopedia will be in more than 10000 pages, so what is the best way to place images (Photos, Graphs, illustration ...etc) with a caption?
    The problem that when I modify text; the image don’t move with it, and when I place it within the text, it's difficult to control text flow.
    Please Help

    Thank you Peter,
    it's a bit dificult to control anchored object -speacially in two colum text box- when placing image in one and half colum size, it wont move to first column.

  • What is the best way to watch cricket on line in Mac Book pro

    what is the best way to watch cricket online in Mac Book Pro

    This is not a place where we discuss about sports, google is a nice place to find a good website.

  • Best way for add thousans items to listbox without freezing ui in wpf

    Hello guys.
    What is the best way for add thousands items (or even more) to Listbox without freezing UI.
    I search many post in the web but I don't understand how this posts writer wrote that code.
    I realized that ObservableCollection can contain 1000 items or even more and show that items to listbox just for few second without freezing UI but I don't Know how can I use that!
    Can you guys give me an example.
    thanks.

    If you bind an observablecollection you can add items to that from a background thread.  Then bind that to the itemssource.  I usually new up an observablecollection, add the items then set the bound property to  that.
    But I avoid thousands of items. 
    You should provide some sort of filter mechanism the user chooses a category or whatever and then fill with a maximum of 300 items.
    Users simply can't work with thousands of items.
    It is usually reading the data out  a database which takes the time rather than creating objects to bind.
    Hence this:
    protected async override void GetData()
    ThrobberVisible = Visibility.Visible;
    ObservableCollection<CustomerVM> _customers = new ObservableCollection<CustomerVM>();
    var customers = await (from c in db.Customers
    orderby c.CustomerName
    select c).ToListAsync();
    foreach (Customer cust in customers)
    _customers.Add(new CustomerVM { IsNew = false, TheEntity = cust });
    Customers = _customers;
    RaisePropertyChanged("Customers");
    ThrobberVisible = Visibility.Collapsed;
    That's making an asynchronous entity framework call.
    A list of customers is obtained.
    These are then wrapped in a customer viewmodel each.
    Finally the observablecollection Customers is set to this new collection and propertychanged raised to notify the view.
    The itemssource of a datagrid is bound to Customers.
    Hope that helps.
    Recent Technet articles: Property List Editing;
    Dynamic XAML

  • Best way to remove dust

    I must have some house cleanliness issues because my computer gets a lot of dust build up on the fans etc, what's the best and easiest way to get rid of this stuff in your experience?  One that perhaps doesn't involve taking my computer apart and cleaning each component individually.
    cheers

    Here is my suggestion for cleaning most efficiently the dust from inside a computer case...
    ... it is a bit tricky but with a lot of practice it is possible 
    ..."move in" with your entire desktop and computer peripherals and also other room belongings and a cup of coffee inside your computer case...
    ...operate from there your machine and inspect regularly surfaces for dust and other particles use broom and brush to clean up the mess!! 
    An always clean case is ensured that way...and is economical too... this is what i did!! 
    Best Regards,
    Markoul
    p.s. it is more convenient to use cordless peripherals (mouse, keyboard, printer etc.) in case you decide to adopt my solution and move in and live inside your  computer case...
    ...just my 2cents 

  • Best way to order dependent objects

    I have a Group object which has a List of Monitor objects. A monitor object
    has a name. I'd like the monitor objects to be ordered by name. What is
    the simplest way to do this? I can't use the setOrdering method because I'm
    not using a query when I call the Group's getMonitors() method. I looked at
    the ordered extension but I don't understand it. I tried it like this:
    <class name="MonitorGroup"
    identity-type="datastore"
    > <!-- end class tag -->
    <field name="monitors"
    > <!-- end field tag -->
    <collection
    element-type="Monitor"
    > <!-- end collection tag -->
    </collection>
    <extension vendor-name="kodo"
    key="ordered"
    value="true">
    </extension>
    </field>
    </class>
    But I still get this warning when I run my application:
    WARN MetaData - The field "monitors" in class "MonitorGroup" implements the
    java.util.List type, but does not specify an "ordered" metadata extension.
    This means that the order of this list will not be maintained. In a future
    release of Kodo JDO, fields of List types will be ordered by default.
    BTW are Lists ordered in 2.5 or is this scheduled for 3.0?
    Thanks,
    Michael

    Patrick,
    In the past I suggested to add Collection Comparator support to JDO.
    And I believe you planned to discuss it on JDO spec panel. Did it go
    anywhere?
    I also use TreeSet and comparable in most cases (just be careful to fully
    initialize and never change all collection member fields which are used in
    compareTo() or you will have wrong sort order). I would prefer comparators
    to implementing comparable because comparable is "global thing" (you want
    your comparable interface implementation to be universal and useful outside
    of owning collection) while for your collection sorting can be and often is
    owner specific
    "Michael" <[email protected]> wrote in message
    news:b95f6j$5ok$[email protected]..
    I have a Group object which has a List of Monitor objects. A monitorobject
    has a name. I'd like the monitor objects to be ordered by name. What is
    the simplest way to do this? I can't use the setOrdering method becauseI'm
    not using a query when I call the Group's getMonitors() method. I lookedat
    the ordered extension but I don't understand it. I tried it like this:
    <class name="MonitorGroup"
    identity-type="datastore"
    <!-- end class tag --><field name="monitors"
    <!-- end field tag --><collection
    element-type="Monitor"
    <!-- end collection tag --></collection>
    <extension vendor-name="kodo"
    key="ordered"
    value="true">
    </extension>
    </field>
    </class>
    But I still get this warning when I run my application:
    WARN MetaData - The field "monitors" in class "MonitorGroup" implementsthe
    java.util.List type, but does not specify an "ordered" metadata extension.
    This means that the order of this list will not be maintained. In a future
    release of Kodo JDO, fields of List types will be ordered by default.
    BTW are Lists ordered in 2.5 or is this scheduled for 3.0?
    Thanks,
    Michael

  • The best way to clean dust off of the screen

    Hello everyone,
    Does anyone have any tips for removing the dust from the iMac G5 screen?
    I'm especially thinking about the edges, where the dust might be able to collect.
    Thanks,
    -F

    I am not sure if they are available in the UK, but I use these from Falcon Safety. They are a microfiber cloth that will not scratch your screen. It is relatively thin, so you can get into the "ledge" around the display.

  • HT1535 The music I have in my i touch does not match or sync with music on my Mac.  What is the best way for me to sync both devices without losing any music?

    The muisc I have in my i-Touch does not match up with the music list in my Mac, therefore have issues syncing.  Is there anyway to keep all those songs without losing some of it?

    Some of the information below has subsequently appeared in a document by turingtest2: Recovering your iTunes library from your iPod or iOS device - https://discussions.apple.com/docs/DOC-3991
    Your i-device was not designed for unique storage of your media. It is not a backup device and media transfer was designed for you maintaining a master copy of your media on a computer which is itself properly backed up against loss. Syncing is one way, computer to device, updating the device content to the content on the computer, not updating or restoring content on a computer. The exception is iTunes Store purchased content.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only media purchased from iTunes Store
    For transferring other items from an i-device to a computer you will have to use third party commercial software. Examples (check the web for others; this is not an exhaustive listing, nor do I have any idea if they are any good):
    - Senuti - http://www.fadingred.com/senuti/
    - Phoneview - http://www.ecamm.com/mac/phoneview/
    - MusicRescue - http://www.kennettnet.co.uk/products/musicrescue/
    - Sharepod (free) - http://download.cnet.com/SharePod/3000-2141_4-10794489.html?tag=mncol;2 - Windows
    - Snowfox/iMedia - http://www.mac-videoconverter.com/imedia-transfer-mac.html - Mac & PC
    - iexplorer (free) - http://www.macroplant.com/iexplorer/ - Mac&PC
    - Yamipod (free) - http://www.yamipod.com/main/modules/downloads/ - PC, Linux, Mac [Still updated for use on newer devices? No edits to site since 2010.]
    - 2010 Post by Zevoneer: iPod media recovery options - https://discussions.apple.com/message/11624224 - this is an older post and many of the links are also for old posts, so bear this in mind when reading them.
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive - https://discussions.apple.com/docs/DOC-3141 - dates from 2008 and some outdated information now.
    Copying Content from your iPod to your Computer - The Definitive Guide - http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/ - Information about use in disk mode pertains only to older model iPods.
    Get Your Music Off of Your iPod - http://howto.wired.com/wiki/Get_Your_Music_Off_of_Your_iPod - I am not sure but this may only work with some models and not newer Touch, iPhone, or iPad.
    Additional information here https://discussions.apple.com/message/18324797

Maybe you are looking for

  • Generating DSOs by using a ABAP program

    Hi Experts, We have a requirement like mass generation of infoobjects through excel file as input. Similarly we need to create 20 to 30 dso's by giving excel file as input.In that file we mention DSO technical name,properties,key fields and data fiel

  • Attachment of the email and PDF

    When transfer the outllook emails to PDF package, the attachment of the email will not tranfer to PDF, but still keep as word format, how to transfer these attachment also to PDF? When print the PDF package which tranfered from the emails, only the f

  • Error in Career and Job= Skills Profile

    I have the following issue: In the application of Career and Job=>Skills Profile. When I want add a new qualification, the system display the following message of error: Root Cause The initial exception that caused the request to fail, was:    java.l

  • Hello. The camera stopped working in my iPhone 5.

    It stopped working. Is it possible to fix the problem? How long may it take?

  • Short cuts on I Mac don´t work

    I have a new I-Mac (o.k. not totalls new since 23 of October, but it is from this year). And I put the short cuts into System-preferences - language and text and there into the text box. I added some short cuts like: mg for many greetings and set the