Linking different parameters together

Hi,
I would like to link different parameters together. Like the rotationX of one layer controls the translationY of another layer. How can I do this?
Can I some how script it? (is it actually possible to script in motion at all? Are there tutorials for scripting in motion?)
Or can I create my own behavior for my problem? I wasn't really able to costumize it the way I wanted with this "apply to" field that is in some of the behaviors.Is there a trick to it?
Any ideas?

Yes it would be nice to have some after effects style simple expressions for linking things together. But, the Apple way is more based around simply duplicating behaviors, ie setup a behavior (say a motion path) on one layer, and copy that to another layer. Otherwise copy keyframes, or do things with match moves....

Similar Messages

  • How would I link different templates layout together

    Hi
    I'm new here but not new to Dreamweaver. But having said that I never used the "save as template" for multiple page layout, if that's possible at all.
    The website I'm working on has 4 different page layout and I'm wondering if I can link the templates together so I don't have to go over each templates to make changes to the navigation as the site grows.
    The site will eventually end up with hundreds of pages using the 4 layouts and possibly more down the road. Hence the reason why I'm trying to find a way to link all the templates together.
    I'm using Dreamweaver cc and the site is html.
    Any advice would be much appreciated.
    Thank
    Joe

    Nested Templates are bad news. There's no reason to use them.  Don't go down this slippery slope. In fact, there's no reason to use 4 Templates.  It unnecessarily complicates your site.  One template that contains  everything you need for your entire site is all that's required.  Learn to use "Optional Editable Regions" and embedded CSS code for page specific styles.  One Template makes your life so much easier .
    Nancy  O.

  • Linking different devices with the same Apple ID

    I was wondering if there is a way to link different device to connect and push to each other within the same Apple ID. For example I have and iPad 2, iPhone 4 and MacBook Air. While my mom has an iPad, iPhone and uses our Mac desktop. My sister has her own iPod and so does my brother. We all use the same Apple ID to save money and make things easier. Is there any way to connect our own devices. It become inconvenient when games start downloading on my device or inappropriate songs I download go onto my sisters as she is 9. If there is no way to do this, would it be hard to ask for the ability for me (under the same Apple ID as my mom, brother and sister) to set it up so my devices push to each other. Meanwhile my mom could connect her device together? Thank you to anyone who helps in advance.

    Up to 5 devices can share the same Apple-ID for iCloud and share / sync happily. You can selectively disable or enable components to sync or not, using the icloud controlpanel on Windows, the system preference pane in Lion or the settings->icloud in iOS5.
    You just must ensure that all devices and machines run the compatible versions of OS and apps.
    Macs : Lion 10.7.2 + iphoto latest
    PCs : Vista / Win7 with Outlook, itunes 10.5 and icloud controlpanel
    iDevices: iOS5

  • Linking text boxes together?

    hello,
    I work with a book (.indb) with many different Documetns linked in it(.indd)
    Problem is that i have a lot of textboxes that are the same in the documents and also across the documents.
    What i would like to do is to link them all together somehow and either have
    -one master (if i make changes in that it applies to all of them)
    or
    -everyone as a master, i make changes anywhere and all of them get changed
    best would be though
    -i have one master wich changes all of them but i can have extra text in the individual textboxes if needed. (I could solve this by just doing extra textbox n the pages i need some extra text)
    Also dont know if it matters but the text in the textbox is conditional text (shouldnt make a difference  think)
    So what i want to know is if you can do this and if so, how you do it.
    Thank you in advance
    /Simon

    SimonSchneider wrote:
    Thank you for the quick reply,
    So there is no way of linking text boxes together?
    Becouse i only have a small amount of text that has to be the same on certain pages.
    So i cant put it inot master page and i dont really want to place an entire page,
    I hope I understood the procedure correctly.
    Thank you in advance
    Consider cross-references. Each cross-reference brings in a whole paragraph, to another place in the same document, or from a separate document. The source content can be in a separate document that's one of those in an InDesign book, or one that's not in a book. Cross-reference source content and the source that's captured can both be conditionalized, though, hiding the source creates unresolved references.
    Changing the source content changes all instances that capture it.
    Search Google for terms like "InDesign cross-reference tutorial" without quotes for details.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices    

  • Refresh cristal report sending it different parameters

    I have Business Objects ENTERPRISE XI R2 installed on Redhat Enterprise Linux AS 4 update 4 and running on Apache Tomcat/5.0.27
    Currently we have one Crystal template saved to Enterprise many times with the only difference being the name of the report and one parameter has a different value each time.
    This is not ideal, because everytime we need to change something in the template we need to re-save over every report.
    Idealy we would like to have one report (the template) saved to Enterprise and be able to execute it passing different parameters. execute from where? I don't really mind, Unix shell command, Java SDK or URL as shown below:
    http://<server>:<port>/businessobjects/enterprise115/admin/en/infoobject.cwr
    ?action=-10005&cmd=run&refresh=r_ins&id=<report id>
    I know the Java SDK can do it, but it may be a bit too advanced for me, I can't get a grasp on it.
    What can you reccommend?

    I'd have to ask you to clarify your requirement further, do you need these instances distributed to different folder locations within Enterprise or do you just want to restrict the content that users see and only run the report once?
    The solution I provided will utilise your existing set up i.e. mulitple copies of the same report located in Enterpise however it will give you an easy way to update the report files with any changes you make. Use the enterprise query tool to query the CMS for the FRS location of the reports you wish to modify. Then build a batch file from the results wich will copy your new report over the top of the existing reports using the FRS location returned by the query tool. Note: you will have o modify the FRS location into a UNC path, just replace FRS with the location of your FRS folder.
    Depending on exactly what you are trying to do, you may be able to utilise multipass bursting (row level security) to run the report once and then strip out data depending on who is accessing it.
    As for links to further information, the original solution is undocumented.

  • How to link two keyevents together ?

    I need to detect “Shift + 1 “ and “1” separately, as these two will trigger different tasks. Normal keys like “1”,”a” can be detected in KeyTyped function (KeyEvent.KEY TYPED) and Shift can be detected from keyPressed function (KeyEvent.KEYPRESSED).
    But how can I link these two together ?
    It is possible that user gives “Shift + 1” and then gives “2”.
    But in my program how can I make out that this “Shift” is linked to “1” and not to “2” ?

    tech_cheetah wrote:
    From the APIs I have figured out that I can use this method to check if shift was pressed
    public boolean isShiftDown()
    The problem with this is that it will still catch sequences such as
    [shift down] 2 1 ...
    So you wouldn't have the sequence you were looking for, but maybe that's ok?
    If you search for my KeyboardCommands class, you'll see there is a way to map arbitrary character sequences (not just shift/control, etc) to an Action. This might be what you're looking for

  • Link multiple incidents together and un-link

    Hello Experts,
    my client using solution manager 7.0 sp14 (Service Desk).
    Now my requirement is need to be able to link multiple incidents together.
    Any suggession in that to get an option u201CLink to another Incidentu201D from an Incident in any status. From this you can search for master incident, and link the two. Some times it is probably safer not to stop the clock (as the link maybe incorrect), but this action should set a flag on the child ticket so that SLA reporting can exclude all child tickets.
    If the master ticket is resolved, then all child tickets should be resolved also (with the same reason).
    A linked ticket will then have an option to un-link if it is found to not be a correct link (and this will un-set the child ticket flag).
    Regards,
    Babu

    hi,
    in ITIL this is called a "problem".  In standard SOLMAN, SAP reserved a specific subject code for this ME01 : Problem message but this solution is not supporting the functionality you need.
    You need to develop an action that allows you to link and an action that allows you to unlink a support message to a problem message.
    The coding of these action should be like the one used to authorize change request, this action is popping up a list of active project, instead of this, this  can be programmed to look for active "problem messages"
    For the problem message you can either create a specific document type (different from the support message) or further enhance the SAP functionality by using a support message with this "problem message" subject".
    My SOLMAN consultant confirmed me this has been developed for some of his customers.
    Before starting this development I would rather ask SAP if there is any further development of this ITIL functionality.
    br Xavier

  • HT202213 Can multiple iPhones share one iTunes without syncing the phones together? We just got new iPhones and set up desperate apple id's, but don't know if we can both sync to our existing iTunes without linking our phones together (contacts, apps, etc

    Can multiple iPhones share one iTunes without syncing the phones together? We just got new iPhones and set up seperate apple id's, but don't know if we can both sync to our existing iTunes without linking our phones together (contacts, apps, etc) ????

    How to use multiple iPods, iPads, or iPhones with one computer

  • I have multiple chat clients and want to link them all together.

    I have iMessage, Yahoo!, Gtalk, Facebook, and Skype. I want a good client to link them all together. I also want the abiity to add other IM services to the client at a later time if I need to.

    Then there is nothing more anyone here can do for you if you searched all the places I mentioned in my previous post. 

  • Download link with parameters.

    I've created a generic download function that takes a couple of parameters. The function works but now I'm trying to find out how to provide a download link that has the parameters filled in based on some page items.
    Page items:
    P38_export_type: The user can select what kind of data to download
    P38_filename: The user can provide a filename
    What I've tried is to create a button: Redirect to URL
    #OWNER#.download_my_file?p_application_id=&APP_ID.&p_filenaam=&P38_FILENAME.&p_functie=Statistiek&p_parameter1=&P38_EXPORT_TYPE.
    Although this creates a link, the parameters are filled on page load. This is to early, I need the values at the time the button is pressed.
    Any ideas how to do this?

    Hi thanks,
    In the meantime I figured out something similar.
    function my_redirect ()
      redirect(html_GetElement('P38_OWNER').value+".download_my_file?p_application_id="+html_GetElement('pFlowId').value+"&p_filenaam="+html_GetElement('P38_BESTAND').value+"&p_functie=Statistiek&p_parameter1="+html_GetElement('P38_SOORT_EXPORT').value);
    } I struggled a bit with the owner value before I decided to put it in a hidden field. Passing it as a variable is a better idea.
    It seems that accessing the item values can be done in several ways.
    redirect or location.href=URL ? any preference?

  • Abstract method which when implemented will have different parameters

    Hello to all,
    I have an assignment but not looking for someone to do it for me. I am only searching for a suggestion on how to do the following.
    Imagine having an application that needs to provide an estimate of the rent for different buildings.
    Basically I start with by having a class name Building. This class has an abstract method called estimateRent.
    I then create two classes that extend the class Building which are named Apartment and House. Both need to have the method estimateRent.
    However the problem is that the rent for the Apartment is calculated on the nights passed in the flat and the people in it, while the rent for the House is just calculated on a month bases.
    This means the estimateRent method requires to have different parameters depending if it is implemented inside the Apartment class or the House class.
    Now I only know of two options.
    The first option is to not declare the estimateRent method as an abstract method inside the Building class and just implemented inside the Apartment and House with different parameters. I do not like this option since in the future if a new Building comes in then I would like to impose the fact that that object needs to have a calculate method.
    The second option is to make the estimateRent method as abstract inside the Building class however takes a parameter of either a String array or else a Map. Then the estimateRent within the Apartment class would search for the elements tagged as nights and people, and the House class would only search for the elements tagged as months!
    However do not know if there are any other, better ways on how to do this. I am using Java 1.4 however if you only have answers for Java 5.0 then please post them again since I always like to learn something new :)
    Thank You for any comments.
    tx

    The implementation changes, yes.Yes that I could understand in the Strategy Pattern (in the document I read it was being compared with the Template Pattern).
    Then you need to refactor your design.I tought about that, however if you read my first post you will notice that I have different criteria on which the costs need to be estimated. While the costs for a flat are estimated on the people staying in and nights slept there, the costs for the house are based only on the months stayed there regardless of the people living in. Now for me I feel that it is bad programming practice to create one method that can have all the parameters required for any scenario. I mean the following is NOT something I am going to do:
    estimateCosts(int nights, int people, int months ... etc);
    That's not a very elegant way of going about it.
    What is the "Context" going to have?Yep I agree, but so far my limited brain has only come up with that! I am open to any other sugestion! always if i understand it first!
    Basically the Context would better be named as Criteria and it would be an interface as follows:
    interface Criteria{}
    Then I would create two classes that implement the Criteria object as follows:
    class AppartmentCriteria implements Criteria{
    public Result estimateCosts(int nights, int people);
    class HouseCriteria implements Criteria{
    public Result estimateCosts(int months);
    Now when I recieve the inputs, depending on the scenario the Criteria is typecasted and the correct parameters passed and we recieve the Result.
    I feel the above sucks since I am not seeing it as an object oriented way of doing this out! Is there any other sugestions! The refactoring thing I am intrested in! however really I can not see how such a call to that method could be refectored!
    Thank You,
    tx.
    PS: Sun has blocked my other account as well, and this time they did not even send me an email to confirm that I was registered successfuully :( Is there someone I can contact on this? I guess next time I will reply with tx53m :)

  • Linking KN9 files together using hyperlinks, fades to black

    When linking KN9 files together using hyperlinks, I press play the document being linked to fades in, then out to a black screen and after a couple of seconds returns to the files open files on my desktop.
    I've checked all the setting and it even does it on 2 empty pages I tested with no transitions or document settings.
    If I open both document before pressing play it's OK but because I have several large files being linked together I dont want to have to open all the files before presenting to clients etc.
    Thanks!

    The History
    I reported the hyperlinking problem over a year ago when I updated Keynote from version 5.0.5 to version 5.1. According to the Apple tech that I wroked with at that time the Apple engineers had reproduced the issue and had put it on the fix list (Case 235638615). I then worked with Apple in December 2011 to test a version that supposedly fixed the problem, but did not, so Apple sent me a data logging monitor program which I ran and sent back. The Apple tech asked me to be patient as it might take awhile for the Apple engineers to fix the issue. When version 5.2 came out I reran my testing suite of presentations and found that the hyperlinking issue had still not been fixed. I have tried to contact Apple about my case since July 26th - my emails to the Apple tech with whom I worked back in December bounce back as undeliverable and he does not answer his phone (I have left messages with no replies) plus when I try to use Apple support to follow up on the case, all I get is a message to contact my Apple tech (Doh!). If Apple techs or Apple engineers watch the forums I hope they look into unresolved Case 235638615.
    The Workaround
    Hyperlinking worked fine with 5.0.5 - the .key files would load and display and did not have to be preloaded prior to runing the linked presentations. Version 5.1 through the current version 5.2 require all of the linked presentations to be preloaded prior to running them. Prior to the current version of Lion, I was able to manually run version 5.0.5 to successfully run my system of 32 presentations. The only downsides were that I could not use any transitions or animations introduced with version 5.1 and I had to force quit Keynote 5.0.5. However, when I tried that solution this month, it would not work. So I created an Automator app to load the appropriate subset of presentations for each day of the five day class and used version 5.2. Everything went okay with preloaded presentations.
    I love using Keynote and do not want to go back to PowerPoint, so I hope Apple fixes this issue. I think we have been more than patient with the Apple engineers.

  • Messed up response to calls to same servlet with different parameters

    Hi,
    I am facing a very strange problem on our production server which is a tomcat 3.2.3 and mod-jk . We have a servlet that recieves a couple of parameters and returns the page contents based on those parameters. Now, if two users call the servlet with their own (different) parameters, sometime the result for one user goes to another one and vice versa.
    For example, if user 1 calls :
    http://www.mydomain.com/servlet/DynamicPageBuild?siteID=577&categoryID=69&catName=
    and user 2 calls (note the difference in parameters) :
    http://www.mydomain.com/servlet/DynamicPageBuild?siteID=781&categoryID=54&catName=
    SOMETIMES the result of first request ends up going to user 2's browser or vice versa!
    Anyone PLEASE any ideas of why this is happening?

    When this happens there are two threads in the servlet container, and both of them are (simultaneously) running the same instance of the servlet. So if your servlet has instance variables, both threads (the two users) are accessing and changing the same instance variables... remember, there's only one instance of the servlet.
    So if you change your servlet logic to use local variables (the ones declared inside a method) instead of instance variables, that would probably solve your problem (although it could be more complicated than that). Each thread would have its own copy of the local variables, and there would be no conflict.

  • How to add prompt before running the report in ssrs such that it generates a report bases on the input having different parameters as filters ?

    Hi,
    I would like to give a prompt in SSSRS report so that report is generated based on the prompt (no default
    value is taken)and the generated report should have different parameters as filters (except the initial prompt parameter).
    Thanks & Regards,
    Ganesh

    Thank Santosh for responding.
    I was looking for similar thing but I want to navigate to another report when view report is clicked on the report and pass my parameters from initial report.
    Can we keep any action on view report button on the report??
    Thanks & Regards,
    Ganesh

  • Linking two accounts together

    Are you able to link two accounts together.  For example, I have had an account for a long time, but now my husband has one as well as my son.  My son is currently signed in with my account but I would like to give him his own as well as share what I have with my husband.
    Thanks,
    Stephanee

    Sorry, but it is not possible to merge iTunes Store accounts. You can, however, use content from multiple iTunes Store acounts on any given system or device. You just have to authorize the device to each account. You will have to use the account though which any item was purchased for redownloading, app updates, etc.
    Regards.

Maybe you are looking for