How can a text box overlap an object?

I have a 1TB late 2012 iMac. Yosemite version 10.10.2 is installed.
Processor: 2.7 GHz Intel Core i5
Memory: 8 GB 1600 MHz DDR3
Graphics NVDIA GeForce GT 640M 512MB
How can I place a text box overlapping an object?
I have pasted a photo from an email into a Pages document and I'd like to put on top of it.
I have tried as many Help topics as seemed relevant, but 'Move Backwards' and 'Move to front' are greyed out.
I have been confident using this technique with Mountain Lion, but now I'm stuck.
I am old and self-taught.

Assuming you have Pages 5.x
Click on the object > Toolbar > Format > Arrange > Stay on Page > Text Wrap > None
Now you can move it. It probably was inline and part of the text.
You can not move it under the general body text however, unless you move it to the Section Masters in which case it will appear on every single page of that Section.
You will need to create a Textbox to put your text into and move that on top of the object.
Peter

Similar Messages

  • How can I insert values from table object into a regular table

    I have a table named "ITEM", an object "T_ITEM_OBJ", a table object "ITEM_TBL" and a stored procedure as below.
    CREATE TABLE ITEM
    ITEMID VARCHAR2(10) NOT NULL,
    PRODUCTID VARCHAR2(10) NOT NULL,
    LISTPRICE NUMBER(10,2),
    UNITCOST NUMBER(10,2),
    SUPPLIER INTEGER,
    STATUS VARCHAR2(2),
    ATTR1 VARCHAR2(80),
    ATTR2 VARCHAR2(80),
    ATTR3 VARCHAR2(80),
    ATTR4 VARCHAR2(80),
    ATTR5 VARCHAR2(80)
    TYPE T_ITEM_OBJ AS OBJECT
    ITEMID VARCHAR2(10),
    PRODUCTID VARCHAR2(10),
    LISTPRICE NUMBER(10,2),
    UNITCOST NUMBER(10,2),
    SUPPLIER INTEGER,
    STATUS VARCHAR2(2),
    ATTR1 VARCHAR2(80),
    ATTR2 VARCHAR2(80),
    ATTR3 VARCHAR2(80),
    ATTR4 VARCHAR2(80),
    ATTR5 VARCHAR2(80)
    TYPE ITEM_TBL AS TABLE OF T_ITEM_OBJ;
    PROCEDURE InsertItemByObj(p_item_tbl IN ITEM_TBL, p_Count OUT PLS_INTEGER);
    When I pass values from my java code through JDBC to this store procedure, how can I insert values from the "p_item_tbl" table object into ITEM table?
    In the stored procedure, I wrote the code as below but it doesn't work at all even I can see values if I use something like p_item_tbl(1).itemid. How can I fix the problem?
    INSERT INTO ITEM
    ITEMID,
    PRODUCTID,
    LISTPRICE,
    UNITCOST,
    STATUS,
    SUPPLIER,
    ATTR1
    ) SELECT ITEMID, PRODUCTID, LISTPRICE,
    UNITCOST, STATUS, SUPPLIER, ATTR1
    FROM TABLE( CAST(p_item_tbl AS ITEM_TBL) ) it
    WHERE it.ITEMID != NULL;
    COMMIT;
    Also, how can I count the number of objects in the table object p_item_tbl? and how can I use whole-loop or for-loop to retrieve values from the table object?
    Thanks.

    Sigh. I answered this in your other How can I convert table object into table record format?.
    Please do not open multiple threads. It just confuses people and makes the trreads hard to follow. Also, please remember we are not Oracle employees, we are all volunteers here. We answer questions if we can, when we can. There is no SLA so please be patient.
    Thank you for your future co-operation.
    Cheers, APC

  • How can I text photos from iPhone 6 to another smartphone

    How can I text pictures from my iPhone 6 to another kind of smartphone (Android, etc).? I can text photos through iMessage to other iPhone users with no problem. In Settings, my iMessage, Send as SMS and MMS Messaging are all set to `On.'
    Conversely, I don't seem to be able to receive photo texts from another person's non-Apple phone, although I'm told she can send to other iPhones with no problem.

    Do you have cellular data turned on? Do you have MMS enabled on your account through your carrier?

  • How can multiple check boxes be added at one time to a form?

    How can multiple check boxes be added at one time to a form?

    Thanks for your response, but copying and pasting creates a link. If the user places a check mark in one of the boxes, all the rest of the boxes will have a check mark also. I will research this some more.
    Carol Deatherage
    Receptionist
    Novar/Honeywell
    1000 SE 14th Street
    Bentonville, AR 72712
    Office:  (800) 341-7795
    Fax: (479) 271-0657
    [email protected]<mailto:[email protected]>
    Your feedback is important to us! Please take a moment to rate this response.
    Click Here to Access the Survey<https://www.surveymonkey.com/s/NovarSurvey>!
    This email and any files transmitted with it are confidential and intended solely for the individual or entity to whom they are addressed. If you have received this email in error destroy it immediately.
    Novar Confidential ***

  • How can I fill a table of objects from cursor with select * bulk collect???

    Hi All, I have a TYPE as OBJECT
    create or replace type dept2_o as object (
    deptno NUMBER(2),
    dname VARCHAR2(14),
    loc VARCHAR2(13));
    I can fill a table of objects from cursor with out select * bulk collect...., row by row
    declare
    TYPE dept2_t IS TABLE of dept2_o;
    dept_o_tab dept2_t:=dept2_t();
    i integer;
    begin
    i:=0;
    dept_o_tab.extend(20);
    for rec in (select * from dept) loop
    i:=i+1;
    dept_o_tab(i):=dept2_o(
    deptno => rec.deptno,
    dname => rec.dname,
    loc =>rec.loc
    end loop;
    for k IN 1..i loop
    dbms_output.put_line(dept_o_tab(k).deptno||' '||dept_o_tab(k).dname||' '||dept_o_tab(k).loc);
    end loop;
    end;
    RESULT
    10 ACCOUNTING NEW YORK
    20 RESEARCH DALLAS
    30 SALES CHICAGO
    40 OPERATIONS BOSTON
    But I can't fill a table of objects from cursor with select * bulk collect construction ...
    declare
    TYPE dept2_t IS TABLE of dept2_o;
    dept_o_tab dept2_t:=dept2_t();
    begin
    dept_o_tab.extend(20);
    select * bulk collect into dept_o_tab from dept;
    end;
    RESULT
    ORA-06550: line 6, column 39;
    PL/SQL: ORA-00947: not enough values ....
    How can I fill a table of objects from cursor with select * bulk collect???

    create or replace type dept_ot as object (
    deptno NUMBER(2),
    dname VARCHAR2(14),
    loc VARCHAR2(13));
    create table dept
    (deptno number
    ,dname varchar2(14)
    ,loc varchar2(13)
    insert into dept values (10, 'x', 'xx');
    insert into dept values (20, 'y', 'yy');
    insert into dept values (30, 'z', 'zz');
    select dept_ot (deptno, dname, loc)
      from dept
    create type dept_nt is table of dept_ot
    declare
       l_depts dept_nt;
    begin
       select dept_ot (deptno, dname, loc)
         bulk collect
         into l_depts
         from dept
       for i in l_depts.first .. l_depts.last
       loop
          dbms_output.put_line (l_depts(i).deptno);
          dbms_output.put_line (l_depts(i).dname);
          dbms_output.put_line (l_depts(i).loc);    
       end loop;
    end;
    /

  • How can I refer to the PhotoShop Object library dynamically depend on the release of PhotoShop?

    Recently, I make a program, now I face a big program:
    I make the program by visual basic and photoshop script , but my client have different release of Photoshop, for example : photoshop 7.0 cs and cs2. I know every release of PhotoShop have ist own Object library, but in visual basic 6.0, I can only refer to one PhotoShop Object library. for example: if I refer to Photoshop 8.0 Object library, if my clients release of Photoshop is 7.0. there will be a error message : Run-time error '429 ( cant create object) Run-time error '430(Class does not support Automation or does not support expected interface), How can I refer to the PhotoShop Object library dynamically depend on the release of PhotoShop?
    my email is : [email protected] .
    any suggestion?

    Please read, and reply back here with information https://forums.adobe.com/thread/1499014
    -and try some steps such as changing browsers and turning off your firewall for downloads

  • How can I show icon Services for Object in PA30 Infotype 0019

    Hi guy.
    How can I show icon Services for Object in PA30 Infotype 0019 ?
    This icon display in some infotype example infotype 0024(Qualifications).But I wanna use in Infotype 0019.
    I don't wanna use menu "Assign facsimile".
    Best regards.
    Chutima.

    Sorry - should have said I'm using JDev 10.1.3.0.4 with JSF & ADF BC.

  • How can I text from my macbook pro

    How can I text from my Macbook pro using Mountian Lion?

    You can text messages from Mail.... both AT&T & Verison....
    http://www.makeuseof.com/tag/email-to-sms/

  • How can I get a count of objects in the near cache? (Extend client)

    Hi,
    I'm trying to figure out how to get the count of objects in my near cache (from c++ client). Knowing the size of the near cache is a key factor when optimizing configurations for performance.
    However if I call size() on the cache handle I get the count of objects in the cache (ie the cluster). How can I get a count of objects in the near cache?
    Thanks
    Rich Carless

    H Rich,
    It may not be ideal, but I think you may be able to infer the size by using the HeapAnalyzer (http://download.oracle.com/docs/cd/E15357_01/coh.360/e15728/classcoherence_1_1lang_1_1_heap_analyzer.html) facility, specifically the "class" based HeapAnalyzer. Its Snapshot representation http://download.oracle.com/docs/cd/E15357_01/coh.360/e15728/classcoherence_1_1lang_1_1_class_based_heap_analyzer_1_1_snapshot.html provides a mapping between class name and ClassStats (http://download.oracle.com/docs/cd/E15357_01/coh.360/e15728/classcoherence_1_1lang_1_1_class_based_heap_analyzer_1_1_class_stats.html) which provides information on how many instances of a given class type are in memory. Note the reported counts are process wide but if your key or value type are distinct you may be able to infer your answer. I realize this is rather complex, my only other suggestion would be to just make some guesses on size and see how they effect performance.
    Mark
    Oracle Coherence

  • How can a text background color be saved?

    How can a text background color be saved in TextEdit?

    Care to share which OS you are using?

  • How can we find out the info object in a query ....?

    How can we find out the info object in a query is belongs to that particular info cube? If the query is built on a Multiprovider having 4 different info cubes.

    Hi,
    If you have restrictions at the infoprovider level in the RKF then it is coming from that particular infocube.
    Or go to the selection option in the multiprovider...her you can get the mappings of which key figure is populted from which infocube.
    For characteristics you will have to look for identification tab in the characteristics option.
    Thanks

  • Can't use all annotate actions in Preview-it's a PDF of a web screen shot. No highlight, underline, etc; can insert text, boxes, notes.

    I can't use all the annotate actions in Preview. It's web screen shot saved as a PDF. No highlight, underline, or strikethough text but I can insert text, boxes, notes. On other forums this problem was solved by saving as a PDF which I have done. Any other solutions?

    I don't think PDF is the way to do it, but if it was you'd need something like Adobe Acrobat Professional.
    >I'm updating the content and copy for a website and thought the easiest way would be marking up a PDF of the webpages including highlighting text to be removed, etc.
    As far as Text changes, I thing the actual Source would maybe be the way to go, but you could always turn the PDF into a jpg or such, then use a Graphics program to poit out things...

  • How can I text message from iPad to the galaxy note 2 phone ?

    How can I text message from iPad to the galaxy note 2 phone ?

    You can only iMessage iDevices.
    You need 3rd party apps to text your Galaxy Note.

  • How can I text non iPhone users now that I have imessage?

    How can I text non iPhone users now that I have imessage?

    "Settings > Messages > Send as SMS = "On""
    That is only for sending SMS if the iMessage user is not available via wifi or data.
    If sending text to non-iphone user, that setting does nothing. 

  • How can a click box support CTRL/SHIFT/ALT in Captivate?

    Hi all,
        How can a click box support CTRL/SHIFT/ALT in Captivate ?
        i.e., It can support click, double click, and right click, can it support "CTRL/SHIFT/ALT" when clicking?
        I need this feature because some user operation requires this.
        We're using Captivate 5.
        Could anybody give me some suggestion?  Tahnks.
    Joseph

    Although you can add Ctrl, Alt and Shift shortcuts to click boxes, they may or may not work, depending on the context where the presentation is running.
    The following comments relate to Captivate 5 presentations.
    If you publish the presentation as an exe file, Shift and Ctrl click boxes will work, but not Alt click boxes. Right-clicks won't be detected, either.
    If you publish as htm + swf for viewing in a browser, you can avoid the right-click problem, but which  shortcuts get detected depends on which browser is being used.
    I have tested Internet Explorer, Firefox, Chrome, Opera and Safari, with the following results:
    Alt: No browser passes Alt shortcuts through to the Flash player. If the Alt shortcut is meaningful to the browser itself, that's what happens (e.g., Alt+T will display the Tools menu in Internet Explorer; otherwise nothing happens). Note: Alt click boxes work when you test the presentation in an F8 preview window, but they don't work when the presentation has been published, so the F8 preview is misleading.
    Ctrl: All except Internet Explorer pass all Ctrl shortcuts to the Flash Player, so they are generally safe to use if you can ensure the user will not view the presentation in IE. IE keeps most Ctrl shortcuts for itself, but there are a few (e.g., Ctrl+G) that IE passes to Flash, so you can use Ctrl+G freely, knowing it will work in every browser. Ctrl+M and Ctrl+U are two others
    Shift: All, including Internet Explorer pass Shift shortcuts to the Flash Player. I have sometimes therefore set up a simulation with click boxes that look for a Shift+ shortcut key instead of Alt+, and included an apologetic prompt to tell the user to do so.
    It's a mess! It is essential to test your simulation in whatever environments it will be used in, and adapt it if some shortcut you really want to use doesn't work.
    Trevor

Maybe you are looking for