How to change "Object Causes Wrap" and a "Picture Frame" as a default properties when importing images in Autor

When I place images in iBook Author, they are automatically assigned these properties: "Object Causes Wrap" and a "Picture Frame" stroke.
I don't want that and couldn't find where can I change it in the Preferences. Anyone has an idea?

I've sent a feature request for a new version of Author:
When I place images in iBook Author, they are automatically assigned these properties: "Object Causes Wrap" and a "Picture Frame" stroke.
It would be great if I could be able to change it in the Preferences to "No wrap" and "No Frame" so I don't have to manually adjust every single image of my book - there are lots of them.
It would be really nice if Author implements "Layer's" concept like almost all graphic programs like Photoshop, Flash, Illustrator, etc.

Similar Messages

  • How to change Object Stroke Color and fill Color?

    Hi to all
    i need to change fillcolor & stroke color of Object
    here i wrote code that tried but it is not
    myDoc = app.activeDocument;
    var dd = myDoc.colors.add({name:"PANTONE Black C", model:ColorModel.spot, colorValue:[0, 13, 49, 98]});
    app.findObjectPreferences= NothingEnum.NOTHING;
      app.changeObjectPreferences = NothingEnum.NOTHING;
      app.findObjectPreferences.fillColor = "Black";
      var myI1 = myDoc.findObject();   
       app.changeObjectPreferences.fillColor = "PANTONE Black C // here error throwing
        app.changeObject ();
    app.findObjectPreferences= NothingEnum.NOTHING;
      app.changeObjectPreferences = NothingEnum.NOTHING;
      app.findObjectPreferences.strokeColor = "Black";
      var myI2 = myDoc.findObject();   
       app.changeObjectPreferences.strokeColor = "PANTONE Black C // here error throwing
        app.changeObject ();
    Error is :  Invalid value for set property 'fillcolor' ,Expected Swatch, String or NothingEnum enumerator, but received "PANTONE Black C";
    pls help me...
    Thanks
    Thangaraj

    Hi scriptor,
    how to create find change query for object search
    pls tell me with script.
    here i attached one jpg file screen shot to understand my need
    Thanks
    Thangaraj

  • When importing images in Pages, how do I set the default object placement to "stay on page" and "no text wrap"?

    when importing images in Pages, how do I set the default object placement to "stay on page" and "no text wrap"?

    Then use a Layout template.
    I am a designer and I use Word Processing templates with layout breaks and all the other tools available because Layout templates are just WP templates with a lot of options removed.
    Pages is not Indesign, but then Indesign is not Pages, …and Pages 5 is not Pages '09.
    Unless your flyers are for the Web, why are you using Pages at all?
    I am curious, what does your post have to do with the O.P.'s question? …and why are you posting it here?
    Peter

  • How do I change object layer options and select visible psd layers for an image?

    Hello
    I have a plugin that replaces images in an indeisgn document. When a user has selected to show one object layer in a psd but not another layer, Indesign looses this information when I replace the old image.
    I can store the layers that are visisble before I replace the image, but I have not been able to change the visibility of tha layers back in a correct way.
    When the image is replaced, all the layers becomes visible, but if I open the "Object layers options" dialog, only the layers I want to be visible is marked as visible in the list. What I see in the dialog does not correspond with what is shown on the screen.
    I use the folowing code to store info about the visible layers:
    K2Vector<int32> PnlTrvUtils::GetGraphicLayer(UIDRef imageRef) {
        ErrorCode    result;
        K2Vector<int32> visibleLayers;
        InterfacePtr<IGraphicLayerInfo> iGraphicLayerInfo(imageRef,IID_IGRAPHICLAYERINFO);
        if ( iGraphicLayerInfo != 0 ) {
            if ( ! iGraphicLayerInfo->GetIsInitialized() ) {
                InterfacePtr<ICommand> iInitializeGraphicLayersCmd(CmdUtils::CreateCommand( kInitializeGraphicLayersCmdBoss ));
                if ( ! iInitializeGraphicLayersCmd ) {
                    result = kFailure;
                } else {
                    iInitializeGraphicLayersCmd->SetItemList( UIDList( imageRef ));
                    result = CmdUtils::ProcessCommand( iInitializeGraphicLayersCmd );
                    if ( result == kSuccess )
                        if ( ! iGraphicLayerInfo->GetIsInitialized() )
                            result = kFailure;
            int32    i;
            int32 iLayerCount = iGraphicLayerInfo->GetNumberLayers();
            for ( i = 0; i < iLayerCount; i++ ) {
                if (IGraphicLayerInfo::kVisibilityShowing ==iGraphicLayerInfo->GetNthLayerCurrentVisibility(i)) {
                    // CAlert::ErrorAlert("visible");
                    visibleLayers.push_back(i);
        return visibleLayers;
    And I use the folowing code to select the layers I want to be visisble:
    void PnlTrvUtils::SetVisibleGraphicLayer(UIDRef imageRef, K2Vector<int32> visibleLayers) {
        ErrorCode    result;   
        InterfacePtr<IGraphicLayerInfo> iGraphicLayerInfo(imageRef,IID_IGRAPHICLAYERINFO);
        if ( iGraphicLayerInfo != 0 ) {
            if ( ! iGraphicLayerInfo->GetIsInitialized() ) {
                InterfacePtr<ICommand> iInitializeGraphicLayersCmd(CmdUtils::CreateCommand( kInitializeGraphicLayersCmdBoss ));
                if ( ! iInitializeGraphicLayersCmd ) {
                    result = kFailure;
                } else {
                    iInitializeGraphicLayersCmd->SetItemList( UIDList( imageRef ));
                    result = CmdUtils::ProcessCommand( iInitializeGraphicLayersCmd );
                    if ( result == kSuccess )
                        if ( ! iGraphicLayerInfo->GetIsInitialized() )
                            result = kFailure;
            InterfacePtr<ICommand> setLayerCmd(CmdUtils::CreateCommand(kSetGraphicLayerInfoCmdBoss));
            if (setLayerCmd) {
                setLayerCmd->SetItemList(UIDList(imageRef));
                InterfacePtr<IGraphicLayerInfo> setLayerCmdLayerInfo(setLayerCmd, UseDefaultIID());
                // copy over the new settings
                setLayerCmdLayerInfo->Copy(iGraphicLayerInfo);
                int32    i;
                InterfacePtr<IGraphicLayerInfo> resetLayerInfo(setLayerCmdLayerInfo,IID_IGRAPHICLAYERINFO);
                if (resetLayerInfo) {
                    int32 iLayerCount = resetLayerInfo->GetNumberLayers();
                    for ( i = 0; i < iLayerCount; i++ ) {
                        bool16    visible = false;
                        for(int32 j = 0; j < visibleLayers.size(); j ++) {
                            if (i == visibleLayers[j]) {
                                visible = true;
                        if (visible) {
                            resetLayerInfo->SetNthLayerCurrentVisibility(i, IGraphicLayerInfo::kVisibilityShowing);
                        } else {
                            resetLayerInfo->SetNthLayerCurrentVisibility(i, IGraphicLayerInfo::kVisibilityHidden);
                    // clear out the flag
                    int32 currFlags = static_cast<int32>(setLayerCmdLayerInfo->GetGraphicLayerFlags());
                    currFlags &= ~IGraphicLayerInfo::kValidationFailed;
                    setLayerCmdLayerInfo->SetGraphicLayerFlags(static_cast<IGraphicLayerInfo::GraphicLayerFla gs>(currFlags));
                    // process the command
                    CmdUtils::ProcessCommand(setLayerCmd);

    Hello,
    Did you get this to work?
    Thanks.
    P.

  • Can Change Object Placement Wrap Default Settings?

    I use a lot of text and image boxes in Pages. I would like the default setting in the Wrap pane in the Inspector to be "Floating" and the check box to be unchecked for "Object Causes Wrap." Most of the time I have to open up the Inspector to change these settings for each my text and image boxes and it would be much easier to change the default setting.

    You can set default wrap for any object as well as many other settings. You need to create your own default template. Open the blank template & insert a table, click in it & choose the font, size, color, etc. you want in the fonts panel or format bar. You can do similar changes to inserted objects & text boxes. While you're at it resize the box if you want, set the amount of extra space in the wrap inspector, etc. Delete each text box, object & table after you've set them. Set up your document with the line spacing, margins, headers, etc. as you'd like. Redefine all of the paragraph & character styles to have your desired font. Now, save this document as a template & select that template as default in preferences. If you decide to make any changes to the template down the road, just Save As Template again with the same name & replace the previous version. All of your new documents will have these settings for inserted objects, images & tables. Unfortunately, the settings won't apply to any other templates or "foreign" documents you open with Pages.
    I don't know about setting the default to floating. When I drag & drop an object onto a Pages document it always is floating.
    About the only thing you can’t set a template to do is remember to show invisibles & the window position. It is possible to get a template to show invisibles when opened, if you want. Save this document as a document then, in the Finder, change the extension from .pages to .template & put it in your My Templates folder in (your account) > Library > Application Support > iWork > Pages > Templates > My Templates. Set up your document with the line spacing, margins, headers, etc. as you'd like. Redefine all of the paragraph & character styles to have your desired font.

  • Turn off Object Causes Wrap for in-line tables

    Is there a way to uncheck object causes wrap for inline tables? The option is there but it's grayed out.
    Or perhaps someone could suggest an alternative way to put text beside the table. Floating will not work because I want my tables to move with my text.
    My document is in Word Processing mode.

    I just tried this and it works for me. Put your cursor where you want your text and create another inline table. Make it one column by one row. Type your text in the single cell. Set the border color to white if you don’t want to see the “box.”
    Walt

  • How to change data source name and context root during deployment

    Hi,
    Env:
    WLS 10.1.3
    JDev 11.1.1.6
    Hudson
    I need to deploy two instances of my ADF application on the same development enviroment. We are using Hudson to deploy. My question is how to change data source name and application context root before second deployment.
    Kuba

    I don't believe there is an inbuilt facility to do this.
    Previously how I've done this is when checking files out using Hudson jovs, before the build I then use an Ant extension called XmlTask (http://www.oopsconsultancy.com/software/xmltask/) to modify the required XML files.
    Can I ask why you're doing this in the first place please? Multi-tenancy? 2 versions of the same app?
    CM.

  • How to change apps,applsys,applsyspub and alloracle in 11.5.10.2

    Hi,
    How to change apps,applsys,applsyspub and alloracle in 11.5.10.2.
    Thanks
    Siva

    siva,
    check
    Re: how to use FNDCPASS utility
    fadi

  • How to change Topic's Icon and show the Print Button

    Hi, currently i'm using robohelp html version 8. I have spent quite some time to figure out how to change topic's Icon and show the Print Button in my project. Anyone can help me on this? Btw, i using MX(template) to generate the output with FlashHelp Pro.
    Below is the screenshot for clearer clarification:
    Thanks.

    We would have told you if there was.
    Sorry but a downside of FlashHelp is that your customising options are limited.
    See www.grainge.org for RoboHelp and Authoring tips
    Follow me @petergrainge

  • HT201303 how to change a security question and answer

    how to change a security question and answer

    Sam ,
    I do have the same problem !!
    How to solve it ?
    Plz

  • My podcast has been approved, how do change my cover art and add an author?

    My podcast has been approved, how do change my cover art and add an author?  I would appreciate any help
    Thanks

    In whatever method you are using to create your podcast there should be a place where you originally placed the image or its URL, and you can just replace this with a new one (which needs to have a different filename from the original). Similarly there should be a place to enter your name so that it goes in the 'itunes:author' tag.

  • I'm in a bind... Over the years I have purchased a good amounts of apps. Some has hacked my apple I'd changed my security questions and was charging me money every month. When I went to cancel the purchases through my bank my account was disabled. Help me

    I'm in a bind... Over the years I have purchased a good amounts of apps. Some has hacked my apple I'd changed my security questions and was charging me money every month. When I went to cancel the purchases through my bank my account was disabled. Help me

    No I did not change the email that I used to create the account.... Someone made new security questions and when I went to change them I had to verify and it sent the answers to an email address... Get this though... The email address that it sent the answers too waste letters in the middle were starred out like this t*****@aol.com. That's not my email. Why did it not send the questions to my apple ID email account right? if you know how to change the email to a new one that would be awesome if you could share that info with me.

  • How can I add the status and profile picture features on an account that was created before iOS 5?

    How can I add the status and profile picture features on an account that was created before iOS 5?

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • I am using Photoshop CC2014 15.00.  In the pop-up menu for the Fill command there is a place for Scripted patterns.  Within that part, the tree and the picture frame are grayed. Why?   I've seen demonstrations on how to use the feature but mine doesn't wo

    I am using Photoshop CC2014 15.00.  In the pop-up menu for the Fill command there is a place for Scripted patterns.  Within that part, the tree and the picture frame are grayed.
    Why?   I've seen demonstrations on how to use the feature but mine doesn't work.  I checked the updates and I have the current version.
    Thanks.      LM

    I am running CC 2014.2.1 and I've updated to Yosemite. Not seeing tree or frame as an option in the menu. Coworker still on Mavericks has it.

  • When importing images into LR5 on my laptop, the photos all have a wide yellow streak through them. This only happens on the laptop; I can import the images onto my desktop LR and there isn't the streak of colour.   Can someone help?

    When importing images into LR5 on my laptop, the photos all have a wide yellow streak through them. This only happens on the laptop; I can import the images onto my desktop LR and there isn't the streak of colour.   Can someone help?
    This is happening even with photos that were taken on another camera, not just mine.  My daughter told me that the laptop recently fell.  The yellow streak is not anywhere else on the laptop, just on the photos in LR.

    I have had this problem on my desktop.  I have been attempting to reproduce it where it can be debugged. Here are some observations/facts in my environment--no conclusions:
    1. I do not import from camera or memory stick directly into LR.  I copy all images (using Explorer) from camera to two different locations (backup location first); and then my working area. In both cases, after files are copied I mark them Read-only.
    2. Poor observation, but in any event: the issue has only occurred when I do a large number of images. Its a poor observation as I have no exact number.  I suspect when I do less than 50 always works well every time.  However, I have also done some very large imports without issue.
    3. Error only occurs with my RAW images--for me that's NEF.  I have multiple cameras--those that only capture jpg images have never had an issue in LR.
    4. Even if the file is marked Read Only issues can still occur.  I then remove the image from the disk using LR -- and then manually (Explorer) copy in my backup image -- re import again and all is well.  I think one time I exited LR and replaced the bad file with a backup and restarted LR and all was well again.
    5. When it occurs I have performed a HASH value on the broken file and on the backed up file to determine if the file contents has changed--and each time the file contents has changed.
    6. I have had this occur immediately after import, but most often it occurs like this... import large number of images; Make changes in Development Module on random image, export jpg of changes--exit LR. Open up LR and file is corrupted.
    7. I have had this issue on multiple USB drives ( okay just 2 different drives have been tested ).
    What next--fire up Process Monitor and monitor the system (specifically LR) to see if it reports any file open for write access when this occurs.  So, far I have not had process monitor actually running when it occurs--one of these days.

Maybe you are looking for

  • Getting error as 'Error 401 - unauthorized'

    Hi , I have a af:goImageLink on a .jsff on clicking on which I am supposed to open a screen with print window . Code in .jsff is <af:goImageLink text="Print Current Data" targetFrame="_blank" icon="/theme/img/print.png" partialTriggers="Search" disab

  • Password Protect Specific pages

    Is it at all possible to password protect certain pages. For example, I am a videographer and when my clients want to see their videos progress I would like them to be able to just go to my website, then be able to put in a password or something of t

  • Photoshop cs6 trial download

    Hi, I will like to ask how to download photoshop cs6 on mac 10.6.8 that has intel core duo, and does it support 64bit and is there alternatives for people who are still using intel core duo computers to use photoshop cs6 thank you@

  • Nokia e7 with flickering screen

    hey hay anyone experienced dc problem, i bought nokia E7 last week and today is just driving me nuts. the nuts have been flieckering since morning...i cant make call, read messages or anything it would just turn blank...

  • Desktop Manager Failing to Back up muitiple databases

    Hi, I have a blackberry that i am trying to back up. It fails on Automatic backup. I watch to see what database it was failing on. The database was phone options. I tried to remove this from the list of databases in Advance but it would not removed.