Floating objects arent supported in epub

hi , i faced a big problem , when i want to make a ibook ( epub ) with pages , when i add pictures to the book , give me this error

It says inline here:

Similar Messages

  • Opening a Word Document in Pages - floating objects not supported

    I am trying to open a Word document in pages. It is a table of labels with artwork and text. Pages tells me that floating objects inside cells are not supported and were deleted. I've tried making them inline with text in the original document and then opening in Pages, but then I can't make them floating again. Anyone know how to do this? I really don't want to have to buy a Microsoft product!

    Don't buy a M…soft product, use the free openOffice or the free neoOffice.
    Yvan KOENIG (VALLAURIS, France) samedi 18 décembre 2010 18:09:50

  • Centered images float left when exporting to epub - images don't stay centered

    Hi,
    I have created an ebook with from the template apple instructs to use (http://images.apple.com/support/pages/docs/ePub_Best_Practices_EN.zip)
    and i've added some images on several pages. they are all centered and set to inline (as epub can't handle floating objects/images)
    but when i export to epub almost all images appear floating left in the epub file except for a few images.
    i can't figure out why or how do i keep them centered. i've tried selecting the rows below and above with the one the image is on and centering the text. i've tried adding the "object causes wrap" and chose the one that centeres the image. nothing works.
    any advice would be great.
    Thanks
    J

    Hi Steph,
    That worked for some of the images but not for all of them.
    I found a strange solution that worked in conjunction with your solution.
    After you center the "text line" that it is on (or the one under it like you say), i mark the image and in the sidebar in which you choose the type of line/text (like chapter title or sub title etc') and you make the image or image line as a a chapter title or subtitle. prefprebly subtitle as to not mess with the table of content.
    then when i exported to epub the images were finally centered. all of them.
    hope this helps if anyone else encounters that issue.
    Thanks for the added help.
    J

  • Finding floating objects

    Is there someway to find floating objects in a Pages 09 document?
    I am trying to export to an epub and Pages 09 tells me that floating objects cannot be exported and to convert them to inline. I have many figures in the document most with captions which I have produced by inserting a jpeg file, then a text box, grouping the jpeg file and text box, and putting the group inline. All figures show as an inline group when I select them. There don't appear to be any stray jpegs or text boxes floating around. Yet, I still get the export error message.

    The only thing I see when I do 2 is that in the Info menu floating objects gets selected. Nothing appears in the document window to indicate that it as found a floating object. When I do 2 on the page where the photos appear in the document window but do not appear in the epub, I see nothing.
    Making master objects selectable and background objects selectable does not seem to change anything in the document. Making background objects selectable does set the radio button in the Info window.

  • "Deep data objects not supported" when writing into a file

    Hello everybody,
    I am having some issues about a program that i made which puts the content of any table in a file that i created.
    The problem is when my table (transparent table) has a deep data type in it (example : a string field, so with undefined length).
    Here is my code :
      DATA : lt_gentable TYPE REF TO data.
      DATA : ls_gentable TYPE REF TO data.
      FIELD-SYMBOLS : <ft_lines> TYPE STANDARD TABLE.
      FIELD-SYMBOLS : <fs_line> TYPE ANY.
      CREATE DATA lt_gentable TYPE TABLE OF (p_tab).
      CREATE DATA ls_gentable TYPE (p_tab).
      "creation of links
      ASSIGN ls_gentable->* TO <fs_line>.
      ASSIGN lt_gentable->* TO <ft_lines>.
      DATA : l_fname     TYPE char80.
      CONCATENATE '\dir\dir2\' l_fname_log INTO l_fname.
      OPEN DATASET l_fname FOR OUTPUT IN BINARY MODE.
      OPEN CURSOR WITH HOLD l_c FOR SELECT * FROM (p_tab).
      DO.
        FETCH NEXT CURSOR l_c INTO TABLE <ft_lines> PACKAGE SIZE p_size.
        IF sy-subrc = 0.
          LOOP AT <ft_lines> INTO <fs_line>.
            TRANSFER <fs_line> TO l_fname.   <=====> GOES INTO DUMP BECAUSE MY TABLE (p_tab) has a string field
          ENDLOOP.
          CLEAR <ft_lines>.
        ELSE.
          CLOSE CURSOR l_c.
          EXIT.
        ENDIF.
      ENDDO.
      CLOSE DATASET l_fname.
    Here is the message i am getting :
    At the statement
       "TRANSFER f TO ..."
    no deep data objects are supported at the a
    for strings.
    Elementary deep data types are internal tabl
    data object) references and strings (STRING,
    General deep data objects are elementary dee
    that contain deep data objects.
    In this particular case, the operand "f" has
    internal identification "v".
      List of internal ABAP types:
      C    Text (Character)
      N    Numerical text
      D    Date (YYYYMMDD)
      T    Time (HHMMSS)
      X    Hexadecimal
      I    Integer
      P    Packed number
      F    Floating point number
      h    Internal table
      r    Object reference
      l    Data reference
      g    String of type C
      y    String of type X
      s    2-byte integer with plus/minus sign
      b    1-byte integer without plus/minus sig
      u    Structure (flat structure)
      v    Structure (deep structure)
    Can you help me to go through this issue ?
    Any kind of help would be appreciated.
    Christian

    Sandra is correct I agree with him,
    TRANSFER dobj TO dset [LENGTH len]
                          [NO END OF LINE].
    dobj must be character-type . Use String.
    Please read the F1 help for the TRANSFER Statement and also please check the example
    In your case assign the <fs> to Casting File asfollows
    DATA: file TYPE string VALUE `flights.dat`,
          wa TYPE spfli.
    FIELD-SYMBOLS TYPE x.
      ASSIGN wa TO CASTING.
      TRANSFER TO file.
    Hope this helps...

  • Assigning a new value to Float objects

    Hi,
    With BigDecimals, you can assign a value without explicitly creating a new object like this:
    BigDecimal b = new BigDecimal(5.23f);
    b = BigDecimal.valueOf(625, 2);
    As far as I can see, the only ways of doing this with Float is:
    Float f = new Float(5.23f);
    f = new Float(6,25f);
    //OR:
    f = Float.valueOf("6.25");
    Are there any other ways? Which is most efficient?
    Cheers,
    Rewbs.

    Hi,
    With BigDecimals, you can assign a value without
    explicitly creating a new object like this:
    BigDecimal b = new BigDecimal(5.23f);
    b = BigDecimal.valueOf(625, 2);BigDecimal.valueOf:
    "Translates a long value into a BigDecimal with a scale of zero. This 'static factory method' is provided in preference to a (long) constructor because it allows for reuse of frequently used BigDecimals."
    "frequently used BigDecimals" seems to mean all values form -16 up to 16. For all other values a new BigDecimal object is created anyhow.
    >
    As far as I can see, the only ways of doing this with
    Float is:
    Float f = new Float(5.23f);
    f = new Float(6,25f);
    //OR:
    f = Float.valueOf("6.25");
    Are there any other ways? Which is most efficient?
    No there are no other ways, and the first is definitely the most efficient one. The constructor does no more than creating a new object and assigning the value to it's value field. The other method involves parsing the string, check whether it is a valid representation of a float, ... , and then create a new Float object.

  • Inline and floating objects

    I have imported some images as floating objects and now I want to change them into inline objects. I have selected the object, but I can not get them to change. I have tried the menu bar button as well as the inspector, but nothing works.

    This is context sensitive. What type of document is it? Page Layout or Word Processing? In a Text Box?
    Jerry

  • Floating Objects a la Framemaker (CS4ME Win7bit64)

    Hello,
    I'm working on a book with hundreds of anchored objects that are pictures of varying sizes.
    In Framemaker and LaTex there is a feature called "floating objects." This will take your anchored objects and place them in the nearest vacant top-of-page slot available. Meanwhile, the regular main text continues flowing where the anchored object was, eliminating ugly white gaps.
    Since this feature does not exist in InDesign, what do people do in such cases?
    The manual workaround is to turn the graphics into regular objects (not anchored objects), and paste them where necessary. This is going to be very tedious, and extremely inflexible if there are any late edits.
    Are there any clever workarounds in InDesign? Or scripts or plugins that help in such a situation?
    Thanks for any tips,
    Ariel

    Any tips and suggestions would be welcome! We're talking a book full of pictures (1 or 2 a page). The pictures should ideally sit at the top of the pages, as near as possible to their first reference in the main text. I'm trying to keep things as flexible as possible, so that the inevitable future edits will not entail manually repositioning each graphic.
    Thoughts, tips, suggestions, scripts & plugins all welcome!
    Thanks,
    Ariel
    Stars and points will be liberally provided to all!

  • HOW can I reduce space at top/bottom of inline or floating objects in text?

    To fit space horizontally (left and right) works fine, but vertically (top and bottom of object) does not do much to match (text is 10-on-11pt, object abt. 2 x 1 ins).

    An AppleWorks trick that may work in Pages as well:
    Start by setting the original object to NOT cause text to wrap around it.
    Create a second floating object the same width as the object you want text to appear to wrap. Make the second object the same width as the original (or very slightly narrower), and somewhat shorter vertically than the original. Place the new object on top of the original with their centers aligned both vertically and horizontally. Adjust the object's size until the text wraps around the underlying original with the clearance you want. When the adjustment is completed, Go Arrange > Send Back and repeat until the new object is behind the original.
    Optional alternate last step: Use the Inspector to set the new objects Opacity to zero percent.
    Regards,
    Barry

  • Free cd/dvd burner for mac os 10.7 - the version i have is roxio toast but in os10.7.5 when i try to open app - it said  can't open app because powerpc apps arent supported ?

    - the version i have is roxio toast but in os10.7.5 when i try to open app - it said  can't open app because powerpc apps arent supported ?
    is there a free app download to burn cd/dvd for os10.7?

    Depending on what type of CD/DVD you intend to burn, you may not need any 3rd party applications:
    - To burn data CDs or DVDs simply insert a blank disc, drag files to the empty FInder window that represents the disc, then click the burn button (I think t appears near the top of the finder window).
    - To burn music CDs just use iTunes
    - To create disk images from a CD or DVD use Disk Utility.  To burn .iso or .cdr images to disc use Disk Utility.
    About the only type of disc burning that you may need a 3rd party application for is to create a DVD movie (iDVD used to do this but no longer a supported app).  I haven't ever needed anything outside of the built-in capabilities of OS X when it comes to burnig CD or DVD media.  One suggestion is to make sure to remove all of the Roxio software so that it doesn't interfere with the built-in OS X capabilities.
    Hope this heps.

  • Scripting Error: Line 25 Object doesnot support this property or method

    Hi,
    Environment :
    BS Version: 11i(11.5.9)
    Component: Web ADI
    Descripiton: When trying to upload journals through Web ADI we are getting the below error.
    "Scripting Error: Line 25 Object doesnot support this property or method"
    Please help on this issue.
    Thanks,
    Arun Babu R

    Hi hsawwan,
    Thanks for your reply.Actually after working on it we found that is the browser issue. The issue was resolved.
    ThanQ,
    Arun Babu R

  • What are the objects that support documentation?

    What are the objects that support documentation?

    Hi
    Master data is data that remains unchanged over a long period of time. Master data contains information that is always needed in the same way. Characteristics can bear master data in BW. With master data you are dealing with attributes, texts or hierarchies.
    If characteristics have attributes, texts, or hierarchies at their disposal then we speak of master data-bearing characteristics.
    Few types of Master Data
    1) The master data of a cost center contains the name, the person responsible, the relevant hierarchy area, and so on.
    2) The master data of a supplier contains the name, address, and bank details.
    3) The master data of a user in the SAP system contains his/her access authorizations to the system, the standard printer, start transaction, and so on.
    Use
    When you create a characteristic InfoObject, it is possible to assign attributes, texts, hierarchies, or a combination of this master data to the characteristic. If a characteristic bears master data, you can edit it in BW in master data maintenance.
    Master data for a characteristic is uploaded into BW using an InfoSource with direct updating.
    You can also update characteristics with master data flexibly. In this case the InfoObject becomes the data target or InfoProvider. However, you must explicitly declare the InfoObject in the InfoObject maintenance to be the InfoProvider.
    See also InfoSources with Flexible Updating.
    Learn more @
    http://help.sap.com/saphelp_nw04/helpdata/EN/28/4c1738da41e57ee10000009b38f842/frameset.htm
    Regards
    AB

  • What are the objects that support variables?

    What are the objects that support variables?

    Using Variables: The Variable Wizard and the Variable Editor
    Definition
    Variables are parameters of a query that you defined in the Query Designer and that are filled with values when you execute the query or Web application. They serve as a store for characteristic values, hierarchies, hierarchy nodes, texts and formula elements, and can be processed in different ways.
    The processing type determines how a variable is filled with a value for the runtime of the query or Web application.
    There are different types of variables depending on the object for which you want to define variables. These types specify where you can use the variables.
    Variables are reusable objects. This means that when you define a variable for a query in the Query Designer, this variable can be used in all other queries. Variables are not dependent on the InfoProvider, only on the InfoObject. A variable that you define for an InfoObject is available in all InfoProviders that use this InfoObject.
    Use
    Variables enable you to customize queries flexibly (parameterize the query) possible. If you use variables in the Query Designer, do not select any fixed characteristic values, hierarchies, hierarchy nodes, texts, or formula elements. Instead, set up variables as place holders. These are then filled with values when the query is running (when you insert the query into a workbook, when you refresh the workbook or when you execute the query on the Web. You can use one query definition as the foundation for many different queries if you use variables.
    You want to create one query for all the people responsible for customer groups, who each only evaluate the data for one customer group. In the Query Designer, you insert a variable for the characteristic u2018customer groupu2019. Just before the query is executed, decide for which customer group(s) you want the query to apply to.
    There are two tools in the Query Designer for designing and changing variables.
    The variable wizard takes you step-by-step through the process of defining a variable. Each individual step is context-sensitive and is adjusted according to the combination of variable and processing types used. This means that the variable wizard only offers the selection options that are permitted for that combination of variable and processing types. For more information, see Defining Variables with the Variable Wizard.
    The variable editor dialog box offers all of the selection options for changing an existing variable. The individual fields in the dialog box show the settings affected in the variable. You can change these settings here. If you want to make the changes using a step-by-step process with explanatory texts, you can jump to the variable wizard using . For more information, see Changing Variables in the Variable Editor.
    Integration
    The variable wizard and the variable editor are functions in the Query Designer and are context-sensitive.
    In principle, the two dialog boxes appear wherever you can enter constants (that is, values) in input fields. One of these input fields is the Entry of Variables checkbox.  If you select this option, the following options for using a variable appear, instead of a fixed value:
    ·        The variables that are available appear in the dropdown box for the input field. You can select a variable from the dropdown box.
    ·        The symbol  Change Variable appears next to the Entry of Variables checkbox. You can change the variable using  . The Variable Editor dialog box appears.
    ·        The symbol  New Variable appears next to the Entry of Variables checkbox. Choose  if you want to create a new variable. The Variable Wizard dialog box appears.
    By way of an example, when defining conditions for the value limit of the condition, you can not only enter fixed values but also formula variables. Mark the Entry of Variables checkbox and you can then use the options described above. The settings are context-sensitive so that the formula variables that only those formula variables that are available appear in the dropdown box.  The variable wizard is set up automatically in the same way for entering formula variables.
    You can also get to the variable wizard and the variable editor from the context menu of those objects for whose values you can define variable placeholders. From the context menu, choose New Variable. The SAP BW Variables Wizard appears. In the context menu for variables that have already been defined, you can choose Edit. The SAP BW Variables Editor appears.
    In the InfoProvider objects dialog box, you select a characteristic (for example, Order) and from the context menu, choose New Variable. You reach the variable wizard, which is already set up for you to enter a characteristic value variable.
    In the InfoProvider objects dialog box, you select a characteristic value variable and from the context menu, choose Edit. You reach the variable editor where you see all of the settings for the variable. You can make changes to the variables here.
    Variable Types
    Definition
    The type of variable being used. This determines the object that the variable represents as a placeholder for a concrete value.
    Structure
    There are different types of variables depending on the object for which you want to define variables. These types specify where you can use the variables.
    ·        Characteristic Value Variables
    Characteristic value variables represent characteristic values and can be used wherever characteristic values are used.
    If you restrict characteristics to specific characteristic values, you can also use characteristic value variables. See, Restricting Characteristics.
    ·        Hierarchy Variables
    Hierarchy variables represent hierarchies and can be used wherever hierarchies can be selected.
    If you restrict characteristics to specific hierarchies or select presentation hierarchies, you can also use hierarchy variables. See Selecting Hierarchies
    ·        Hierarchy Node Variables
    Hierarchy node variables represent a node in a hierarchy and can be used wherever hierarchy nodes are used.
    If you restrict characteristics to specific hierarchy nodes, you can also use hierarchy node variables. See Restricting Characteristics: Hierarchies
    ·        Text Variables
    Text variables represent a text and can be used in descriptions of queries, calculated key figures and structural components.
    You can use text variables in the description of calculated key figures, restricted key figures, selections and formulas when you create them. See Defining Calculated Key Figures, Defining Restricted Key Figures, Defining Selections, and Defining Formulas.
    You can change the descriptions in the properties dialog box. See Query Properties Calculated Key Figure Properties Restricted Key Figure Properties, and Selection/Formula Properties.
    ·        Formula Variables
    Formula variables represent numerical values and can be used in formulas. See Defining Formulas.
    In addition, numerical values are used for selecting exceptions and conditions and you can also use formula variables here. See Defining Exceptions and Defining Conditions
    You can use a formula variable for the interest rate in order to process the current interest rate, after you have executed the query or Web application.
    http://help.sap.com/saphelpnw04/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm_

  • Value help based on this object not supported.

    Hi,
    I am new to VC, i want to create search help for a field create by own. it is "z_date" and restricted by "0REDAY1".
    when i click on "Add Value Help" and proceed further it gives me an error stating " value help based on this object is not supported"
    Thnaks,
    Sonali.

    Hello
                  I believe the common mistake made here is that you are trying to create value help under the "VARIABLE" drop down . you can only create value help on the "CHARATERICTICS" .
    so to solve you problem please identify the INFOOBJECT associated with that variable and create value help on that.
    if this doesnt help  please let me know

  • Which Hebrew fonts are supported in ePub?

    During several weeks I have been trying to find out an intelligible list of Hebrew fonts available for use in epub 2/3.
    Still, no one "special" font from Israel fontmaker vendors has not been embedded successfully. Only simple system fonts like Arial, Adobe Hebrew and Times fonts are looking good. But that's pretty ugly font types, and it's very very narrow list. Come on, how can I design Hebrew books in more or less respectable way?
    1. Which system fonts can be used for epub design?
    2. What's the problem of embedding third-party fonts (good ones, not free) into epub? (css describes them well, but it has never been visualised in epub as required being replaced by default fonts)
    Thank,

    This answer was posted by Ariel in the wrong thread. I mentioned to Ariel so he could post it here but I guess he didn't get the message. So I'm just copy/pasting it for you:
    [Ariel] Jul 6, 2014 8:48 AM (in response to Pam Bourdon)
    Just tested, and had no difficulty embedding Fontbit Rokoko into an
    ePub. It displayed fine in Readium. Adobe Digital Editions does not
    support RTL, so the text was back to front, but there also the font
    itself was fine.
    I haven't tested in iBooks.
    So it seems to me that InDesign has no problem embedding Hebrew fonts in
    ePubs -- the problem is more likely to be on the part of the ePub
    reader, which is not displaying them properly.
    Converting Images to CMYK for Print Publication

Maybe you are looking for

  • Slow Web Export in Aperture 1.5.1

    I feel a little crazy for asking this, but it seems like web exports have gotten significantly slower since I upgraded to Aperture 1.5.1. I cannot find anything on my machine that would cause this. Has anyone else experienced this? -Fletch PowerMac G

  • All iphone ring at once on the same iTunes account

    How do I stop other phones on the same iTunes account from ringing when only one actual number was called?

  • Problem with PDF viewing Colors not showing correctly (or black and white)

    My iMac and my Macbook are both not showing the pictures in a PDF correctly. My collegue who uses a Macbook has no issues. Im using version 10.7.5 on my macs. I have tried using the standard ' Preview' as wel as two different free PDF vieuwers from t

  • How to tell if Yosemite is clean install or upgrade from previous version

    My brand new MacBook Pro arrived last week, with Yosemite already installed on it. Having issues with WiFi (after coming out of sleep mode, mbp keeps its self-assigned address rather than getting an address though DHCP or using its old address), I wa

  • Partial sync?

    Is it possible to not sync photos. I lost my hard drive and since I hadn't backed up in awhile, I only recovered about 3/4 of my pictures on the computer. I have them all on my ipad. I'm afraid that when I sync it the next time, I'll lose the extra p