Blue line for layout (what are they called)

In pages, when you open a template or pre-made document, there are blue lines on the Y and x-axis that help outline the page. What are those called and how do I add them to my “new” document.

Welcome to Apple Discussions
They are called Alignment Guides & you can enable them in Preferences. You can also change the color by clicking in the blue box to bring up the color picker. I think they are on with all of the templates, including the blank one, but may not be with imported documents.

Similar Messages

  • I have an iMac (the desktop) I've stupidly left the cable you plug the monitor into the wall with there. What are they called and where can I get a new one?

    I have an iMac (the desktop) I've stupidly left the cable you plug the monitor into the wall with there. What are they called and where can I get a new one?

    Presumably the mains cable, which you can get from an Apple Store.

  • Wide gamut options for iMac, what are they

    We have a new iMac 22 inch model and when we try to calibrate it as a wide gamut monitor using Datacolor Spyder Studio we get the error that this is not a wide gamut monitor. *** I thought this was the ultimate in displays!
    What do we have to do to get a wide gamut display? We really don't want to add a monitor

    Color gamut is a bit worse on the new panel vs. the old one from what I can tell. Both are WLED backlit which limits the  spectrum of colors they can accurately reproduce.
    http://www.anandtech.com/show/4340/27inch-apple-imac-review-2011/7
    http://www.dpreview.com/forums/post/50281286

  • I found some little black dots n my iPhone 5 screen. I've only had it for 2 weeks. What are they and will apple replace my iPhone for a new one or fix it?

    I found some little black dots n my iPhone 5 screen. I've only had it for 2 weeks. What are they and will apple replace my iPhone for a new one or fix it?

    They should have one in Stock, but you never know. Call your Apple Store and tell them you have an iPhone 5 color and GB, and that you most likely will need a replacement, do they have any in Stock. If yes, go in, if not ask for advice on how to handle your problem.

  • What are they mean for the colors which are present in RPD

    Hai
    In RPD we will find different colors right side to the databases,tables like green ,sky blue , marked as red in middle , yellow , given sysmbol like Stop with red color. Please any can give me brief idea for what they are indicated in different colors
    Thank you
    manu

    Hi
    Thank you..
    Yes i am asking about Colors to icons in RPD,in phsical layer , presentation layer, BUsiness model layer
    There are colors for icons like blue , yellow, etc...
    what are they mean with the color
    can you tell me please about this

  • Yosemite 10.10.2 server app. FTP help. I have a program running in my local server enviroment that wants to FTP to my mac folder. It asks for the server , name, password, port and path. what are they?

    So I have set up a localhost area in my Mac. I have the new server.app and I am running yosemite 10.10.2 .
    I have a program running in my local server enviroment that wants to FTP to my mac .
    It asks for the server , name, password, port and path. what are they?
    I am pretty certain that the Serveris "localhost",
    Name is my macs name (like my-mac-min)
    password is "my login password"
    and they suggest port 21.
    But what is the file path, lets just say my site is set up http://localhost/siteftp and is actually at my Users/Sites/siteftp folder.
    Why cant this program connect to the mac.
    Is it because they are both operating in the same localhost enviroment,
    could it be my folder permissions are not correct on siteftp folder?
    Help please !

    I tried turning the computer off and then back on. The alerts don't show the notice to update as resolved. Hopefully this is not a problem or an indicator or another problem. Should I ignore or reload 10.10.1 from the app store to trigger a resolved check in a green circle?
    Interesting that I had to buy server software after my free Yosemite download. I would have hoped that the two pieces of software would have gone together without any complication. It is not positive to end up buying a problem. Ah well, time to move on.

  • My company loaded profiles onto my iPad for email and calendars.. There is also a signing certificate and a certificate. What are these for? Additionally are they able to monitor apps and usage, ie Internet usage when it is not on their wifi?

    My company loaded profiles onto my iPad for email and calendars.. There is also a signing certificate and a certificate. What are these for?
    Additionally are they able to monitor apps and usage, ie Internet usage when it is not on their wifi?
    I do not have any VPN enabled?

    Do you happen to have an Android?  If so and depending on what version there is a great data usage analyse tool built-in.  See if you can go to Settings -> Data Usage  from there you can pick a current or previous billing cycle and then use the vertical sliders to select a date range and it will filter the usage data per app to show you exactly what app(s) were using data during that time frame.

  • What are these and what are they useful for?: and

    I have seen these symbols being used in Java: << and >>, what are they and what do they do?
    Thank you.

    As DrQuincy asks how is this of use over multiplying
    and dividing?In your processor there are often different instructions for shifting, multiplying, and deleteing. Typically the shifting instructions take less time to execute and so using the shifting operator will be faster than multiplying. This assumes the compiler doesn't recognize the situation and optimize it out though.
    The >>,<<,>>>, &,|,and ^ operators are mainly useful when you need to deal with individual bits of data. For instance if you are talking to another system (thats not java) that uses a different method of storing numbers (little endian/big endian etc.), or doing something such as creating parity data for error correction. There are lots of things to do, but most a low level and its rare when you need to use them.

  • Service/Database Accounts - NT SERVICE\MSSQLSERVER & NT SERVICE\SQLSERVERAGENT - what are they for?

    Hi Guys,
    I’ve done a fair amount of research for this question but just cannot seem to find the answer to my question in simple, non-DBA, terms.
    Server 2008 R2
    SQL 2008 R2
    There are 2 users in the system database logins (NT SERVICE\MSSQLSERVER, NT SERVICE\SQLSERVERAGENT) … what are they for? It appears that they
    are accounts to run the corresponding Windows services but yet they cannot be selected from the list of available built-in accounts, local accounts or domain accounts.
    Also, I am using a couple of domain user accounts to run the services, do I need to add them to the database? I changed the service accounts from NETWORK
    SERVICE to the domain user accounts using the SQL Configuration Manger which is supposed to take care of managing the user group membership and registry changes but the domain accounts are not in the database …. The services appear to be running fine.
    Thanks

    In basic terms:
    As you say, in the SQL Server Database Engine there are two logins;
    NT SERVICE\MSSQLSERVER and NT SERVICE\SQLSERVERAGENT. The Database Engine runs in Windows as a Windows service named
    MSSQLSERVER. The NT SERVICE\MSSQLSERVER login is used by the service to connect to the Database Engine. Basically, this is how it connects to itself. The SQL Server Agent runs as a Windows service named
    NT SERVICE\SQLSERVERAGENT. The NT SERVICE\SQLSERVERAGENT
    login is how the Windows process that is SQL Server Agent connects to the Database Engine to read the
    msdb database to find out what it should do; and then do it. Both of these logins are members of the
    sysadmin fixed server role, so they can do anything in the Database Engine. And they need to stay that way.
    No, they can't be selected in the list of available built-in accounts, local accounts or domain accounts. This is because they are services, not accounts. They have a security identifier (SID) in Windows,
    but Windows knows they aren't real users. Windows can authenticate them, but they don't have passwords that any human can use. If you run
    lusrmgr.msc and look at the groups, you will see groups like
    SQLServerMSSQLUser$computername$MSSQLSERVER and NT SERVICE\MSSQLSERVER
    is a member of the group.
    As for the account that you used to run the services, this is complicated and has changed from SQL Server 2005 to SQL Server 2008 and now again in SQL Server Code Named 'Denali'. The short answer is that
    the account you specify will be used when a process tries to reach outside of the current Windows environment. But within the computer, there is a mix of authorization granted to the domain user, the service, and the Windows group
    SQLServerMSSQLUser$computername$MSSQLSERVER.
    The good news is that SQL Server Configuration Manager figures out all the stuff you need when you change the accounts. If you are a glutton for punishment, you can get an idea for how complicated this
    is by looking at the Denali documentation where I have tried to provide more specific information. (Note this is not the same as SQL Server 2008.) You can see it at:
    Configure Windows Service Accounts and Permissions
    http://msdn.microsoft.com/en-us/library/ms143504(SQL.110).aspx
    Rick Byham, Microsoft, SQL Server Books Online, Implies no warranty

  • Hi Do we have tables for SAP BPC EPM Comments ? if we have what are they could you please explain some one.

    Hi Do we have tables for SAP BPC EPM Comments ? if we have what are they could you please explain some one.

    Hi Narahari,
    Yes, we have tables for SAP BPC EPM comments and it is stored in backend BW.
    Please follow the below steps to see it -
    1. Go to RSA1 and find the infoprovider name for the application/cube that contains the comments For example, the infoprovider name is /CPMB/VZIKG4O
    2.  Then Go to SE16 and enter the comment table name.  The comment tables are generated tables.  You can determine there name by using the following rules:
      a.  The table name always starts with '/1CPMB/'
      b.  The rest of the name is derived from the infoprovider name - it is the first two characters after the second '/' + the fourth, fifth and sixth characters + CMT (for comments) or CMTA (for archived comments). In my case the comments table name would be "/1CPMB/VZKG4CMT" and the archived comments table would be "/1CPMB/VZKG4CMTA".
    3.  Hit 'F7' or click the table contents button.
    4.  Enter the criteria for the comments you wish to export.
    Hope this helps.

  • I seem to have developed a rash of folders called "earlier".  What are they?

    I seem to have developed a rash of folders called "earlier".  What are they?

    See this post.
    tt2

  • What are the frequencies all versions of the iPhone 6 and what are they used for (e.g. GSM, 3G, LTE, WIFI, Bluetooth,etc...) provided with channel numbers per frequency

    what are the frequencies all versions of the iPhone 6 and what are they used for (e.g. GSM, 3G, LTE, WIFI, Bluetooth,etc...) provided with channel numbers per frequency.

    Click here

  • What are abstract classes/methods and what are they for?

    Hi,
    I've just heard about abstract classes and methods and I'm just wondering what exactly they're used for, and why are they there for the Graphics class for example?
    Cheers.

    raggy wrote:
    bastones_ wrote:
    Hi,
    I've just heard about abstract classes and methods and I'm just wondering what exactly they're used for, and why are they there for the Graphics class for example?
    Cheers.Hey bro, I'll try to solve your problemYou have to know two important concepts for this part. 1 is Abstract classes and the other is Interface classes. Depends on the nature of the project, you need to set certain level of standards and rules that the other developers must follow. This is where Abstract classes and Interface classes come into picture.
    Abstract classes are usually used on small time projects, where it can have code implementation like general classes and also declare Abstract methods (empty methods that require implementation from the sub-classes).Wrong, they are used equally among big and small projects alike.
    Here are the rules of an Abstract class and method:
    1. Abstract classes cannot be instantiatedRight.
    2. Abstract class can extend an abstract class and implement several interface classesRight, but the same is true for non-abstract classes, so nothing special here.
    3. Abstract class cannot extend a general class or an interfaceWrong. Abstract classes can extend non-abstract ones. Best example: Object is non-abstract. How would you write an abstract class that doesn't extend Object (directly or indirectly)?
    4. If a class contains Abstract method, the class has to be declared Abstract classRight.
    5. An Abstract class may or may not contain an Abstract methodRight, and an important point to realize. A class need not have abstract methods to be an abstract class, although usually it will.
    6. Abstract method should not have any code implementations, the sub-classes must override it (sub-class must give the code implementations). An abstract method must not have any implementation code code. It's more than a suggestion.
    7. If a sub-class of an Abstract class does not override the Abstract methods of its super-class, than the sub-class should be declared Abstract also.This follows from point 4.
    9. Abstract classes can only be declared with public and default access modifiers.That's the same for abstract and non-abstract classes.

  • What are Wrapper classes and what are they used for ?

    What are Wrappter classes and what are they used for ?..Also, any examples would be great to understand this concept

    Wrapper classes are used to enclose primitive data
    types so that they can be used in instances where an
    object is required. For example, if you want to add an
    integer to an ArrayList, you can't use this:java.util.List al = new ArrayList();
    int i=123;
    al.add(i);because the ArrayList expects data of type object. In
    order to all the integer to the ArrayList, you must wrap
    it in the Integer wrapper class. This works:java.util.List al = new ArrayList();
    int i=123;
    al.add(new Integer(i));Hope that helps.
    Mark

  • Thousands of strange images on  iPhoto what are they?

    I tried to down load my pics in iphoto into a file I could put on an external hard drive for back up. Now i have thousands of images some of which are called resources,water color text mat , uk.iprog ect. What are they & how do I make them go away?  I'm vexed and bewildered.

    It sounds like the hard drive was accidently dragged into the iPhoto window or onto the iPhoto icon in the Dock.  If you downloaded your pics into a new library try starting over with a new library and see if you can avoid those images.
    OT

Maybe you are looking for

  • BT Fon and BT openzone

    I live in ontario tower and i was using btopen zone and bt fon thing( where you have to buy vouchers) for about 5 months and everything worked fine untill Monday. Now i can connect to any hotspots. It sais limited connectivity. Sometimes it sais "can

  • Wrong Input Parameter in Job Details

    Hi, i start a OWB10.2.0.1 mapping by calling its main-Procedure including the default-parameters and a individual plant location-parameter 'B' as MappingInput (used later as filter), f.e.: declare p varchar2(4000); begin fact_map.main(p, 'B', NULL, N

  • Windows on Mac or Mac on a Windows ...

    My son is trying to tell me that he could run OSX on a ( sorry have to say it .. another type of computer ) laptop if I bought him one, why would I buy no-name ... when owning two iMac's now .... because one company would allow me to finance a new co

  • Editing a banner with hotspots

    I have created a banner that has two frames and was divided into slices to identify the menu links.  I exported this to a folder and it turned out to be 1 HTML document, 1 GIF, and a whole bunch of JPGs.  How would I edit this banner once I have clos

  • How to drag a file to time capsule???

    How to drag a file to time capsule? I would like to use it  to store stuff like video and music, every time I try to drag a file in the TC it doesen't work ???