How do you suppress page numbers. I am trying to print a screenplay for the first time since switching to Pages and I can't suppress Page

How do you suppress page numbers. I am trying to print a screenplay for the first time since switching to Pages and I can't suppress Page #1 without making the rest of the pages inaccurate, as page #1 is the Title Page. Does anyone have any suggestions?

When you signed to be able to post in the forums, you were urged to read and accept the Terms of Use ruling these forums.
They claim :
The contents of the "More Like This" box prove that applying the rules you would have get the wanted explanations without creating this new thread.
Yvan KOENIG (VALLAURIS, France) mardi 26 avril 2011 10:04:03

Similar Messages

  • Where is page setup??  Dumb Question.... Trying to print from PSCC for the first time.  Where is page setup??

    Dumb Question.... Trying to print from PS CC for the first time.  Where is page setup??
    (PS CC on Mac 10.10...  printing on Epson 3880)
    THANK YOU!!!  (:

    I use Windows but i think Photoshop would be the same.  File > Print.  Once opened look for Print settings

  • Page with PartialTriggers is not working when it loads for the first time

    Hi All,
    I am experiencing unexpected behavior when using partial triggers and this recurres every time the page loads and the second time it works fine.
    Here is the requirement, The page has a check box, when checked, two text boxes should be disabled. When unchecked the two fields should be enabled.
    (The fields are Start Date Time and End Date Time in the code below). I am also handiling the Date Validations on value change listener of Start Date time and have no issues on that.
    When I try to enter the dates on page load (The check box - "Process Full Indicator" is not selected), I enter the required fields (PEID, Dates and check the Process IAF and Process SMS check boxes and click on the ProcessRFI Button, the date fields are emptied and nothing happens. When i redo the same thing the second time, it works.
    The button invokes a BEPL process.
    One of the links suggested that I use the partialTrigger tag in the parent layout, I used in the panelFormLayout and it sill did not reflect.
    I am facing the same issue in an other page that is reteriving data from a DB Table. As I notice, both the pages are invoking dataControlls. Not too sure if it is related.
    Kindly help.
    <af:panelFormLayout id="pfl1"
    inlineStyle="font-weight:bold; height:181px;"
    >
    <af:inputText value="#{bindings.PEID.inputValue}"
    label="PEID"
    required="#{bindings.PEID.hints.mandatory}"
    columns="#{bindings.PEID.hints.displayWidth}"
    maximumLength="#{bindings.PEID.hints.precision}"
    shortDesc="#{bindings.PEID.hints.tooltip}" id="it1"
    inlineStyle="font-weight:bold;">
    <f:validator binding="#{bindings.PEID.validator}"/>
    </af:inputText>
    <!--af:inputText value="#{bindings.EnrichmentBatchID.inputValue}"
    label="Enrichment Batch ID"
    required="#{bindings.EnrichmentBatchID.hints.mandatory}"
    columns="#{bindings.EnrichmentBatchID.hints.displayWidth}"
    maximumLength="#{bindings.EnrichmentBatchID.hints.precision}"
    shortDesc="#{bindings.EnrichmentBatchID.hints.tooltip}"
    id="it3">
    <f:validator binding="#{bindings.EnrichmentBatchID.validator}"/>
    </af:inputText-->
    <af:inputDate value="#{bindings.StartDateTime.inputValue}"
    label="Start Date Time"
    shortDesc="#{bindings.StartDateTime.hints.tooltip}"
    id="id1" inlineStyle="font-weight:bold;"
    binding="#{backing_ProcessRFI.input_startDate}"
    valueChangeListener="#{backing_ProcessRFI.assignFromDateValue}"
    autoSubmit="true"
    required="true" immediate="true">
    <f:validator binding="#{bindings.StartDateTime.validator}"/>
    <af:convertDateTime pattern="#{bindings.StartDateTime.format}" type="both"/>
    </af:inputDate>
    <af:inputDate value="#{bindings.EndDateTime.inputValue}"
    label="End Date Time"
    shortDesc="#{bindings.EndDateTime.hints.tooltip}"
    id="id2" inlineStyle="font-weight:bold;"
    binding="#{backing_ProcessRFI.input_endDate}"
    partialTriggers="id1"
    required="true"
    valueChangeListener="#{backing_ProcessRFI.checkNullStartDateValue}"
    autoSubmit="true" immediate="true">
    <af:validateDateTimeRange minimum="#{backing_ProcessRFI.dtFromDate}"
    hintMinimum="End date should be greater than the Start Date"
    />
    <f:validator binding="#{bindings.EndDateTime.validator}"/>
    <af:convertDateTime pattern="#{bindings.EndDateTime.format}" type="both"/>
    </af:inputDate>
    <af:selectBooleanCheckbox value="#{bindings.ProcessIAFIndicator.inputValue}"
    label="Process IAF"
    required="#{bindings.ProcessIAFIndicator.hints.mandatory}"
    shortDesc="#{bindings.ProcessIAFIndicator.hints.tooltip}"
    id="it2"
    inlineStyle="font-weight:bold;">
    <f:validator binding="#{bindings.ProcessIAFIndicator.validator}"/>
    </af:selectBooleanCheckbox>
    <af:selectBooleanCheckbox value="#{bindings.ProcessSMSIndicator.inputValue}"
    label="Process SMS"
    required="#{bindings.ProcessSMSIndicator.hints.mandatory}"
    shortDesc="#{bindings.ProcessSMSIndicator.hints.tooltip}"
    id="it5"
    inlineStyle="font-weight:bold;">
    <f:validator binding="#{bindings.ProcessSMSIndicator.validator}"/>
    </af:selectBooleanCheckbox>
    <af:selectBooleanCheckbox value="#{bindings.ProcessFullIndicator.inputValue}"
    label="Process Full Indicator"
    required="#{bindings.ProcessFullIndicator.hints.mandatory}"
    shortDesc="#{bindings.ProcessFullIndicator.hints.tooltip}"
    id="it4"
    inlineStyle="font-weight:bold;"
    binding="#{backing_ProcessRFI.processFullIndicator}"
    valueChangeListener="#{backing_ProcessRFI.handleFullIndicator}"
    autoSubmit="true">
    <f:validator binding="#{bindings.ProcessFullIndicator.validator}"/>
    </af:selectBooleanCheckbox>
    <af:panelStretchLayout id="psl1" inlineStyle="height:40px;">
    <f:facet name="center">
    <af:panelGroupLayout layout="horizontal"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    id="pgl2">
    <af:commandButton actionListener="#{bindings.ProcessRFI.execute}"
    text="Process RFI"
    disabled="#{!bindings.ProcessRFI.enabled}"
    id="cb2"
    attributeChangeListener="#{ProcessRFI.processResult}"/>
    <af:resetButton text="Clear" id="rb1"/>
    <f:facet name="separator">
    <af:spacer width="10" height="10" id="s2"/>
    </f:facet>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelStretchLayout>
    </af:panelFormLayout>

    Hi John,
    My page is not a part of a task flow. The whole app is an Admin app comprising of multiple individual pages navigated using Menu.
    I have tried to run this page individually on my local machine as well as when deployed on the WLS server. The behavior is the same.
    Kindly advice,
    Thanks,
    Ram

  • How do i know when my zen creative is fully charged (for the first time since openi

    So I just got a Zen Creative, and I was wondering how I know when it is fully charged, will it show up on the screen and say its fully charged or is it a certain amount of time or just pay attention to the battery gauge in the top left courner? please help me

    My answer was based upon the assumption this is a flash-based Zen 2/4/8/6/32GB unit. That is the current player going by the unqualified "Zen" name (i.e. as opposed to "Zen Micro", "Zen Vision:M", etc.)
    If the OP is referring to a different player under the "Zen" brand (which consists of playes with widely differing technologies, features and "well known" issues) your mileage may vary.

  • HT5312 how do i reset my security answers to allow me to download off a laptop for the first time?

    i am trying to download a film for the first time off a laptop but it's asking me for a answers to my security questions which i've forgot.
    how do i reset them?

    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address then see if the instructions on this user tip helps : https://discussions.apple.com/docs/DOC-4551

  • I am buying an app for the first time, i put in my password, but now it wants my security question. I forgot them. how can i continue?

    on my iphone i was trying to buy an app for the first time, it promt me for the password, but then it asked for the security question. I have for gotten what the answer was. need help resetting the question and saving the changes?

    Chick3597 wrote:
    Regardless of apple updating something or another. I have no need for the additional questions and really don't want to allow them to bully me into compliance.
    You may have no need for additional but Apple does. They don't want your iTunes account to be hacked and then go complaining to them that their security procedures are not up to standards.
    Chick3597 wrote:
    So how can I continue in the good old fashioned way?
    Its really absurd to even ask this in light of the information that you have been given already. The "old fashioned" way is gone. It's Apple's store, Apples's rules and IMO - its a wise decision on Apple's part.
    You do not have to comply at all, but you will not be able to purchase from iTunes anymore, but nobody is going to force you to do something that you do not want to do.

  • I am trying to run my registered CS6 Design Standard programs for the first time after install. InDesign runs OK, but Illustrator and Photoshop will only run in trail mode. How do I activate those two?

    I can't get my registered versions of CS6 Photoshop and Illustrator to run in full mode. I installed CS6 Design Standard online end of June (an upgrade from CS5.5), on my old MacBook Pro. I didn't run the programs then as I was waiting on arrival of new MacBook Pro. I migrated the programs from my old MacBook to the new, and today tried to run those programs for the first time. InDesign work OK (after an initial hiccup) but Illustrator and Photoshop will only run in trial mode, and won't let me save files. My CS6 Design Standard shows with it's registration in my Adobe Account. All seems in order, but Illustrator and Photoshop won't run in registered mode. Can you please help?

    Demons1 in the future please only migrate your documents and settings.
    Please use the uninstallers to remove your current installation.  They are located in the Applications/Utilities/Adobe Installers folder.  Once the uninstall is complete you will also want to run the CC Cleaner Tool.  You can find more details at Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6 - http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html.
    If you need to download a fresh copy of the installation files for Creative Suite 6 you can do so at Download CS6 products.

  • Once you launch Safari for the FIRST time, do you seee what am looking at?

    I received MBP yesterday.
    I launched safari.
    I typed www.
    AND
    I saw a series of address including 20-30 RRS address as well.
    There was NewYork Times, Flower oder site, and hotstuffworks.com as well. Some of them are registered as RRS (around 40 site) there are some others as well.
    Did you see this when you launch Safari for the first time.
    I called Applecare and after sales center and they said nothing worng if machine is working fine.
    Would you let me know what you guys experienced with your MBP?

    It's fine. They are the default bookmarks. You can see and change them from the bookmarks menu or by clicking the "book" symbol under the "back" arrow.

  • Access denied coming for pages in mysite for the first time.

    Hi all,
    I am having a strange issue in mysite. i have customized the mysite pages. suppose organisationview.aspx i have simply opened in advanced mode and saved in sharepoint designer so that the page is now saved in content database. Then for the first time when
    user access the page they will get access denied. Again if they go back to site and take the page again the page will be loaded. Now if the user tries this again after 5 minutes then again the issue will come. But if the user is given contribute permission
    in mysite the issue will not come.
    I want to give only read permission to the users. Please help me in identifying the cause of the issue and the resolution.

    Open the catalog using Catalog Manager and set permissions to specific groups and apply recursively.
    ex:
    select folder->Permissions->Add Presentation Server Administrator set to Full Control
    Check for Apply Recursively
    That should help.
    Edited by: veeravalli on Nov 16, 2012 11:15 AM

  • How do you recover a pages document when pages crashes before you can save it for the first time

    Pages crashed unexpectedly before I had a chance to save it for the first time.  How can I recover that document?  It must be out there somewhere!!
    Thanks

    If it wasn't saved once it is gone.

  • HT5699 I was trying to buy a movie in itunes for the first time but I don´t remember my answers to apple´s security questions . how can I do? thank you very much

    I was trying to buy a movie in itunes for the first time but I don´t remember my answers to apple´s security questions . how can I do? thank you very much

    Hey antonio.b5,
    Thanks for using Apple Support Communities.
    If you can't recall your Apple ID security questions and answers, the optional rescue email provides a way to reset them.
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/ht5312
    Have a nice day,
    Mario

  • HT1338 I use iCal for the first time. How do you update it without needing to update all programs of your computer?

    I use ical for the first time, how do you update the programm without updating for 2 hours all other programms

    From the iCal Help Menu in the Tool Bar...
    Changing or deleting an event
    You can change the time, day, alarm, or any other settings for any events you’ve created, or you can delete an event.
    You can’t change the events on a calendar you’ve subscribed to (subscribed calendars appear in your Calendar list under the heading “Subscriptions”), and you can only change the calendar, status, and alarms for events you’ve been invited to.
    To change or delete an event:
    To change the time or day of an event you’ve created, drag the event to the new time or day in the main calendar view.
    To change an event’s duration, drag the event’s top or bottom edge. (You can resize events only in Day or Week view.) If the event is an all-day event, in Week view, drag the left or right side of it.
    To change the name of an event, double-click it. If necessary, click Edit to open the event editor. Select the event name, type a new name, and then click Done. (You can also change the name of an event without opening the event editor by holding down the Option key while you double-click the event name.)
    To edit other characteristics of an event (for example, how often it repeats or whether it has an alarm), double-click the event. If necessary, click Edit to open the event editor. Make your changes.
    To delete an event, select the event and press the Delete key on your keyboard.
    If you’re changing an event to which you’ve invited other people, you need to send an updated event to the invitees by clicking Send in the event editor

  • HOW TO STOP you are opening this program for the first time

    I continue to get the warning "you are opening this program for the first time".  I don't want that warning to ever appear again for any program.  How to permanently get this warning to never again appear?
    Best regards,
    Steve Schulte
    Wednesday 21 November 2012

    Thomas,
    The reason I don't want these warnings (especially for programs that I have had on my Mac for years!) is because I now use ecamm's "Printopia" to send items from my iPad3 running iOS 6.0.1 to my MacBook Pro-13 (mid-2010) running Mountain Lion 10.8.2 -- and in order to do this:
    1.  Both my iPad and Mac have to be on the same WiFi network.
    2.  The Mac has to be awake, cannot be in the "sleep" mode
    OK but in order to wake my Mac, I've found that using the app "Remote" on my iPad to open iTunes AND PLAY A SONG will "waken" my Mac*.
    So now, for example, I send a .jpg file to my Mac.  I have it set so that GraphicConverter opens when a .jpg file is to be opened.  OK but if this warning appears (and even though I have had GraphicConverter on the Mac since the beginning of time…) I sometimes (like today) get this warning.  Of course I am not at my Mac and yet when I eventually go to my Mac-- there is that dialog box sitting there and until I click OK the photo doesn't open (and on my iPad I don't get a confirmation that it has been sent, because it hasn't until I click OK on the Mac).
    This could happen for other types of files, too - text files or Word documents etc.
    It seems to happen when I UPDATE a program, like when GC went from 8.3 to 8.3.1 for example.
    Thanks for any additional comments.
    *Perhaps there is a better / faster / easier way to "waken" my Mac from my iPad?  This is the only way I have found so far…

  • How to set up Airport Extreme with Charter ARRIS Modem TM902A for the first time for WIRELESS.

    How to set up Airport Extreme with Charter ARRIS Modem TM902A for the first time for WIRELESS.
    When Charter Tech goes to your site, have them connect the modem up, but do not connect the modem to your iMAC or MacBook Pro.  What you want to do is connect the Airport Extreme to the iMac or MacBook Pro first with the Ethernet Cable. You have to do this to configure via Airport Utility to set up the Base Station Name & Base Station Password.
    You will then create/configure a Wireless Network, create your Wireless Password that will be entered on each of your Devices, example, Apple Tv, your iPhone, etc., you want to allow access to your Wireless Network you are creating.
    Wireless Security will be -> WPA/WPA2 personal or just WPA2
    Enter the Wireless Password you want
    Verify the Wireless Password (enter it again)
    After it is created you will see it on the Airport Utility window with the name you created for it and to the left, will be a Dot (circle that will be yellow).
    Next you then want to unplug the power to the Airport Extreme, and then take the end of the Ethernet cable you unplugged from the iMac or Lap top MacBook Pro and connect it to the back of the Modem.
    Next unplug the power cord from the modem and wait about 5 minutes, then plug the power back into the Arris Modem and wait until all lights come back on the modem wait
    about 5 minutes, then plug the power cord back to the Airport Extreme and you will see it the light blinking yellow.  Wait about 5 to 10 minutes, during this time Restart you IMAC or MacBook Pro, and once it is back up click on the Airport Utility and you should see on the Airport Utility screen.
    For INTERNET to the left the light should be green and you should see the Airport Extreme also appear and the light to the left on the screen should also be green.  If they are, you then should be able to click on the Wireless Symbol on top of bar of the screen and click to select the Wireless Network Name you created.
    If you Do Not See the light (Icon) next to INTERNET turn Green, or if you see the Internet Light Green, but the Light (Icon) next to the Airport Extreme is yellow, unplug the power again to the modem and unplug the power again to the Airport extreme and wait about 15 minutes or up to 30 minutes. Then plug the power cord back to the modem wait till all the lights light up then, plug the power cord back into the Airport Extreme and Restart your iMAC or MacBook Pro.
    The Airport Extreme light should change from yellow to green. Open up the Airport Utility to see what the indicators are showing they should both be green.  Again select Wireless network you created under the Wireless Icon on the top right of the screen. Open Safari and see if you are able to Route to a web page or the apple site should appear.
    WHAT TO DO IF YOUR AIRPORT EXTREME WAS PREVIOUSLY SET UP FOR USE WITH ANOTHER CARRIERS ROUTER OR MODEM.
    NOTE:  If you already had your Airport Extreme connected for example, I previously had ATT Uverse and the Airport Extreme was connected to the Wireless Router Model 3801HGV, I disabled the Uverse Wireless and used the Airport Extreme for the Wireless signal in bridge mode, as the Airport extreme Signal is much stronger than the Uverse router, and I was able to obtain a Wireless signal with the Airport Extreme way much better with no signal loss which was very very frustrating with the Uverse router.
    Anyhow if you had it hooked up like this, now that you will be using it with the Charter ARRIS Modem TM902A, you will need to reset the Airport Extreme to clear out the old data it has in memory, with the previous set up otherwise it will not work. Trust me I spent 6 hours trying to make it work reading all Apple Support Community questions and answers relating to this type issue/problem others have been having trying to get their set up working. I tried all the tips, and I finally decided just to see if by chance I would be able to connect with someone with Charter Tech support who might be familiar with Apple to be able to assist me and by luck I did.  He told me why it was not working and was all due the previous configuration with the ATT Uverse router was still in memory with the Airport Extreme. Finally it was 10:30 PM when I decided to call Charter Tech Support and I had been working on this since 3:00 pm pacific. I did not call them earlier as all the post I read said they never received any good help from Charter. After calling them I finished up by 11:00 PM and was able to finally connect Apple Tv, iMac, iPhones and Macbook Pro. We love our Apple Product and Happy all is connected with the new
    Internet Provider Charter. I must say the speed is way way much better than it ever was with AT&T Uverse. 
    THIS IS WHAT YOU WILL NEED TO DO:
    First you will need to unplug the Airport Extreme, then by taking the tip of a pen or paper clip end you need to push the reset button on the back of the Airport Extreme and hold it
    down and at the same time plug the power cord back into the Airport Extreme count to 5 or 10 then release the reset button. Then once he light in front of the Airport Extreme stops blinking you need to plug the Ethernet cable from the Airport Extreme to your iMAC or Macbook Pro, and restart which ever one you have, then open the Airport Utility once it is back up.  If you see airport extreme pop up with the old network name or it shows and yellow triangle click on the Airport Extreme ICON it will not let you configure it but will ask if you want to get rid of it or remove and just do it.  Then Again restart your iMAC or MacBook Pro, open up Airport Utility again, and on the top left you should see under “Other Airport Base Stations” the MAC ID for the Airport Extreme.
    You will then create/configure a Wireless Network, create your Wireless Password that will be entered on each of your Devices, example, Apple TV, your iPhone, etc., you want to allow access to your Wireless Network you are creating.
    Wireless Security will be -> WPA/WPA2 personal or just WPA2
    Enter the Wireless Password you want
    Verify the Wireless Password (enter it again)
    After it is created you will see it on the Airport Utility window with the name you created for it and to the left, will be a Dot (circle that will be yellow).
    Next you then want to unplug the power to the Airport Extreme, and then take the end of the Ethernet cable you unplugged from the iMac or Lap top MacBook Pro and connect it to the back of the Modem.
    Next unplug the power cord from the modem and wait about 5 minutes, then plug the power back into the Arris Modem and wait until all lights come back on the modem wait
    about 5 minutes, then plug the power cord back to the Airport Extreme and you will see it the light blinking yellow.  Wait about 5 to 10 minutes, during this time Restart you IMAC or MacBook Pro, and once it is back up click on the Airport Utility and you should see on the Airport Utility screen.
    For INTERNET to the left the light should be green and you should see the Airport Extreme also appear and the light to the left on the screen should also be green.  If they are, you then should be able to click on the Wireless Symbol on top of bar of the screen and click to select the Wireless Network Name you created.
    If you Do Not See the light (Icon) next to INTERNET turn Green, or if you see the Internet Light Green, but the Light (Icon) next to the Airport Extreme is yellow, unplug the power again to the modem and unplug the power again to the Airport extreme and wait about 15 minutes or up to 30 minutes. Then plug the power cord back to the modem wait till all the lights light up then, plug the power cord back into the Airport Extreme and Restart your iMAC or MacBook Pro.
    The Airport Extreme light should change from yellow to green. Open up the Airport Utility to see what the indicators are showing they should both be green.  Again select Wireless network you created under the Wireless Icon on the top right of the screen. Open Safari and see if you are able to Route to a web page or the apple site should appear.

    I just got a Charter Modem. Model TM822. While I was moving, my Airport Extreme was still at my old place.
    I have a Linksys WRT320N I used for the initial Charter setup.
    I can get my Airport to work here, but the Internet light on the Modem flashes Yellow.
    Hasn't caused any issues so far but one thing I did notice.
    On the Linksys there were 3 DNS servers listed.
    The Airport Extreme only lists 2 and i don't see where I could add another, only change whats already there.
    I tried everything above, but light on modem still flashes yellow.
    I have the technicians cell phone. Told me "that shouldn't be" and gave the same advice listed above.
    I'll break down and call Charter one day, see if it's on their end. NSA tracking may need a reset LMAO.

  • I have a new Macbook Air and for the last few days the fan had run continuously, this is the first time it has ever run, and now it won't stop, the fan starts up as soon as I turn it on. The computer is not hot.Any ideas on how I can fix this please ?

    I have a new Macbook Air, 6 months old, and for the last few days the fan had run continuously, this is the first time it has ever run, and now it won't stop, the fan starts up as soon as I turn it on and the computer seems to running more slowy.The computer is not hot but I am worried it may burn out,.Any ideas on how I can fix this please ?

    Hello dwb,
    Here is the screen shot, just the top half, there are another 10 pages, but I guess this should enough for you to have an idea of waht is going on, bit small I am afraid. No, I don't have any apps setup to run when I open my computer, the kernel, varies between 290 and 305 per cent ish.
    Would that PRAM thing help ? I think it may be the computer itself, well something inside, as this the first time that the fan has ever started running since I have this computer, even when I have 3 or 4 apps running.
    Thank you again for your advice,
    Regard,
    Beauty of Bath

Maybe you are looking for

  • Delete Mail From Server Gmail-Imap-Account

    Hi, My problem is that when I delete email from the z10 it Doesnt delete it from the server 1. I am use to read my mails from some devices (web,macbook,mobile) 2. had an ios device before and use to have mails automaticly deletes from the server as w

  • MRP for MRP type VB

    Hi, In order to run MRP for the materials related to consumption based planning (VB) in transaction MDBT / MD01 i have followed below link and activated user exit but when i run MRP, it is considering even MRP type PD. When we try to put break point

  • Printing ability from iPad

    Is there a way to print downloaded pages from iPad? Can download kindle book on iPad be sent to my Apple Desktop or iMac & print from one of them? HOW? Chris P/H

  • Time Machine kills my OS

    I'm not sure if it is because Spotlight was running (or hanging, I'm not sure whether it was actually doing anything or not) (and I had turned my TM disc to the Private setting in Spotlight) or what, but twice now running Time Machine has frozen ever

  • Camera shutter iphone 5 does not work

    shutter camera iphone 5 not working