How do I Reverse Grow/Shrink?

Sorry, this has to be pretty simple, but I can't figure it out for some reason. I've been using the Help pdf too.
I want to reverse my Grow/Shrink behavior at a specific point in my timeline. I have a video grow from a little square to cover the whole screen, but I want it to return to the little square size after it's grown to full. I can't do this.
I tried putting the Reverse bahavior on, and it has the little square start off covering the whole screen and then shrink down. When I tried trimming the the reverse to the specific point where I wanted the full to shrink back, nothing happened. It just grew out and stayed big.
How do I reverse a behavior from a certain point on?
4 x 2.5 GHz PowerPC G5   Mac OS X (10.4.6)  

New Discussions ResponsesThe new system for discussions asks that after you mark your question as Answered, you take the time to mark any posts that have aided you with the tag and the post that provided your answer with the tag. This not only gives points to the posters, but points anyone searching for answers to similar problems to the proper posts.
If we use the forums properly they will work well...
Patrick

Similar Messages

  • How to use the grow/shrink effect from the gallery

    I'm not interested in the entire gallery, however, the
    grow/shrink effect is very nice.
    I tried looking for it in dreamweaver....
    and then I tried grabbing gallery.js and spryeffects.js
    I get errors.....Has anyone extracted this particular
    behavior? There are a number of places it can be useful.
    Thanks,

    Oh, I think I have found something ot there, sorry if I was a little impatient...
    "3d fog only works with 2 different 3d image types and does not work with a AE 3d scene."
    And one of that 3d images is "RPF" or something like that, a file that contains some 3D or depth info as far as I can imagine... So... really there is no effect like this to simulate fog quickly & easily into a simple 3D After Effects composition? Cause it'd be very usefull... of course I can imagine several ways to "fake" it, but a simple effect for each 3D layer it'd be great to avoid complications... Well, anyway any imput or advice it'll be very welcomed, CHEERS!

  • How to setup grow/shrink behavior on a moving group?

    SD project. Group consists of 18 evenly spaced SD video clips each individually sized to 40%. The group is positioned near the top of the screen at 100% size.
    The group then marches smoothly across the screen by transforming position X over 36 seconds using linear interpolation.
    I am trying to cause the group (10 seconds into the timeline) to smoothly increase in size by applying a grow/shrink behavior over 3 seconds while continuing the X transform.
    Position Y is changed to keep the location of the top of the group the same while the group grows.
    Starts OK and ends OK. Works fine all the way to the end once the behavior finishes. Using the same X transform.
    The problem is that during the grow behavior the apparent X and Y axis motion behaves incorrectly. The motion appears to change speed and even briefly reverses direction.
    I understand why this is happening but I don't know how to fix it.
    I have tried every combination of interpolation for the transforms along with every variation of the grow behavior parameters I can think of.
    Everything I have tried makes things worse and/or introduces unwanted side effects.
    Any thoughts?

    I tried to implement what you were talking about. Just to make it easier on myself, I did use a 18 piece replicator instead of 18 individual files...so hopefully that doesn't change things. I did not get any reverse or weird X,Y behaviors acting incorrectly. It started at timeline 10:00 and ended at timeline 13:00, grew 120%, and the group had an anchor point set to the top of the group so it would only grow bottom and to the sides. Stuck with the same interpolation and everything. The only thing that looked weird was that the boxes pop back in place after the grow/shrink is done. Which is just because the behavior ends. Now! something that was odd was that I couldn't keyframe any parameters in the behavior?

  • Grow/Shrink Hold Size

    I am using a Motion HD template (Blue News template) and one of them starts with a picture of a person growing in size. The template only lasts about 5 seconds but i want to use it longer. My question is how after the image has grown how can I keep it that size. Right now, it grows but then goes back to the size it started at. I don't want to keep growing the image, grow it for the 5 seconds and then hold it there.

    Personally, I'd remove the Grow/Shrink behavior and instead keyframe the scale using the Record button over the time you want it to grow - you then have the flexibility to change how the growth starts and stops by changing the keyframe interpolation.

  • Trying to achieve grow/shrink to nothing effect

    I'n trying to create a vertical panel where items can be added which are displayed top to bottom. Each "item" is a box with some interesting information to display and should be shown for a few seconds.
    The space where it will be displayed will first grow to make room, then fade in, display for a few seconds, fade out, and shrink back to nothing. When it grow/shrinks, the intention is that the items above and below will make room/close the gap accordingly.
    Now, I've gotten quite far to get this to work with two different solutions, but both have a problem.
    Solution 1
    Put the "item" in a Group. Then use Timelines to animate its ScaleYProperty to simulate the shrinking to nothing effect.
    Problem: As soon as I put things in a group, the content of the "Item" is too small (it uses the preferred size instead of expanding to fill available space). If I use a StackPane it looks exactly how I want, but the ScaleYProperty won't work properly then (because StackPane ignores transformations in its size calculations).
    I've tried forcing the preferred size to the correct value. Problem: I don't know the correct value, I don't know how to find out how big the "content" area should be. Doing a getWidth() of the vertical panel and substracting the Insets comes close, but there's always a small difference -- in other words, unsatisfactory.
    ...stuck
    Solution 2
    Replace the "item" with Rectangles that I resize to make space for the "item" before actually adding it. The shrinking effect works great... but I cannot get the grow effect to work properly because I donot know how big the "item" will be... there's no way to find out how big something will be once added to the scene graph.
    Fiddling with adding the item temporarily to the scene graph, then trying to get its size somehow didn't work or had annoying side effects.
    So, basically, I'm stuck with both approaches.
    First because Groups donot allow their content to fill available space... (and finding out the correct preferred size seems not possible)...
    Second because I cannot find out how big something will be BEFORE adding it to a scene graph...
    Any ideas what I can still try?

    Okay, a fully working example ripped completely out of its context :)
    This needs some keyboard control. Press 1/2 to adjust the "Playback rate" and 9/0 to adjust "Volume". In the center of the screen boxes will appear showing what you just did, and will fade out after a while. Adjusting both settings shortly after each other can result in two bars being displayed (this is intended) and shows the effect I want in greater detail.
    The part I'm not happy with is where I hard-code the Preferred Width (search for setPrefWidth) because it is not correct (the width is only an estimate and changes when a slider is displayed... so the next slider added gets a different preferred width).
    Possible solutions are some other way of "shrinking" a group without using the ScaleYProperty; somehow getting the correct preferred width; somehow getting Group to respect the "available space" for my StackPane... etc...
    It works great in my opinion, just this little snag I want to get rid of.
    playback-state-overlay.css
    .root {
      -c-main: rgb(173, 216, 230);
      -c-shadow-highlight: derive(-c-main, -50%);
      color-content-background: derive(-c-main, -80%);
    .label {
      -fx-text-fill: white;
    .slider {
      -fx-show-tick-labels: true;
      -fx-show-tick-marks: true;
    .slider .axis {
      -fx-tick-label-fill: -c-main;
    .slider .thumb {
      -fx-background-color: rgb(0, 0, 0, 0.5), rgb(64, 64, 64), linear-gradient(to bottom, yellow, white, orange);
      -fx-background-insets: 0, 1, 2;
      -fx-background-radius: 0.3em, 0.25em, 0.2em;
      -fx-padding: 0.75em 0.3em 0.75em 0.3em;
    .slider .track {
      -fx-background-color: -c-shadow-highlight, derive(-c-main, -22%), linear-gradient(to bottom, derive(-c-main,-15.5%), derive(-c-main,34%) 30%, derive(-c-main,68%));
      -fx-background-insets: 1 0 -1 0, 0, 1;
      -fx-background-radius: 0.2em, 0.2em, 0.1em;
      -fx-padding: 0.208333em;
    .axis:top {
        -fx-border-color: transparent transparent #aaaaaa transparent;
    .axis:right {
        -fx-border-color: transparent transparent transparent #aaaaaa;
    .axis:bottom {
        -fx-border-color: #aaaaaa transparent transparent transparent;
    .axis:left {
        -fx-border-color: transparent #aaaaaa transparent transparent;
    .axis-tick-mark {
      -fx-stroke: #aaaaaa;
    .item {
      -fx-font: 22pt "Arial";
    .content-box {
      -fx-background-color: color-content-background;
      -fx-background-radius: 20;
      -fx-padding: 30;
      -fx-hgap: 20; 
    ShrinkTest.java
    package hs.javafx;
    import javafx.animation.Animation.Status;
    import javafx.animation.KeyFrame;
    import javafx.animation.KeyValue;
    import javafx.animation.Timeline;
    import javafx.application.Application;
    import javafx.beans.binding.NumberExpression;
    import javafx.beans.binding.StringBinding;
    import javafx.beans.binding.StringExpression;
    import javafx.beans.property.DoubleProperty;
    import javafx.beans.property.IntegerProperty;
    import javafx.beans.property.SimpleDoubleProperty;
    import javafx.beans.property.SimpleIntegerProperty;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.collections.ListChangeListener;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Label;
    import javafx.scene.control.Slider;
    import javafx.scene.input.KeyCode;
    import javafx.scene.input.KeyEvent;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.ColumnConstraints;
    import javafx.scene.layout.GridPane;
    import javafx.scene.layout.RowConstraints;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    public class ShrinkTest extends Application {
      private final Player player = new Player();
      private final VBox playbackStateOverlay = new VBox() {{
        getStyleClass().add("content-box");
        setVisible(false);
      public static void main(String[] args) {
        Application.launch(ShrinkTest.class, args);
      @Override
      public void start(Stage primaryStage) throws Exception {
        StackPane stackPane = new StackPane();
        playbackStateOverlay.getChildren().addListener(new ListChangeListener<Node>() {
          @Override
          public void onChanged(ListChangeListener.Change<? extends Node> change) {
            playbackStateOverlay.setVisible(!change.getList().isEmpty());
        stackPane.setOnKeyPressed(new EventHandler<KeyEvent>() {
          @Override
          public void handle(KeyEvent event) {
            if(event.getCode() == KeyCode.DIGIT1) {
              player.rateProperty().set(player.rateProperty().get() - 0.1);
            if(event.getCode() == KeyCode.DIGIT2) {
              player.rateProperty().set(player.rateProperty().get() + 0.1);
            if(event.getCode() == KeyCode.DIGIT9) {
              player.volumeProperty().set(player.volumeProperty().get() - 1);
            if(event.getCode() == KeyCode.DIGIT0) {
              player.volumeProperty().set(player.volumeProperty().get() + 1);
            event.consume();
        stackPane.getChildren().add(new GridPane() {{
          getColumnConstraints().add(new ColumnConstraints() {{
            setPercentWidth(25);
          getColumnConstraints().add(new ColumnConstraints() {{
            setPercentWidth(50);
          getColumnConstraints().add(new ColumnConstraints() {{
            setPercentWidth(25);
          getRowConstraints().add(new RowConstraints() {{
            setPercentHeight(10);
          add(new Button("Hi"), 0, 0);  // something to get focus
          add(playbackStateOverlay, 1, 1);
        Scene scene = new Scene(stackPane);
        scene.getStylesheets().add("playback-state-overlay.css");
        primaryStage.setScene(scene);
        primaryStage.setFullScreen(true);
        primaryStage.show();
        final StringBinding formattedVolume = new StringBinding() {
            bind(player.volumeProperty());
          @Override
          protected String computeValue() {
            return String.format("%3d%%", player.volumeProperty().get());
        final StringBinding formattedRate = new StringBinding() {
            bind(player.rateProperty());
          @Override
          protected String computeValue() {
            return String.format("%4.1fx", player.rateProperty().get());
        player.volumeProperty().addListener(new ChangeListener<Number>() {
          @Override
          public void changed(ObservableValue<? extends Number> observable, Number oldValue, Number newValue) {
            addOSD(createOSDItem("Volume", 0.0, 100.0, player.volumeProperty(), formattedVolume));
        player.rateProperty().addListener(new ChangeListener<Number>() {
          @Override
          public void changed(ObservableValue<? extends Number> observable, Number oldValue, Number newValue) {
            addOSD(createOSDItem("Playback Speed", 0.0, 4.0, player.rateProperty(), formattedRate));
      private static Node createOSDItem(final String title, final double min, final double max, final NumberExpression value, final StringExpression valueText) {
        return new VBox() {{
          setId(title);
          getStyleClass().add("item");
          getChildren().add(new BorderPane() {{
            setLeft(new Label(title) {{
              getStyleClass().add("title");
            setRight(new Label() {{
              getStyleClass().add("value");
              textProperty().bind(valueText);
          getChildren().add(new Slider(min, max * 1.01, 0) {{  // WORKAROUND: 1.01 to work around last label display bug
            valueProperty().bind(value);
            setMinorTickCount(4);
            setMajorTickUnit(max / 4);
      public void addOSD(final Node node) {  // id of node is used to distinguish same items
        String id = node.getId();
        for(Node child : playbackStateOverlay.getChildren()) {
          if(id.equals(child.getId())) {
            Timeline timeline = (Timeline)child.getUserData();
            if(timeline.getStatus() == Status.RUNNING) {
              timeline.playFromStart();
            return;
        final StackPane stackPane = new StackPane() {{
          getChildren().add(node);
          setPrefWidth(playbackStateOverlay.getWidth() - playbackStateOverlay.getInsets().getLeft() - playbackStateOverlay.getInsets().getRight());
        node.opacityProperty().set(0);
        final Group group = new Group(stackPane);
        group.setId(node.getId());
        stackPane.setScaleY(0.0);
        final EventHandler<ActionEvent> shrinkFinished = new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            playbackStateOverlay.getChildren().remove(group);
        final Timeline shrinkTimeline = new Timeline(
          new KeyFrame(Duration.seconds(0.25), shrinkFinished, new KeyValue(stackPane.scaleYProperty(), 0))
        final EventHandler<ActionEvent> fadeInOutFinished = new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            group.setId(null);
            shrinkTimeline.play();
        final Timeline fadeInOutTimeline = new Timeline(
          new KeyFrame(Duration.seconds(0.5), new KeyValue(node.opacityProperty(), 1.0)),
          new KeyFrame(Duration.seconds(2.5), new KeyValue(node.opacityProperty(), 1.0)),
          new KeyFrame(Duration.seconds(3.0), fadeInOutFinished, new KeyValue(node.opacityProperty(), 0.0))
        EventHandler<ActionEvent> expansionFinished = new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            fadeInOutTimeline.play();
        Timeline expansionTimeline = new Timeline(
          new KeyFrame(Duration.seconds(0.25), expansionFinished, new KeyValue(stackPane.scaleYProperty(), 1.0))
        group.setUserData(fadeInOutTimeline);
        playbackStateOverlay.getChildren().add(group);
        expansionTimeline.play();
      public static class Player {
        private final IntegerProperty volume = new SimpleIntegerProperty(50);
        private final DoubleProperty rate = new SimpleDoubleProperty(1.0);
        public IntegerProperty volumeProperty() {
          return volume;
        public DoubleProperty rateProperty() {
          return rate;
    }

  • End Offset for Grow/Shrink AND Motion Path?

    I make an end offset for my Grow/Shrink ... and the clip stops where it is supposed to. Cool.
    But my Motion Path continues. So the clip stops, but then slides sideways a bit or up and down. There doesn't seem to be a matching End Offset for the Motion Path. I try placing the Motion Path to end BEFORE the end of the clip, but I'm missing something. Can't figure out how to have the two Behaviors end BEFORE the end of the clip (I want the clip to be perfectly still for a long dissolve).
    ? All ears,
    Ben

    Thank you Andy,
    It would have taken me forever to find this in the manual, if it IS in the manual. I'm about to apply it to scores of clips. Long film. All done with still images of ancient symbols and artifacts. The only thing keeping this film alive will be the animated camera moves ... and of course the content, which in this case is extraordinary: the work of David Talbott, a pretty convincing theory that explains the origin of all story on this planet. Stranger than sci-fi.
    Thank you mucho for your help,
    Ben

  • How do I reverse the order in which files appear in Icon View option?

    I took a lot of pictures on a trip recently, which I have uploaded to a folder in Finder. When I click on View Options and then Keep Arranged by Date Created, they get rearranged so that the most recent appears at the top, and the first ones taken are at the bottom. How can I reverse this order, so that they appear in chronological order?
    Thanks,
    Richard

    There might be another way.
    There are utilities which can batch-rename files, including options that sort by date, begin all the resulting filenames with a common prefix, and then add a sequential "padded" filename suffix. If you then display the resulting collection of files in alphabetical order (as in Finder's Arrange by Name in icon view), they should be sorted chronologically.
    I haven't tried any of these, but the site for [A Better Finder Rename|http://www.publicspace.net/ABetterFinderRename/index.html], shareware, states:
    "A Better Finder Rename knows how to extract EXIF shooting date and time information from digital camera images and exploit them in creating sequence numbers or adding time and date information to the file name. "
    There may be suitable freeware alternatives -search for *file renamer* in [Version Tracker|http://www.versiontracker.com/macosx>.

  • How do I reverse the order of file lists in finder?

    When I display a finder page with icons the sort is ascending (A-Z), but when I use the list function it is decending (Z-A).  How do I reverse the list order?

    Welcome to Apple Support Communities. We're users here and don't speak for "Apple, Inc."
    In Finder icon view, click the Arrange button and select which column you'd like to sort by.
    In Finder list view, click the top header of any column to sort by that column. Clicking the same header again reverses the sort order (and the small 'arrow' at the end of the column name reverses direction too).
    And using Finder, View, Customize Toolbar the Finder window toolbar can be customized to display icons only, text only or both, as well as adding additional icons to the default toolbar:
    Message was edited by: kostby

  • Had an iPod touch and an iPhone on iTunes. Added another iPhone and iTunes erased/ignored the first two units. I deleted iTunes and reloaded to start over. How do I "Reverse" sync what is on my iPod touch and my first iPhone??

    Had an ipod touch and an iphone in iTunes. Spouse added their iphone and it deleted/ignored the first 2 (ipod touch and iphone). Deleted iTunes from computer, reloaded to start over. How do I "reverse" sync my iphone and ipod touch?? Do not want to lose all the info.

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software

  • HT5660 When updating Adobe Flash Player on my Mac I am told "blocked plug in."  How do I reverse this?

    When trying to update Adobe Flash Player on My iMac I get a message that says "blocked Plug-ins."  When going back to previously viewed studies, including youtube, I get the same message.  What changed if the update was never installed?  How can I reverse this situation?  Thanks for any ideas? 
    PS - not a techie :-)

    Are you actually getting a Java error too, or are you only getting a Flash error?

  • While installing a program (MediaCenter.exe) to handle audiobooks from the library, I erroneously associated the download site with Windows Media Player instead of the actual application (NetLibrary Media Center). How can I reverse/change this?

    While installing a program (MediaCenter.exe) to handle audiobooks from the library, I erroneously associated the download site with Windows Media Player instead of the actual application (NetLibrary Media Center). How can I reverse/change this? Reinstalling the application does not clear the error, so I'm assuming the association is somewhere in Firefox.

    Never mind -- I just found it under Tools/Options.../Applications, where I changed the incorrect association of "nlmcp" from Windows Media Player to the correct one, NetLibrary Media Center. Done!

  • How do you reverse a goods receipt document of a service entry sheet?

    Hi SAP experts,
    How do you reverse a goods receipt document of a service entry sheet? Your help/opinions will be highly appreciated. Thanks!
    Jessica Mari C. Cruz
    Jr. Software Development Analyst
    SAP- Materials Management Team

    You can sue the ML81N itself to delete the service entry sheet and once you will delete the SES, system will generate the Material document for reversal of GR.
    Go to ML81N and enter the service number and change the screen to change mode.
    If release statergy is used for this then cancel the release using the same statergy.
    Click Revoke acceptance button or Ctrl + F2.
    Edited by: Manish Kumar Agarwal on Aug 4, 2009 8:27 AM

  • Help, I installed parallel and windows, and opened videos (on an external hard disk) with windows, and now cannot open them with Mac, and use i movies.  How do I reverse this?

    Help, I installed parallel and windows, and opened videos (on an external hard disk) with windows, and now cannot open them with Mac, and use i movies.  How do I reverse this?

    Paragraphs help the reader, just saying.
    What are you actually trying to do? Why do you need "DVD size" folders if you're creatng an Archive on an external hard drive?
    Also, I understand burning folders instead of individual photos or albums gives you more space on a DVD.
    It makes no difference at all.
    How can I keep the captions on my photos (not events) when I print or transfer to a new folder?
    You can export while writing the metadata to the file in most cases.
    Tne only way I know is to copy photos from the Windows to folders on my HD, then copy and paste photos or albums or events to HD, then create a new folder and fill it to the appropriate DVD size. 
    HD? Another HD? You use HD there in a way that makes no sense. What's the point of 'DVD size'?
    I also thought I should download future photos to my Canon programming that comes with EOS cameras and edit and then decide which photos to save to iPhoto library and which to save only to my archival HD?
    Does this have any relation to the previous questions? You know you can delete from iPhoto, right?
    You're somewhat confused and you need to
    1. Decide what exactly you want to do
    2. Then go about it.
    If I understand you correctly - and there's no guarantee that I do -  the easiest thing is to bring all your Photos into iPhoto and do everything from there.
    You can have an archive on an external disk, you can sort and select and edit with or via iPhoto
    Regards
    TD

  • I just updated to 10.8 Mountain Lion. Now I must enter my admin password each time I attempt to access my main hard drive.  How do I reverse the need for the password.  It's a real PAIN!

    I just updated to 10.8 Mountain Lion from 10.7.5.  Now I must enter my admin password each time I attempt to access my main hard drive.  How do I reverse the need for the password?  It's a real PAIN! 

    I'd think you have a Keychain problem (Keychain storing passwords and the likes).
    When you are being asked, are you offered the checkbox, "Remember this password in my Keychain"? If so, check and see if it stops asking.

  • How do I reverse the update to Safari 4.1?

    I have a PowerMac G5 running under Mac OS 10.4.11.
    I allowed Software Update to download and install the version 4.1 of Safari Sunday night. Monday night I found that links on a website in 1 of my tabs that open to a new window do NOT return to that tab when closed, instead they return to the rightmost tab. I also found that links in a website in a different tab that open in that tab are NOT marked as read when the original webpage is returned to. Neither of these bugs were happening before the update and both of them make it difficult to navigate the internet. How do I reverse the update until Apple fixes these bugs? (That update didn't corrupt my preferences, did it? They never have before but there is always a 1st time for everything.)
    I did try deleting Safari from the Applications Folder and installing Safari version 4.0.5; however, version 4.0.5 wouldn't install since it claimed that a newer version was already installed, even though there was no Safari installed on my computer at the time. (I wasn't about to delete my Preferences and bookmarks. I have no desire to set up Safari from scratch! If necessary I can get my latest offsite backup, which might have a backup of my Preferences Folder, but I don't think I backed up that folder on that 1, but the previous 1 does have it, though that is several months old.)
    Any help would be appreciated, though Apple's not posting buggy software would have been the best solution. (Though they don't do as bad as Bill Gates company does!)

    Thanks for offering to help, kisuke3.  Unfortunately, neither safe mode nor a new user account solves the problem.
    I just received this information from the Chemical Abstracts Service that provides the web-based SciFinder chemical structure and literature search software.  I'm not using OS X Lion, so I'm not sure if the comment about Safari 5.1 being "unable to run Java-based applications" applies under OS 10.6, but it might explain my problem?  I plan to check the links below, and they might help others having difficulty under OS Lion. 
    "On July 20, 2011, Apple Inc. released new versions of their desktop
    operating system, Mac OS X Lion (version 10.7), and their Internet
    browser, Safari (version 5.1). Currently, Safari 5.1 is unable to run
    Java-based applications like the SciFinder structure drawing editor.
    This problem is not restricted to SciFinder.
    Customers who have upgraded to Safari 5.1 and wish to draw and search
    structures or reactions in SciFinder should either use Firefox or a
    previous Safari version until this browser problem is addressed by
    Apple.
    Mac OS X Lion is the first Apple OS upgrade to ship without a built-in
    Java runtime extension (JRE). SciFinder users who have upgraded to Mac
    OS X Lion can download the latest Java JRE from the Apple website at
    http://support.apple.com/kb/DL1421. Users can validate their Java
    installation by checking this website:
    http://javatester.org/version.html. "

Maybe you are looking for

  • Scan in Photoshop CS5.1

    I  am trying to use Epson perfection 4180, which I used for CS2, The download of the TWAIN plugin from the Adobe website, which is promised to make this function, does not work. Anyone has any idea what to do?

  • If you enter a WBS at header level can it be copied down to the item lines?

    We have sales orders which require a WBS to be entered at header level (PS-POSID), and then on order save (VA01), it copies the WBS elements down to the item lines. Has anyone come across this requirement before and if so, how did you do it? Is anyon

  • API to Start / Stop Applications or to perform NWA like operations

    Hello, is there an API available that enables me to start and stop deployed ears programmatically? Or more generally asked, is there a way to perform the same actions that are possible with the NWA, e.g. modify web service ports, deploy applications

  • Wireless - b security

    my wireless - b is setup for wep and working fine, I tried to switch to wpa and I get connected to the router but not the internet and not sure why. is it worth trying to switch or is wep just as good.  My wireless usb is also a linksys if that make

  • How does IronPort assist in load balancing?

    There are plans to put a load balancer in front of an IronPort cluster of 6. As of now, we have Mx record priority (Round robin) based load balancing. Does an ESA has the intelligence to automatically reject incoming connections if other ESAs in the