Define a default placement option

Hi everyone, I've created a dropdown in Flash Catalyst that needs to have its images updated once a week. That's easy enough to do because there's a handy option in Flash Catalyst to "edit images in Illustrator"
Once in Illustrator, I can then simply relink those images and save and it updates in Catalyst. Happy days.
However, the relinked images have to maintain the same dimensions as the image they are replacing, otherwise slightly different sized thumbnails will give a really horrid look overall, and will also defeat the beauty of relinking files.
In the Cs3 and Cs4 versions of illustrator there was a tick-box in the preferences which allowed you 'to preserve re-linked image dimensions' or something similar.
Because Adobe like to keep us on our toes, they have swapped it all around in Cs5, and this lovely, logical tick box has vanished! The nearest function I can find in the Cs5 version of Illustrator to the 'preserve re-linked image dimensions' is an option called 'image placement' which is located in the "links" window's flyout menu.
If I click on 'image placement' and select 'preserve bounds' the replacement image has the same dimensions as before, and that is what I want. Even if I relink to an image the size of the sun, it constrains it down to a nice 15ptx23pt thumbnail type image.
However, I have to set the 'image placement' to 'preserve bounds' whenever I relink for EVERY SINGLE IMAGE. Even though there's over a hundred images (it's quite a complicated drop down) I could live with switching every single image to 'preserve bounds' when relinked. Sadly, however, these 'image placement' settings get wiped every time I save what I've done in illlustrator and open up again to update from flash catalyst.
Honestly ridiculous, if Catalyst could be integrated with cs3 or cs2 I'd downgrade like a shot. But I can't (or can I?) so I'm stuck with the cs5 Illustrator, which is bling but can't do a thing. Well, not the ONE thing I want it to do anyway.
I know I've rambled. What I'm asking is: "How can I define a placement option, and set it to preserve bounds as a default?"

"In the Cs3 and Cs4 versions of illustrator there was a tick-box in the preferences which allowed you 'to preserve re-linked image dimensions' or something similar."
Are you sure that this was in Illustrator?
I rarely (almost never) used AI CS3 and 4, but I don't think that option was there. It's in InDesign, though.
Regarding the Image Placement options inside the Links palette: That always was kind of a poorly conceived effort which has never been really improved (I think it's there since AI 9 or 10).
Good luck.

Similar Messages

  • About the default placement option, can I change the default placement option?

    Hi everybody, I'm new here.
    As the title, can I change the default placement option?
    The default placement option is works box, and I wanna change the default option to media box.
    I don't wanna change it everytime when I placement a file.
    Does anybody know how to change the default placement option?
    Many thanks.

    I have the same question. 1 pc, 1 itunes, 2 outlook accounts. I want to sync my calender and contacts! You have a solution yet?

  • I have bought a Macbook Pro Retina, and the iPhoto which comes with it, has a different iPhoto Book menu.  I cannot see how to put text at the bottom of the pages of photographs, instead of the default place in the middle.  Is there a way to do this?

    I have bought a Macbook Pro Retina, and the iPhoto which comes with it, has a different iPhoto Book menu.  I cannot see how to put text at the bottom of the pages of photographs, instead of the default place in the middle.  Is there a way to do this?

    There are different templates for iPhoto books and they differ from version of iPhoto to iPhoto, so explore the other options.

  • Default Collection Option Set

    I currently use multiple collectors that I have created to scan different locations based upon IP Ranges. I have created them so that the collection is spread out over a one week period to minimize network activity.
    I have been directed to change my collection so that it happens every Sunday. All machines in the company are now "woken up" every Sunday to receive any necessary patches. I will be changing my collection schedule so that my inventories take place on Sunday also but I have a question about the Default Collection Option Set.
    Would it be better to make use of the Default Collection Option Set or should I create a separate Collection Set for this task? Also since I have only targeted specific IP Ranges in the past what should my settings be to ensure that I am looking at the entire network?
    I also do not remember - when they wake up the systems on the network will the machines inventory from the Login Page or do they actually need to be logged onto the network to complete the inventory.

    Originally Posted by DaryRo
    Would it be better to make use of the Default Collection Option Set or should I create a separate Collection Set for this task?
    I always create my own option sets and give them meaningful titles to make it a little easier to track what is going on. There is really no need (or advantage) to using the Default Option Set.
    Originally Posted by DaryRo
    Also since I have only targeted specific IP Ranges in the past what should my settings be to ensure that I am looking at the entire network?
    If you really want that one option set to collect from all clients then just the default settings in a new option set will work as long as you select a valid schedule on the first tab when creating the option set.
    Make sure that any new option set you create that you wish to use is actually associated to collection servers. Look at the properties of the collection servers and if they are set to inherit standard option sets then add the new option set in the Collection Server, Domain properties, if they are not set to inherit then add the new option set to each collection server.

  • Define the default series of monthly invoice in document numbering first

    Hi , ALL,
    When AR Monthly Invoice  is started, the message is displayed.
    " define the default series of monthly invoice in document numbering first - 80061-6 ."
    I checked the Document Numbering-Setup , Of course, it defines it.
    And also checked the Series-Setup. It's OK , I think.
    Could you tell me,  What should I check ?
    Best regards,
    Takahiro

    Hi Takahiro........
    Welcome to SAP Business One Forum.........
    Please try this. Go to Administration> System Initialization> Document Numbering.
    Open the AR Invoice Series and when you set any of the series default it asks for certain options.
    Are you aware about that Options?
    Please select right one and then try to add.
    Else select for all users and then try.....
    Regards,
    Rahul

  • Default radio option (for Rating selection) from HAP_MAIN_DOCUMENT

    We have a requirement to remove 'select a value' default radio option (for Rating selection) from HAP_MAIN_DOCUMENT. Can you please let me know is there any BADIs available to acheive this requirement ?

    The normal way to do this is to set the option to "commit selected value immediately" and to place the code in the Keystroke event of the combo box. And instead of the first two lines that you have, you'd use something like:
    if (!event.willCommit && event.changeEx !== "none") {
        // Your other code goes here
    The changeEx property will return the export value, if any, of the selected item.

  • How can I pre-define the default selection in a SelectOneChoice?

    How can I pre-define the default selection in a SelectOneChoice?
    (1) Here's my JSF-code:
    <af:selectOneChoice label="#{res['usercreate.input.sex']}"
    value="#{bindings.Sex.inputValue}"
    binding="#{SelectListBean.sexlist}"
    readOnly="false" autoSubmit="false">
    <af:selectItem label="#{res['data.sex.women']}" value="1"/>
    <af:selectItem label="#{res['data.sex.man']}" value="2"/>
    </af:selectOneChoice>
    (2): manged bean: to set the default value to be the first in the list, my managed bean as follows:
    import oracle.adf.view.faces.component.core.input.CoreSelectOneChoice;
    public class MBSListBean {
    private CoreSelectOneChoice sexlist;
    public MBSListBean() {
    public void setSexlist(CoreSelectOneChoice sexlist) {
    this.sexlist = sexlist;
    this.sexlist.setValue(1);
    public CoreSelectOneChoice getSexlist() {
    return sexlist;
    (3) when i launch the page, it often gives me such warnings:
    WARNUNG: Could not find selected item matching value "1" in CoreSelectOneChoice[UIXEditableFacesBeanImpl, id=_id7]
    how to solve the problem ?
    Thanks,
    wzzdx

    You could also set the default on your entity or viewobject, in the properties of your attribute.

  • HOW to define the default language in the portal

    Normally the portal take the language of the internet explorer for user.
    I want to define a default language for all portal users in our portal, so that every user get the same default language.
    Can anyone tell me how to do this?
    We are on EP6 SP2.
    Thanks Sybille

    Hi Olivier,
    thank you for the response.
    I added
    request.mandatorylanguage=de
    request.mandatorycountry=de
    to
    request.defaultlanguage=de
    request.defaultcountry=de
    Now, I get the default language german, but when I want to changed the portal language over personalize to English, the result is nevertheless the german language.
    Can you help me again? Where can I get a documentation about this?
    I want a default language: German. Also when the Internet Explorer has a different language. But when the user select manual one of the permitted languages (English and German) over the personalize button, the language should change to the selected language. Is it possible?
    Bye Sybille

  • How to disable updates and hide set as default browser option in firefox 31.0 for many users,like changing the setttings in any file

    Hi,
    I am trying to disable updates, set as default browser option and import settings from other browers permanently for many users for firefox 31.0.
    can you please help me with that. I know settings are going to prefs.js file in user profile. How can make this permanent for many users.

    Hi gaurav3012,
    Permanent change would be locking preferences: [http://kb.mozillazine.org/Locking_preferences]
    However importing many users profiles to different computers may require a new profile for each user.
    Currently there is an option to import bookmarks from other browsers, but not preferences.
    Update preferences can be read about here: [[Configuration Options for Updates]]
    Firefox ESR is also another version of Firefox that is meant for Enterprise environments [https://www.mozilla.org/en-US/firefox/organizations/] that mostly has their support on their mailing list.

  • How to define the default activity for an unbounded task flow?

    In the new "Fusion Developer’s Guide for Oracle Application Development Framework 11g Release 1" documentation at the bottom of page 14-3 it states "An unbounded task flow .... contains a default activity, an activity designated as the first to run in the unbounded task flow, because an unbounded task flow does not have a single point of entry."
    What I can't find is how to define the default activity in an unbounded task flow and where this is recorded? Can we set this via the task flow diagrammer, and which configuration file is it stored?
    I note the first time I run the application with an unbounded task flow a dialog asks me which of the activities in the adfc-config.xml file to make the default, but I can't find where this is recorded.
    Anybody have any ideas?
    Thanks,
    CM.

    Chris,
    In fact this information is nothing that belongs into the taskflow meta data because unbounded taskflow have more than one entry point and there is no notion of default. Its a tools setting (JDeveloper) we had before
    Frank
    Message was edited by:
    Frank Nimphius

  • How does one define a default style for a custom Flex component?

    How does one define a default style for a custom Flex component?
    hello
    I created a new set of Flex component library slib.swc (Flex 4.5). Would also like to have a default style. defaults.css file, making it the default style of the component library.
    Like flex the builder install directory of sdks \ 4.5.0 \ frameworks out \ libs directory has a spark.swc file, open with Winrar will see defaults.css this file. Defaults.css file defines the default style of the flex spark components.
    How can it be achieved?
    As follows
    slib.swc contains a CLabelEx components, and a defaults.css file
    defaults.css source file as follows:
    @ namespace s "library :/ / ns.adobe.com / flex / spark";
    @ namespace mx "library :/ / ns.adobe.com / flex / mx";
    @ namespace cn "http://os.slib.cn";
    cn | CLabelEx
            styBackgroundAlpha: 1;
            styBackgroundColor: # 569CC0;
            styBorderAlpha: 1;
            styBorderColor: # 569CC0;
            styBorderWeight: 1;
            styCornerRadius: 3;
    In slib.swc the application MyLabel.mxml of the source file as follows:
    <? xml version = "1.0" encoding = "utf-8"?>
    <s: Application, the xmlns: fx = "http://ns.adobe.com/mxml/2009
                               xmlns: s = "library :/ / ns.adobe.com / flex / spark"
                               xmlns: mx = "library :/ / ns.adobe.com / flex / mx"
                               xmlns: cn = "http://os.slib.cn
                               the minWidth = "955" The minHeight = "600">
            <fxeclarations>
            </ fxeclarations>
            <cn:CLabelEx x="67" y="112"/>
    </ s: Application>
    I hope CLabelEx default use cn | CLabelEx, style to display its appearance.
    I refer to above approach, but failed to achieve. Can you please re-Detailed
    Thanks!

    dj is right. Any Folder can be a picture folder.
    Create a root level folder and add it to your Pictures Library in Windows.  It will show up with all the scattered pictures from other programs. It can even be a different dirve if you like.  You  can even specify one to be the default save location for pictures in this dialog.
    Navigate to Pictures in your Libraries in Windows Explorer Right Click and select Properties.
    Message was edited by: Rikk Flohr forgot the instructions...

  • Is there a Paste in Place option for iBooks Author?

    Is there a paste in place option for iBooks Author like there is in Adobe InDesign? Thanks.

    InDesign's PIP means pasting at arbitrary coordinates.
    Not sure what that has to do with iBA, sorry, which isn't strictly canvas based.
    If you just want to clone items....that depends on the object. Best to experiment with your particular content, etc.
    Ken

  • How to have "black and white only" be the default print option

    Just installed a new printer and would like to set it up so that the default print option is black and white only. How do I do this?

    Can't find this anywhere. I'm brand new to Macs so I
    might need more detailed instructions.
    I have an HP Photosmart C6100 by the way.
    Not sure which post you are responding to since you replied to yourself
    Every printer is a little different so you may have to do some searching through the settings. I don't have an HP Photosmart C6100 here so I can't say for sure where the setting is for that printer.
    The closest thing I have to that model printer here is an HP OfficeJet 6310
    In that model you choose Paper Type/Quality
    In drop down menu under Color you select Gray Scale
    Then you can still save the preset as I described in my previous post.
    If the C6100 is different than that you may just have to search through option pages and explore the drop down selections.
    Which I could be more specific, but they are all a little different.

  • Problem with UDO Registration through SDK (Default Form Option)

    Hello All,
    I am trying to create a UDO Registration through SDK which is done easily but the udo contain default form option.
    But after creating the udo , the defualt form option is clicked in the wizard but the system is not showing that default form in SAP.
    Please suggest if i am missing something for making this udo a default form .
    Code which i have written is following :-
    Dim oUserObjectMD1 As SAPbobsCOM.UserObjectsMD
                oUserObjectMD1 = Class_Law_Main.ocompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserObjectsMD)
                If oUserObjectMD1.GetByKey("OSL_LawStage_Master") = False Then
                    oUserObjectMD1.CanCancel = SAPbobsCOM.BoYesNoEnum.tNO
                    oUserObjectMD1.CanClose = SAPbobsCOM.BoYesNoEnum.tNO
                    oUserObjectMD1.CanCreateDefaultForm = SAPbobsCOM.BoYesNoEnum.tYES
                    oUserObjectMD1.FindColumns.ColumnAlias = "Code"
                    oUserObjectMD1.FindColumns.ColumnDescription = "Code"
                    oUserObjectMD1.FindColumns.Add()
                    oUserObjectMD1.FindColumns.ColumnAlias = "Name"
                    oUserObjectMD1.FindColumns.ColumnDescription = "Name"
                    oUserObjectMD1.FindColumns.Add()
                    oUserObjectMD1.FindColumns.ColumnAlias = "DocEntry"
                    oUserObjectMD1.FindColumns.ColumnDescription = "DocEntry"
                    oUserObjectMD1.FindColumns.Add()
                    oUserObjectMD1.FindColumns.ColumnAlias = "U_StgName"
                    oUserObjectMD1.FindColumns.ColumnDescription = "Stage Description"
                    oUserObjectMD1.FindColumns.Add()
                    oUserObjectMD1.FindColumns.ColumnAlias = "U_StgSeq"
                    oUserObjectMD1.FindColumns.ColumnDescription = "Stage Sequence"
                    oUserObjectMD1.FindColumns.Add()
                    oUserObjectMD1.FormColumns.FormColumnAlias = "Code"
                    oUserObjectMD1.FormColumns.FormColumnDescription = "Code"
                    oUserObjectMD1.FormColumns.Add()
                    oUserObjectMD1.FormColumns.FormColumnAlias = "U_StgName"
                    oUserObjectMD1.FormColumns.FormColumnDescription = "Stage Description"
                    oUserObjectMD1.FormColumns.Add()
                    oUserObjectMD1.FormColumns.FormColumnAlias = "U_StgSeq"
                    oUserObjectMD1.FormColumns.FormColumnDescription = "Stage Sequence"
                    oUserObjectMD1.FormColumns.Add()
                    oUserObjectMD1.CanDelete = SAPbobsCOM.BoYesNoEnum.tNO
                    oUserObjectMD1.CanFind = SAPbobsCOM.BoYesNoEnum.tYES
                    oUserObjectMD1.CanLog = SAPbobsCOM.BoYesNoEnum.tNO
                    oUserObjectMD1.CanYearTransfer = SAPbobsCOM.BoYesNoEnum.tNO
                    'oUserObjectMD1.ChildTables.TableName =
                    oUserObjectMD1.Code = "OSL_LawStage_Master"
                    oUserObjectMD1.ManageSeries = SAPbobsCOM.BoYesNoEnum.tNO
                    oUserObjectMD1.Name = "Law Stages Master"
                    oUserObjectMD1.ObjectType = SAPbobsCOM.BoUDOObjType.boud_MasterData
                    oUserObjectMD1.TableName = "OSL_OLSG"
                    lRetCode = oUserObjectMD1.Add()
                    '// check for errors in the process
                    If lRetCode <> 0 Then
                        Class_Law_Main.ocompany.GetLastError(lRetCode, sErrMsg)
                        MsgBox(sErrMsg)
                    End If
                End If
                System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserObjectMD1)
                oUserObjectMD1 = Nothing

    Hi Robert,
    I recommend you do your changes in your file/XML file before you load your form. It's much quicker and easier this way
    e.g
    //make your changes in your xml form
    SBO_Application.LoadBatchActions(ref YourXMLFileString);
    Cheers, Lita

  • Default display option in MB51

    Hi Folks,
    Can anyone help me in setting up a user specific default DISPLAY OPTION in transaction MB51.
    Expecting an early reply.
    T H A N K S,
    Sugopa

    Hi,
    below link might help you
    http://help.sap.com/saphelp_erp2004/helpdata/en/b5/2f2671d6f511d3b7f30000e82de955/frameset.htm
    what is your requirement.
    is this what you want when a user executes MB51 then the options should be default one if so
    enter tcode MB51
    go to system-user profile-set data and execute.
    when ever you execute MB51 all the time the same data will be there.
    is this your requirement if not getback......
    if it helps and solves your problem reward points and close the thread
    regards,
    venu.

Maybe you are looking for