Is it possibile to move an Object after applying a Flip Smart Build, in the same slide?

Hi,
I'm relatively new to Keynote and am trying to incorporate a simple animation a particular slide. I've got an object which I need to flip over, then move to a certian place in the slide. I have created the Flip action in the Build section, but once I create this Flip action, I no longer get the option to move the object. Is there a way to do this?
Thanks!

Do you want something like in the first movie of this post? http://blog.lilybiri.com/reset-effects
Explanation of setting a motion path in this old post: http://blog.lilybiri.com/editing-motion-paths-and-reusing-customized-e
You can also edit the XML that defines a motion effect, but know that those movements are always relative to the original place of the object.

Similar Messages

  • Unable to move object. Change lists were not part of the same import

    Hi All
    I am facing a strange problem.
    We have applied SP16 patch on our XI box and imported all the scenario objects and design objects which were exported as .tpz file .
    After importing scenario object,all objects moved to a new node 'XI 3.0 Import' in change list and when I tried to activate this change list it gave me an error
    <b>"Unable to move object. Change lists were not part of the same import"</b>
    even if I try to move it Standard change list, it gives me same error.
    Any solution?

    Hi,
    Hope you are activiating the complete change list. You get this error because you trying to activate a part of the change list.
    Please look at the URL:
    Importing to QA box
    Integration Directory (ID)  transport to Prod system
    Regards
    Vijaya

  • Trying to move a list of form variables to session variables of the same name

    I am trying to move a list of form variables to session variables of the same name and I am having a lot of trouble.
    I have never had to post of this forum with a language question in all the 10 years I have been using ColdFusion. I was a qa Engineer @ Allaire/Macromedia back when it was going from one to the other. I have a pretty good grasp of the language.
    I have software that runs off a list. The fieldnames are variable and stored off in an array. It's survey software that runs off a "meta file". In this example; I have the number of fields in the survey set to 12 in the "metafile". I have each field declared in that file in array Session.SurveyField[1] and the above loop works fine. I include this "metafile" at the start of the process.
    I cfloop around a struct and it works wherever I have needed to use it; such as here - writing to the database for example;
    <CFQUERY NAME="InsertRec" DATASOURCE="Survey">
    INSERT into #variables.SurveyTableName#
    (EntryTime
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    ,#Session.SurveyField[arrayindex]#
    </cfloop>
    <!--- EXAMPLE OF WHAT THE ABOVE GENERATES
    ,q01_name,q02_AcadTechORNA,q03_Water,q04_FirstAid,q05_CPR,q06_LifeGuard,q07_AED
    ,q08_ProjAdv,q09_Color,q10_SantaClaus,q11_Supervisor,q12_SupervisorOpinion --->
       VALUES
        ('#EntryTime#'
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    <cfset thisname = "Session." & Session.SurveyField[arrayindex]>
    ,'#evaluate(variables.thisname)#'
    </cfloop>
    <!--- EXAMPLE OF WHAT THE ABOVE GENERATES
    ,'#Session.q01_name#','#Session.q02_AcadTechORNA#','#Session.q03_Water#','#Session.q04_Fi rstAid#'
    ,'#Session.q05_CPR#','#Session.q06_LifeGuard#','#Session.q07_AED#','#Session.q08_ProjAdv# ',
    ,'#Session.q09_Color#','#Session.q10_SantaClaus#','#Session.q11_Supervisor#','#Session.q1 2_SupervisorOpinion#' --->
    </CFQUERY>
    NOW HERE'S THE PROBLEM: I am running into trouble when trying to move the form variables to session variables of the same name. It is the only part of the software that I still need the datanames hard coded and that is a roadblock for me.
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    <cfset thissessionfield = "Session." & Session.SurveyField[arrayindex]>
    <cfset thisformfield = "Form." & Session.SurveyField[arrayindex]>
    <cfset #thissessionfield# = #evaluate(thisformfield)#>
    </cfloop>
    I have tried it with or without the "evaluate"; same result. It doesn't give an error; it just ignores them (session variables look as such in the next page in the chain)
    q01_name=
    q02_acadtechorna=
    q03_water=
    q04_firstaid=
    q05_cpr=
    q06_lifeguard=
    q07_aed=
    q08_projadv=
    q09_color=
    q10_santaclaus=
    q11_supervisor=
    q12_supervisoropinion=
    Note: they exist because I CFPARAM them in a loop like the above at the start of the procedure) - and this works just fine!
    <cflock scope="Session" type="EXCLUSIVE" timeout="30">
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    <cfset dataname = "Session." & Session.SurveyField[arrayindex]>
    <cfparam name="#variables.dataname#" default="">
    </cfloop>
    </cflock>
    I EVEN tried exploiting the Form.Fieldnames list using CFLoop over the list and the same sort of logic within and it still gives me nothing....
    Here's the FORM.FIELDNAMES value
    "Q01_NAME,Q02_ACADTECHORNA,Q03_WATER,Q04_FIRSTAID,Q05_CPR,Q06_LIFEGUARD,Q07_AED,Q08_PROJAD V,Q09_COLOR,
    Q10_SANTACLAUS,Q11_SUPERVISOR,Q12_SUPERVISOROPINION"
    Here's the logic; SAME RESULT - The session variables don't get set.
    <cfoutput>
    <cfloop list="#Form.FieldNames#" index="thisfield">
    <!--- <br>#thisfield# --->
    <cfscript>
    thisSESSIONfield = "Session." & thisfield;
    thisFORMfield = "Form." & thisfield;
    #thisSESSIONfield# = #thisFORMfield#;
    </cfscript>
    </cfloop>
    </cfoutput>
    The CFPARAM in a loop with variable output name works just fine; so does the post (which I included above) as does the SQL Create, Param Form Variables, Param Session Variables, etc.
    THIS even works for moving BLANK to each session variable, to zero them all out at the end of the process;
    <cflock scope="Session" type="EXCLUSIVE" timeout="30">
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    <cfset thislocalfield = Session.SurveyField[arrayindex]>
    <cfscript>
    thissessionfield = "Session." & thislocalfield;
    </cfscript>
    <cfset #thissessionfield# = "">
    </cfloop>
    </cflock>
    Expanding on that code, you would think this would work, but it doesn't;
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    <cfset thislocalfield = Session.SurveyField[arrayindex]>
    <cfscript>
    thissessionfield = "Session." & thislocalfield;
    thisformfield = "Form." & thislocalfield;
    </cfscript>
    <!--- debug --->
    <!--- <cfoutput>#thissessionfield# = "#evaluate(thisformfield)#"</cfoutput><br> --->
    <cfoutput>
    <cfset #thissessionfield# = "#evaluate(thisformfield)#">
    </cfoutput>
    </cfloop>
    And see that debug code in the middle? To add insult to injury... When I uncomment that it shows me this. So it certainly looks like this should work....
    Session.q01_name = "Me"
    Session.q02_AcadTechORNA = "N/A"
    Session.q03_Water = "Yes (certificate expired)"
    Session.q04_FirstAid = "Yes (certificate is current)"
    Session.q05_CPR = "No"
    Session.q06_LifeGuard = "Yes (certificate expired)"
    Session.q07_AED = "Yes (certificate expired)"
    Session.q08_ProjAdv = "Yes (certificate expired)"
    Session.q09_Color = "Gray"
    Session.q10_SantaClaus = "Yes"
    Session.q11_Supervisor = "Da Boss"
    Session.q12_SupervisorOpinion = "Not a bad thing"
    There must be some simpler way to do this. This way won't work against all odds even though it seems so much like it should.
    So I end up having to hardcode it; still looking for an automated way to set these #@%$*@!## session variables over the list from the form variables of the same @#@!$#%$%# name. Do I sound frustrated???
    No matter what I do, if I don't HARDCODE like this;
    <cfset Session.q01_name = Form.q01_name>
    <cfset Session.q02_AcadTechORNA = Form.q02_AcadTechORNA>
    <cfset Session.q03_Water = Form.q03_Water>
    <cfset Session.q04_FirstAid = Form.q04_FirstAid>
    <cfset Session.q05_CPR = Form.q05_CPR>
    <cfset Session.q06_LifeGuard = Form.q06_LifeGuard>
    <cfset Session.q07_AED = Form.q07_AED>
    <cfset Session.q08_ProjAdv = Form.q08_ProjAdv>
    <cfset Session.q09_Color = Form.q09_Color>
    <cfset Session.q10_SantaClaus = Form.q10_SantaClaus>
    <cfset Session.q11_Supervisor = Form.q11_Supervisor>
    <cfset Session.q12_SupervisorOpinion = Form.q12_SupervisorOpinion>
    I always get this from my next page because the session variables are empty;
    You must answer question 1.
    You must answer question 2.
    You must answer question 3.
    You must answer question 4.
    You must answer question 5.
    You must answer question 6.
    You must answer question 7.
    You must answer question 8.
    You must answer question 9.
    You must answer question 10.
    I tried duplicate as well, but I can not get the above to work...
    Can anyone help me do this thing that one would think is simple????

    I think if you use structure array syntax you should get the results you want.
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
          <cfset session[Session.SurveyField[arrayindex]] = Form[Session.SurveyField[arrayindex]]>
    </cfloop>
    Or probably even easier.
    <cfset session = duplicate(form)>

  • How do I move Contacts & Calendar from one User to another User on the same Macbook Pro?

    How do I move Contacts & Calendar from one User to another User on the same Macbook Pro? OSX 10.9.5

    is this second library in a different account on the computer?
    Look at Home Sharing.
    iTunes: How to share music and video - http://support.apple.com/kb/HT2688 - about Music Sharing and Home Sharing
    Home Sharing Support page - http://www.apple.com/support/homesharing/
    iTunes: Setting up Home Sharing on your computer - http://support.apple.com/kb/HT4620
    iTunes Home Sharing now works between users on same computer - https://discussions.apple.com/thread/3865597

  • I just transferred "all movies" to "My Passport" hard drive.  Several images of the same clips appear.  Is each image a valid clip?  Why do I have so many?

    I just transferred "all movies" to "My Passport" hard drive.  Several images of the same clips appear.  Is each image a valid clip?  Why do I have so many?

    Okay. Trash the stuff on the External Drive.
    All Movies is not a place - it's a list. Specifically its a list of all the movies on your Mac. Never interact with anything in iPhoto via these All Movies or All Images lists.
    In iPhoto select the Movies you want to move and go File -> Export. Set the Kind: to Original and export from iPhoto to this external drive.
    Then once you're sure the export has gone correctly, erase them from iPhoto.
    Regards
    TD

  • Mercedez Benz COMAND System not recognizing iPhone 5 after iOS 8 update, can we expect the same result with iPhone 6 or 6 plus?

    Mercedez Benz COMAND System not recognizing iPhone 5 after iOS 8 update, can we expect the same result with iPhone 6 or 6 plus?
    I'm planning to purchase the 6 plus, but I need to know from where.whom will the fix for this problem emerge.

    My new iPhone 6 paired perfectly with my Mercedes system.  That said, on your iPhone 5, reset your network settings and then try to pair it again.

  • Since updating to OS7 the video app doesn't show any titles for movies I have downloaded on my iPad. Anyone have the same problem or a fix?

    Since updating to OS7 the video app doesn't show any titles for movies I have downloaded on my iPad. Anyone have the same problem or a fix?

    Many users have solved the problem by syncing several times; and if that doesn't work, perform a simple restore. Your titles will come back.

  • IPhone 4S will either show 100% battery or dead battery right before shutting off, nothing in between. Has iOS 7 now after restore and is continuing to do the same thing as when it has iOS 6. Frustrating, like not having a fuel gauge on your car!!l

    iPhone 4S will either show 100% battery or dead battery right before shutting off, nothing in between. Has iOS 7 now after restore and is continuing to do the same thing as when it has iOS 6. Frustrating, like not having a fuel gauge on your car!!l. Purchased around March of this year so not very old, never wet, damaged, etc.

    Read:  http://www.forbes.com/sites/larrymagid/2013/09/27/how-to-preserve-battery-life-i n-ios-7/?partner=yahootix

  • Invalid object after applying fa patch

    Dear all,
    Just now I had applied patch for FA & Generate message files from Generate Applications Files menu. How do I know that there are any invalid objects for FA after applying patch in order for me to run Compile APPS schema from adadmin to compile the invalid objects. What is the example for the invalid object message? What is the effect if I run Compile APPS schema eventhough there are no invalid object occur? Please advices.

    HI,
    Below is my last message after compiling the APPS Schema
    ======================================
    There are now 1 jobs remaining (current phase=pc_errchk):
    0 running, 1 ready to run and 0 waiting.
    Assigned: file aderrchk.sql on worker 1 for product ad username APPLSYS.Spawned Process 29807
    Completed: file aderrchk.sql on worker 1 for product ad username APPLSYS.
    Done compiling APPS schema(s) in parallel.
    Telling workers to quit...
    All workers have quit.
    Dropping FND_INSTALL_PROCESSES table...
    FND_INSTALL_PROCESSES table dropped.
    Dropping AD_DEFERRED_JOBS table...
    AD_DEFERRED_JOBS table dropped.
    Please check your log files for errors that may have occurred
    while compiling invalid objects.
    Be sure to look at the log file(s) for the parallel worker(s) which ran
    adpcpcln.pls and aderrchk.sql. These scripts display compilation errors
    and list objects which are still invalid.
    sqlplus -s APPS/***** @/test/oracle/testappl/ad/11.5.0/admin/sql/adinvrst.pls *****
    Spawned Process 29850
    Review the messages above, then press [Return] to continue.
    ===========================================
    I had run select owner, object_type, object_name from dba_objects where status = 'INVALID' order by 1,2; once again to look for an INVALID object but the INVALID object still appear.
    Please advice. Do I need to run compile APPS Schema once again?

  • I used to be able to move tabs right or left by drag and drop in the same browser window. Now, after updating to 35-Mac, i can't do that. How can I do that now?

    using FF 35 on MacBook Pro

    Thank you for your response -- It seems the "classic theme restorer" add-on is the problem. With that enabled I cannot move tabs. With it disabled I can. I've used that add-on for years without issue on Mac and PC. The PC is still fine, just the Mac is problematic since the FF update about a week ago.
    So I guess that's the answer unless anyone knows of some other trick or setting to change so FF is able to have tabs below the address bar AND be able to move tabs left to right within the same browser window!

  • HT1926 reinstalled itunes after unistalling it due to error message during update. after it was completly unistalled still has the same error message: service "apple mobile device" (apple mobile device) failed to start, verify you have sufficient priviled

    I was prompted to update itunes this evening. I did and in the process, it came up with the following error message: Service "apple mobile device" (apple mobile device) failed to start. Verify you have sufficient priviledges to start system services. I unistalled itunes completly and reinstalled but am still getting the same error message. If I click "ignore" the program will finish downloading but will not launch due to "not being installed correctly". Please help, I use this program alot with my first grade classroom and they're expecting their listening center in the morning.

    Hey I finally got an older vesion of itunes to work!!! 10.7  x64 for windows 7
    After uninstalling all apple products even  quicktime
    I had to delete everything from (program files, and program  files x64, program data,)
    And all downloads from apple, and I went in to search deleted  other stuff from apple, and itunes
    But definently not my itunes library and Playlist
    Down loaded 10.7 x64 for windows 7, but checked (do not start  when done)
    Then I emptied my recycling bin and restarted my  PC
    I ran geek tech tool box same as reg cure pro, also PC Tools  registry cleaner, and CC Cleaner
    Then I emptied my recycling bin and restarted my  PC
    And wallah... It finally works, and I Love the older version  anyways.
    Easier to download and transfer  music!!!!!

  • I have multpulpe Firefox profiles on one windows user account, how do I move a bookmark folder to a different Firefox profile on the same windows user account?

    ''locking this thread as duplicate, please continue at [https://support.mozilla.org/en-US/questions/1015870 /questions/1015870]''
    I'm trying to organize my different Firefox profiles like into profiles such as, Jeep Stuff, Shopping, things to build, computers, ect. So how can I move a bookmark folder to an other Firefox profile bookmark bar. Or how can I move all my bookmarks into one area to organize them and then place them into the different Firefox profiles?

    What happens if you rename the iPhone "Wife" when it shows up as "Hubby", then choose a different set of apps/playlists to sync with? iTunes is supposed to be able to manage multiple devices, each with their own selection of content. Perhaps you "restored" "Wife" with a backup from "Hubby" when you first set things up which is now causing confusion.
    To create a new library press and hold down the shift key as you click the icon to start iTunes and keep holding shift until asked to choose or create a library. You need to use the same technique to switch back.
    tt2

  • No access with SP Designer 2010 after change to FBA and Windows at the same time - Does this work with SP 2013

    Hi All,
         It seems you can't use SharePoint Designer 2010 to open a site if you have both forms and Windows Auth selected.
    Is there any way around this if i want to use the 2 at the same time?
    How does this work with SharePoint 2013 as i would be doing some migrations?
    Cheers in Advance

    Hi,
    As I understand, you encountered the issue after you selected both FBA and Windows Authentication at the same time.
    As I test, I can open the SharePoint 2010 site using FBA and Windows Authentication by SharePoint designer 2010. When you open the site first,
    you will get a dropdown menu where you can choose between the 2 authentication mechanisms.
    After you choose one of them, you can open the site.
    https://onedrive.live.com/redir?resid=40B702A9FB117DD!136&authkey=!ABtMg5n3OtPakCg&v=3&ithint=photo%2cPNG
    When I open the SharePoint 2013 site using FBA and Windows Authentication by SharePoint designer 2013, I also get
    a dropdown menu where I can choose between the 2 authentication mechanisms. I can open the site after I choose one of them.
    So I think there are some other reasons to cause the issue.  
    Check these things below:
    1. Check if you have the permission to open the site in SharePoint designer (Site Permission > Permission Level in ribbon > Click the permission you belongs to > Ensure Use Remote Interfaces is selected).
    2. Check if you have enabled the SharePoint designer to open the SharePoint site. (Select the web application hosting the site collection using the FBA and windows authentication >Central Administration website > General Application
    Settings > SharePoint Designer > ensure Enable SharePoint Designer
     is selected).
    3. Is there any error when you open the site in SharePoint Designer? If there are any errors, could you please provide it here for further research?
    More references:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/2a3c022c-f924-4b38-be02-5c5ac7a2927e/cannot-open-sharepoint-site-using-sharepoint-designer-2010-get-a-popup-with-4-possible-causes?forum=sharepointgeneralprevious
    https://social.msdn.microsoft.com/Forums/office/en-US/19628c53-fde2-44b0-806c-64f67263c931/cant-open-sharepoint-site-with-sharepoint-designer-2010?forum=sharepointcustomizationprevious
    Best regards
    Sara Fan
    TechNet Community Support

  • How to move your b-rolls into (sub-event folder) separate folders or smart collection inside the same event?

    When ever you create an event how can you create folders inside the event for different folders of b-roll?  The reason why I ask is becuase when you create events, there becomes way too many events making a clutter.  I have tried to cut, copy, import, and other ways after creating a smart collection or folder inside an event to create, I guess to say a sub-event inside and event.  But it will only copy the b-roll into the main event only, not the folders or smart collections.  An example would be in class you will have several events for projects, but I want to have one event that is broken up into several folders or smart collections for each project.  Instead of having all 10 of your events open and displayed.  This way you can create an Event Folder named Class Projects, then open up the Class Projects event folder and inside you can have several folders for each of the separate b-rolls for each certain project.  I am wanting to do this instead of having 10 different kinds of b-roll footage all in one event, which is difficult to search through.

    Actually you CAN create folders INSIDE an Event to place keyword/smart/anaysis colletions in.
    Remember, you can apply Favorite/Rejected tags to whole clips, as well as ranges inside of clips.  The same is true of keywords.
    Related user manual pages here:
    http://help.apple.com/finalcutpro/mac/10.0.6/#ver68416335
    http://help.apple.com/finalcutpro/mac/10.0.6/#ver30ccd91f
    http://help.apple.com/finalcutpro/mac/10.0.6/#ver7a77eb6c

  • Move, scale and flip actions happening at the same time.

    Im trying to get a square to move locations, get bigger and flip around at the same time. I can move and scale, but no flip. im super new so i may be doing something wrong. let me know
    Jonny

    Have you tried my suggestion?
    Flip wont happen simultaniously with size and move, this is why I suggested manually rotating, this will run concurrently with the other actions.

Maybe you are looking for

  • I use multiple desktops when running my MBP. Is there any way to set each one up so that it has its own rotating background?

    I thought I had it figured out but when I slide over to another desktop it goes to the pic of Yosemite. So far I am only able to make one desktop rotate. Any help or information would be greatly appreciated. Thank you.

  • Error on webi schedules on HPUX environment - XI 3.1

    Getting this error when scheduling a webi report: Error Message: Could not save the document to the repository for the following reason: [repo_proxy 30] DocumentFacade::uploadBlob - Query execute has failed : Error occurred while attempting to reconn

  • BPM Scenario ( JDBC and Web Services )

    Hi all, I working in scenario in XI BPM and I need to do this: 1) I have one table in SQL Server. 2) I need to fill this table with a Web Services, because the costumer needs exactly SOAP. 3) To fill  this table, I have some roles, like Area Code, St

  • ITunes 64bit version doesn't recognise iPhone 4S

    I would like to synch my iPhone 4S with iOS 6.1.3 to my PC and installed iTunes 64bit, however, it doesn't recognise my phone with a warning "This iPhone cannot be used because the required software is not installed. Run the iTunes installer to remov

  • Mapping execution failed

    Hi All, One of my customer is facing the following issue: Customer has a mapping that loads tha data from an external table to two staging tables. Deployment of the mapping went fine. When trying to run the mapping mapping fails with status 'Error' B