Having objects move in to and out of a frame (screen shots explaining)

Hi
I've got a wireframe I'm now trying to add interaction to in catalyst.
I've got a drop down menu the user will work from and I want it so that when they click a button the screen in the menu slides away and a new screen slides in.
Please see the very rough screens below to explain what I'm trying to do.
The yellow is the apllication window which will have buttons along the top. The dark grey is the frame that appears when clicking a navigation button. The light grey is the embedded information with a button.
When the user clicks the button I want the white box to slide in its place. The grey box AND the button to slide out of the dark grey box to the left. I've got the sliding working, but can't get the button to move when clicked.
The main problem is that the light grey and white boxes sit on top of the yellow box.
I want the white box to slide in from the right, but only to be visible when it startes to enter the dark grey box.
Is there any way to do this?
I'm new to catalyst, but is this kind of thing even possible?! I can't think of a combination of layers and custom components that would let me do this.
Please help if you can, thanks
This site kind of shows what I'm trying to achieve, http://www.whiteherongrill.com/
Click 'Services' and then 'Private Events' and the menu slides down from the top but is not visible as it passes through the light olive border as it enters.
However I'm also looking for the button to be part of the pnel that slides out of view when clicked.

8 hrs later I've just managed to solve this, the joys of being a newbie
At least I got there, a combination of custom components and clipping to component bounds. I was getting the combination of clipping bounds with the custom components all all wrong, but I got there finally

Similar Messages

  • How do I keep from having my titles fade in and out in iMovie 10.0.1? Or is there a way to customize a title at all, other than location, size, and color (such as fade direction, duration, entrance...)?

    This is something that I thought came standard with all video editing software and I'm very surprised to not be able to find it in my version of iMovie. All I want to do is create captions that don't fade in and out.

    Several posters have asked this and it doesn't appear to be possible in iMovie 10.  I guess you would have to create .png stills with the caption and the rest transparent then add them as cutaways.
    Geoff.

  • Display suddenly changed I have tried changing in utilities but nothing works.  The print is enormous and out of focus the screen has shrunk in width but programs open too stretched in length? What can I do?

    The display suddently changed two days ago.  Everthing exploded in size.  I have tried changing the contrast but nothing works.  The display screen becomes either too wide, too long, or too narrow and in all cases the font is extra large and out of focus.  What can I do please   I am really disappointed since my iMac is only 2.5 months old.

    Don't think so.  But tried it anyway.  I have been into utilities and tried different contrast settings now I don't know what is the right one.  But no matter which one I tried I have either about a third of the screen black, with display centered as though hidden behind the black.  What is going on?
    Also, I have to say that I can't understand why there is no information anywhere on what the correct settings should be.
    Any ideas Capt?

  • Will premier let me ease in and out of key frames

    hi
    i have found the way to ease in and out of keyframes in after effects
    does premier have the same function
    and if so what is it called
    thanks 

    Right Click on the Key Frame marker and you will get the options you require .   (Eases)

  • I am running Yosemite 10.10.1 and I cannot find my screen shots. They used to save to my desktop.

    Please could you tell me where my screen shots are stored. when i use cmd+ctrl+shift+3 i hear the capture sound, but cannot find the picture. where is it stored?

    The default location is your Desktop. If they're not going there, you can choose any other location by running this command in the Terminal and restarting.
    defaults write com.apple.screencapture location <path to the new location>
    E.g., if you want them put into a subfolder named ScrnShts inside your user's Documents folder, the path (w/o brackets) would be:
    /Users/"username"/Documents/ScrnShts
    You have to substitute username for the actual username, w/o quotes, If the user's name was wootts, then the command would be:
    defaults write com.apple.screencapture location /Users/wootts/Documents/ScrnShts
    27" i7 iMac (Mid 2011) refurb, OS X Yo (10.10.1), Mavs, ML & SL, G4 450 MP w/10.5 & 9.2.2

  • Help creating a script to move users in and out of an OU based on a time limit

    Here's my scenario: we currently have OUs based on the locations of our facilities, we also have a sub-OU(?) underneath it for users that need a group policy applied to them where whitelist applications allowed to run. From time to time we have need to pull
    users out of that sub-OU for a short period of time to let them run applications they normally wouldn't be able to and won't need to run long term. Sometimes we also forget to add these people back into that policy controlled sub-OU because we get busy do
    other things. Server is 2008 R2.
    Here's what I'm looking for: A script that prompts for the users name, pulls that user out of the sub-OU, puts them in the main OU but only for 24 hours. After that time limit is up, a script/command runs that puts the user back in the policy controlled
    sub-OU. I'm thinking a PS script would be the best way to do this.
    Research: Looking at these posts here and here I'm
    thinking I should be able to Frankenstein something together but I have very limited PS scripting experience.
    Can anyone help me create this?

    You've probably figured this out, but we're not typically in the business of writing complete solutions for people. With that said, there are projects I find particularly interesting, such as this one, where I am willing to help get someone started if they
    are willing to take the time to work through the examples and learn from them.
    You have two requests - one is a script that prompts for a user it then moves to a different  location in Active Directory. The second request is a way to move them back without manual interaction. This will require an automated task (scheduled task)
    that will run at select times during a day.
    Here's the first script (1/2): The first two lines set two different variables. The first line sets the $OUPath variable to the SubOU. The second line prompts for a user and, once a user is entered, sets that user to the $User variable. It then runs the
    first try-catch, attempting to replace the $User variable with the data returned from the Get-ADUser cmdlet. Notice the use of the -Properties parameter. By default the modified date and the extensionAttributes are not returned. We will be using the modified
    date so we can be certain that 24 hours passes before we move them back (see part 2/2). Including extensionAttribute13 will ensure we only move users out of the OU if they were moved in by the script. Note: The modified date on a user in AD is changed when
    it is moved from one OU to another. If the user cannot be located in the first try-catch it will say it cannot locate the user in Active Directory. If it can locate it, it will set the $User variable, as described so far, and then move on.
    In the second (or, nested) try-catch we split the user's DistingusihedName at the first comma so that we have two parts. We use the second part (that doesn't include their CN) and see if that matches the $OUPath variable. If it does match then that user
    has already been moved. If it doesn't match then we 1. Move the user, 2. Replace extensionAttribute13 with the string 'MovedUser,' and 3. Output that the user has been moved.
    $OUPath = 'OU=SubOU,OU=MainOU,DC=mydomain,DC=com'
    $User = Read-Host -Prompt 'Enter SamAccountName'
    try {
    $User = Get-ADUser -Identity $User -Properties Modified,extensionAttribute13
    try {
    If ($User.DistinguishedName.Split(',',2) -eq $OUPath) {
    Write-Output -Verbose 'User already moved.'
    } Else {
    Move-ADObject -Identity $User.DistinguishedName -TargetPath $OUPath
    Set-ADUser -Identity $User.SamAccountName -Replace @{extensionAttribute13='MovedUser'}
    Write-Output "'$($User.SamAccountName)' has been moved."
    catch {
    Write-Output "'$($User.SamAccountName)' cannot be moved."
    catch {
    Write-Output -Verbose "Unable to locate '$User' in Active Directory."
    The second script (2/2): Here we also set a couple variables - one is the SubOU's DistinguishedName where we want to return the user and the other is the all of the users from the MainOU. Foreach user in $Users we check if their extensionAttribute13 is set
    to 'MovedUser' and if their modified date is greater than or equal (-ge) to 24 hours. If it is, the script will move the user, clear extensionAttribute13, and let us know the user was moved. If for some reason your $OUPath variable is wrong, the script will
    run the catch portion of the only try-catch we used in this script. Again, you'll have to schedule Task Scheduler to run this script. Good luck!
    $OUPath = 'OU=MainOU,DC=mydomain,DC=com'
    $Users = Get-ADUser -Filter * -SearchBase $OUPath -Properties Modified,extensionAttribute13
    Foreach ($User in $Users) {
    $TimeSince = New-TimeSpan -Start $User.Modified -End (Get-Date)
    If ($User.extensionAttribute13 -eq 'MovedUser' -and $TimeSince.Hours -ge 24) {
    try {
    Move-ADObject -Identity $User.DistinguishedName -TargetPath $OUPath
    Set-ADUser -Identity $User.SamAccountName -Clear extensionAttribute13
    Write-Output "$($User.SamAccountName) has been moved."
    catch {
    Write-Output "$($User.SamAccountName) cannot be moved."
    } Else {
    Write-Output 'No Users to move.'
    If you decide to use this, be sure to change the paths you use for the $OUPath variables. Also, if you're using this with PowerShell 2.0, you will need to use the Import-Module cmdlet to import the ActiveDirectory module. In versions above 2.0 it will be
    imported automatically if you try to use an AD cmdlet.
    Edit: Typo - Get-ADUser property

  • ICloud limited to 25,000, is there a way to move music in and out of the cloud?

    iCloud is limited to 25,000 tracks, is there a way that I can move some tracks out and replace them with different ones?  I would like to add some holiday music to the cloud but I have already reached the 25,000 limit.  Can I manage the cloud so that I can remove other tracks that I have not listened to and replace them with a new set of tracks (not all 25,000 but maybe 2,000)?  I want the ability to pick and choose what I have in the cloud, how can I do that? 
    Thanks,

    Sorry, I did not mean icloud but rather itunes match. 

  • I have been using my newly purchased Iphone for Iphonagraphy (Iphone photography).  I would like to sync my Iphone to my external hard drive so I can move photos in and out of my Iphone, to make use of the apps I have exclusively on my phone.

    I want to sync my Iphone with the external hard drive so I can move photos from my phone to the hard drive AND BACK!  I'm using a Windows OS

    You have several options:
    Connect the phone using a cable to your computer. Use the camera and scanner wizard to import the photos from the Camera Roll, then organize them and sync them back to the Photos app (see: http://support.apple.com/kb/HT4083). the Camera Roll is intended for temporary storage only.
    Save the images to your Dropbox account. It's free, http://www.dropbox.com. There's a Dropbox app for the iPhone, and also for Windows, Mac and Linux. Dropbox can also be accessed using a web browser. Dropbox (and similar services) provide cloud-based storage that can be accessed from anywhere.
    Use Photo Stream
    Email or text (MMS) the images to yourself
    Create a Picasa or Shutterfly account, save the images to it, then download to your computer
    I'm sure there are others.

  • My iMac screen does not show picture of white object i.e. refrigerators, and also area on the screen where you should type in your user name and password.

    I am having problems seeing white or light colored objects (i.e. refrigerators, ranges, washers and dryers) on al websites I go too.  Didn't have this problem before. Could it be my graphics card?  NVDIA GeForce 9400  256MB.  MAC OS Lion 10.7/5  - 21.4 inch iMac display (1920x1080) or is there a problem with my display?

    Try calibrating the display.
    Go to System Preferences / Displays and click Calibrate.

  • Load movie in root and go to particular frame

    Hi,
    I have main flash file called index.swf and in that I'm loading an external movie called help.swf using the below code:
    loadMovie("help.swf",1);
    On help.swf I have a button which brings me back to the main file i.e. index.swf using the below code.
    _root.loadMovie("index.swf");
    When index.swf is loaded I want it to go to a particular frame.
    I tried using levels but then my print function doesn't work properly.
    Need help urgently.
    Thanks,
    Sunira

    Instead of using loadMovie you need to use the MovieClipLoader.loadClip() method so that you can listen for the completion of the file being loaded.  If you look in he help documents for MovieClipLoader.addListener it includes an example.

  • I keep getting an error trying to open labview 7.1, and I am really confused. screen shot and log included

    Hello,
    For some reason, recently I have been getting problems trying to run labview. It all started when I upgraded from labview 6 to labview 7.1.  I even went as far as to re-image a brand new machine with XP and start over again.  I'm still getting issues.  What do you think?  Can a virus cause problems like this?
    Thanks for your help, I really appreciate it
    Attachments:
    error_labview_7_1.JPG ‏13 KB
    4f9d_appcompat.txt ‏27 KB

    Hello!
    Sorry to hear you are experiencing problems with
    LabVIEW.  This error dialogue is a result
    of some error causing Windows to shut LabVIEW down.  This is a little different than an internal
    LabVIEW error which usually results in an error message with a .cpp file/line
    number.  I don’t really know how to
    decode the MS error log file, but what I see it looks like you are doing quite
    a bit of complicated programming.  I see references
    to quite a lot of the more advanced LabVIEW programming items (such as dlls, mathscript,
    images, and storage).  I highly suspect
    that the crashes are occurring somewhere in external code, but without more
    info on your program it could be hard for me to diagnose.  Could you provide us with a little more
    information about your application?  Also,
    it would be great for troubleshooting if you could reduce the crashing VI as
    much as possible so that we can see exactly _where_ the crash is occurring.  This could shed a lot of light on the
    problem.
    Also, if you are doing some mathscript stuff, don’t forget
    to check out: http://digital.ni.com/public.nsf/websearch/4475BC3CEB062C9586256D750058F14B?OpenDocument
    in case any of this pertains to your system.
    Thanks for posting to the NI Discussion Forums!  Please let me know how it all goes-
    Travis M
    LabVIEW R&D
    National Instruments

  • Haven't been able to use pages for a while.  Keep getting following message.  Have tried reinstalling iWork, but no luck.  Same problems with Keynote and Numbers/Users/scottmcdonald/Desktop/Screen Shot 2012-03-14 at 9.39.52 PM.png

    Haven't been able to use pages for a while.  Keep getting following message.  Have tried reinstalling iWork, but no luck.  Same problems with Keynote and Numbers/

    Have you moved Pages from its installed location? Or just dragged a copy to your current system?
    It can't find some of its resources apparently.
    Peter

  • Last Wednesday my iPhone 4 shut down automatically and it wouldn't let me reboot for about a half an hour. It finally rebooted and then it started with the batterty drainage and no service, going in and out of service. What's wrong?

    Hi everyone... Last Wednesday my iPhone 4 shut down automatically... I had battery. It took about a half an hour to reboot it. After that I started having trouble with going in and out of service and battery drainage. I do have that update 5 ios... or whatever its called... but I did that about 2-3 months ago and had no problems. I called Apple and they wouldn't do a **** thing for me. I called AT&T and they reset the network... didn't work. I did a hard shut down and didn't work. Now today, every call I had was dropped. So of course this morning when I woke up at like 8:30 am by 10:30 am my battery went from 100% to 35%. ***. Can someone help me???

    Hi everyone... Last Wednesday my iPhone 4 shut down automatically... I had battery. It took about a half an hour to reboot it. After that I started having trouble with going in and out of service and battery drainage. I do have that update 5 ios... or whatever its called... but I did that about 2-3 months ago and had no problems. I called Apple and they wouldn't do a **** thing for me. I called AT&T and they reset the network... didn't work. I did a hard shut down and didn't work. Now today, every call I had was dropped. So of course this morning when I woke up at like 8:30 am by 10:30 am my battery went from 100% to 35%. ***. Can someone help me???

  • [IN] and [OUT] log messages coding [ URGENT REPLY NEEDED ]

    currently doing struts project in eclipse by generated code by hibernate
    and i want every method having facility for log
    IN and OUT log facility
    so could u please give me code that thing
    like : log.debug("[IN] MyClass::myMethod() );
    log.debug("[OUT] MyClass::myMethod() );
    so is it right or wrong, please anyone know quick reply me i need URGENT

    Don't double post.
    http://forum.java.sun.com/thread.jspa?threadID=712601&tstart=0

  • HT1918 I'm having some issues trying to change my account billing---I have a new debit card and i need to punch in the new number but when i go to edit my info itunes says my 'session has timed out.' i've logged in and out more than once. what's the probl

    i'm having some issues trying to change my account billing---I have a new debit card and i need to punch in the new number but when i go to edit my info itunes says my 'session has timed out.' i've logged in and out more than once. what's the problem?

    Try to change the credit information from your iphone or other ios device. Tap on settings > store > tap Apple ID > tap view account > tap payment information > change

Maybe you are looking for