Scrolling, and Adaptive Layout help

Hi guys, I am new to edge animate,
I would like to know, like when a person scrolls its scrolls to a cirtain point seemlessly, not like when you are using a mouse, like blobk by block.
also I would like to know more about adaptive layout, if anyone can help me more thorught skype,
I would me really pleased, thank you
my skype is Kevin2019170
Thank you

Well, only can help you with the background image...  put this code on document.compositionReady and window.resize events:
var imageRatio = 1.7777; // Aspect 16:9, you can use any proportion depends of your image dimensions
var sWidth = $(window).width()
var sHeight = $(window).height()
if ((sWidth / sHeight) > imageRatio) {
  sym.$("imgBackground").css("width", sWidth +"px");
  sym.$("imgBackground").css("height", sWidth/imageRatio +"px");
else {
  sym.$("imgBackground").css("width", sHeight*imageRatio +"px");
  sym.$("imgBackground").css("height", sHeight +"px");

Similar Messages

  • 6.5 Upgrade and Adaptive Layouts

    I just upgraded from ALUI 6.1 to 6.5. When I edit the experience definitions, under 'Edit Object Settings' there is no option for 'Adaptive Page Layout Settings'. I checked Configuration Manager and Adaptive layout mode is enabled. Did I miss something in the upgrade process?? or am I just missing something obvious?
    Thanks,
    Jason

    Jason,
    For me it appears on the left panel beneath login settings.
    You may need to be logged in as an admin account to see it, not sure.
    Otherwise verify your install and that you loaded all the pte files. You can do that by looking at the source code of any of your portal pages and at the bottom of the page it'll tell you the version.
    It should look something like this:
    <!-Portal Version: 6.5.0.323160, Changelist: 323160, Build Date: 03/21/2008 at 12:21 AM-->

  • N85, Quickoffice scrolling and doc viewers HELP!

    I must admit, I've always had nokias and Ive loved almost every one I've bought. Ive just got the N85 and I hate, hate, hate the new Quickoffice.
    The scrolling goes line by line not as a 'page'. I use quickoffice to read my ebooks I have in .doc format, which are around 2000 in numbers, and I am finding it hard not to throw this phone against the wall.
    Who has the premiere version, and is the scrolling the same? As I know officesuite lets you view docs as well, but the scrolling is still line by line. I dont want to edit any documents, so I dont want to own the premiere as I wont use it.
    I would love to have to old quickoffice viewer that is on my N82, but with the N85 I've read that you cant uninstall quickoffice as it is firmware, and so I cant install the old quickoffice version 3 read only as I can only upgrade.
    Any help would be gratefully received!
    Juli

    No I didn't. The # key seems to do the 'page' scroll, but who wants to keep the keypad open to scroll when you have a slide phone?!
    This issue is so irritating. Im sure hundreds of other have this problem too, but seeing as they havent fixed it, or changed it I reckon they arn't going to bother. I dd contact Quickoffice and they said "Features come and go, as some new ones are added the older ones have to go" which is **bleep**, generally!
    Oh, and they dont allow you to find a place by pressing the numbers anymore either, thats another moment I wanted to throw the thing against the wall...
    I know that if you remember what page you are on, if your on page-layout, you can renavigate back to it, but if you don't, then you have to just scroll line by line, what a silly way to navigate. Top/Middle/Bottom also is a bad idea, what if your doc is 1000 pages long?
    Anyway, rant over. Good luck with the new software. I've left the N85 in its box and Im back to using my N82 because of this problem. Shame really.

  • Drawing and some layout help for a simple control: thin lines and application start

    I am trying to create a new, simple control. The control should act as a grouping marker much like that found in the Mathematica notebook interface. It is designed to sit to the right of a node and draw a simple bracket. The look of the bracket changes depending on whether the node is logically marked open or closed.
    After looking at some blogs and searching, I tried setting the snapToPixels to true in the container holding the marker control as well as the strokewidth but I am still finding that the bracket line is too thick. I am trying to draw a thin line. Also, I am unable to get the layout to work when the test application is first opened. One of the outer brackets is cut-off. I hardcoded some numbers into the skin just to get something to work.
    Is there a better way to implement this control?
    How can I get the fine line drawn as well as the layout correct at application start?
    package org.notebook;
    import javafx.beans.property.BooleanProperty;
    import javafx.beans.property.IntegerProperty;
    import javafx.beans.property.SimpleBooleanProperty;
    import javafx.beans.property.SimpleIntegerProperty;
    import javafx.scene.control.Control;
    * Provide a simple and thin bracket that changes
    * it appearance based on whether its closed or open.
    public class GroupingMarker extends Control {
      private final static String DEFAULT_STYLE_CLASS = "grouping-marker";
      private BooleanProperty open;
      private IntegerProperty depth;
      public BooleanProperty openProperty() { return open; }
      public IntegerProperty depthProperty() { return depth; }
      public GroupingMarker(boolean open) {
      this();
      setOpen(open);
      public GroupingMarker() {
      open = new SimpleBooleanProperty(true);
      depth = new SimpleIntegerProperty(0);
      getStyleClass().add(DEFAULT_STYLE_CLASS);
      // TODO: Change to use CSS directly
      setSkin(new GroupingMarkerSkin(this));
      public boolean isOpen() {
      return open.get();
      public void setOpen(boolean flag) {
      open.set(flag);
      public int getDepth() {
      return depth.get();
      public void setDepth(int depth) {
      this.depth.set(depth);
    package org.notebook;
    import javafx.scene.Group;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.FillRule;
    import javafx.scene.shape.LineTo;
    import javafx.scene.shape.MoveTo;
    import javafx.scene.shape.Path;
    import com.sun.javafx.scene.control.skin.SkinBase;
    * The skin draws some simple lines on the right hand side of
    * the control. The lines reflect whether the control is considered
    * open or closed. Since there is no content, there is no
    * content handling code needed.
    public class GroupingMarkerSkin extends SkinBase<GroupingMarker, GroupingMarkerBehavior> {
      GroupingMarker control;
      Color lineColor;
      double shelfLength;
      double thickness;
      private Group lines;
      public GroupingMarkerSkin(GroupingMarker control) {
      super(control, new GroupingMarkerBehavior(control));
      this.control = control;
      lineColor = Color.BLUE;
      shelfLength = 5.0;
      thickness = 1.0;
      init();
      * Attached listeners to the properties in the control.
      protected void init() {
      registerChangeListener(control.openProperty(), "OPEN");
      registerChangeListener(control.depthProperty(), "DEPTH");
      lines = new Group();
      repaint();
      @Override
      protected void handleControlPropertyChanged(String arg0) {
      super.handleControlPropertyChanged(arg0);
        @Override public final GroupingMarker getSkinnable() {
            return control;
        @Override public final void dispose() {
        super.dispose();
            control = null;
        @Override
        protected double computePrefHeight(double arg0) {
        System.out.println("ph: " + arg0);
        return super.computePrefHeight(arg0);
        @Override
        protected double computePrefWidth(double arg0) {
        System.out.println("pw: " + arg0);
        return super.computePrefWidth(40.0);
         * Call this if a property changes that affects the visible
         * control.
        public void repaint() {
        requestLayout();
        @Override
        protected void layoutChildren() {
        if(control.getScene() != null) {
        drawLines();
        getChildren().setAll(lines);
        super.layoutChildren();
        protected void drawLines() {
        lines.getChildren().clear();
        System.out.println("bounds local: " + control.getBoundsInLocal());
        System.out.println("bounds parent: " + control.getBoundsInParent());
        System.out.println("bounds layout: " + control.getLayoutBounds());
        System.out.println("pref wxh: " + control.getPrefWidth() + "x" + control.getPrefHeight());
        double width = Math.max(0, 20.0 - 2 * 2.0);
        double height = control.getPrefHeight() - 4.0;
        height = Math.max(0, control.getBoundsInLocal().getHeight()-4.0);
        System.out.println("w: " + width + ", h: " + height);
        double margin = 4.0;
        final Path VERTICAL = new Path();
        VERTICAL.setFillRule(FillRule.EVEN_ODD);
        VERTICAL.getElements().add(new MoveTo(margin, margin)); // start
        VERTICAL.getElements().add(new LineTo(margin + shelfLength, margin)); // top horz line
        VERTICAL.getElements().add(new LineTo(margin + shelfLength, height - margin)); // vert line
        if(control.isOpen()) {
        VERTICAL.getElements().add(new LineTo(margin, height - margin)); // bottom horz line
        } else {
        VERTICAL.getElements().add(new LineTo(margin, height-margin-4.0));
        //VERTICAL.getElements().add(new ClosePath());
        VERTICAL.setStrokeWidth(thickness);
        VERTICAL.setStroke(lineColor);
        lines.getChildren().addAll(VERTICAL);
        lines.setCache(true);
    package org.notebook;
    import com.sun.javafx.scene.control.behavior.BehaviorBase;
    public class GroupingMarkerBehavior extends BehaviorBase<GroupingMarker> {
      public GroupingMarkerBehavior(final GroupingMarker control) {
      super(control);
    package org.notebook;
    import javafx.application.Application;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.control.TextArea;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class TestGroupingMarker extends Application {
      public static void main(String args[]) {
      launch(TestGroupingMarker.class, args);
      @Override
      public void start(Stage stage) throws Exception {
      VBox vbox = new VBox();
      BorderPane p = new BorderPane();
      VBox first = new VBox();
      first.getChildren().add(makeEntry("In[1]=", "my label", 200.0, true));
      first.getChildren().add(makeEntry("Out[1]=", "the output!", 200.0, true));
      p.setCenter(first);
      p.setRight(new GroupingMarker(true));
      vbox.getChildren().add(p);
      vbox.getChildren().add(makeEntry("In[2]=", "my label 2", 100.0, false));
      Scene scene = new Scene(vbox,500,700);
      scene.getStylesheets().add(TestGroupingMarker.class.getResource("main.css").toExternalForm());
      stage.setScene(scene);
      stage.setTitle("GroupingMarker test");
      stage.show();
      protected Node makeEntry(String io, String text, double height, boolean open) {
      BorderPane pane2 = new BorderPane();
      pane2.setSnapToPixel(true);
      Label label2 = new Label(io);
      label2.getStyleClass().add("io-label");
      pane2.setLeft(label2);
      TextArea area2 = new TextArea(text);
      area2.getStyleClass().add("io-content");
      area2.setPrefHeight(height);
      pane2.setCenter(area2);
      GroupingMarker marker2 = new GroupingMarker();
      marker2.setOpen(open);
      pane2.setRight(marker2);
      return pane2;

    The test interfaces are already defined for you - the 3rd party session bean remote/local interfaces.
    It is pretty trivial to create implementations of those interfaces to return the test data from your XML files.
    There are a number of ways to handle the switching, if you have used the service locator pattern, then I would personally slot the logic in to the service locator, to either look up the 3rd party bean or return a POJO test implementation of the interface according to configuration.
    Without the service locator, you are forced to do a little more work, you will have to implement your own test session beans to the same interfaces as the 3rd party session beans.
    You can then either deploy them instead of the 3rd party beans or you can deploy both the test and the 3rd party beans under different JNDI names,and use ejb-ref tags and allow you to switch between test and real versions by changing the ejb-link value.
    Hope this helps.
    Bob B.

  • Middleware and Adapter Object help needed

    Hi all,
    We are trying to replicate business agreements from CRM to contract accounts in our R/3 IS-U system. We've followed the various cookbooks and guidelines but have so far been unsuccessful. For object BUAG_MAIN, is an adapter object needed? If so, we are unable to find one in R3AC1.
    If we check the BDoc message, we are getting two Technical errors after creating the business agreement:
    1. "Outbound call for BDoc type BUAG_MAIN to adapter module CRM_UPLOAD_TO_OLTP failed."
    2. "Service that caused the error: SMW3_OUTBOUNDADP_CALLADAPTERS"
    Any ideas? Points will be awarded for helpful responses. Thanks in advance.
    Message was edited by:
            John S

    So in R3AC1 there is a button to show inactive adapter objects. Hitting this showed BUAG_MAIN. After that, we opened BUAG_MAIN and activated the object. This resulted in a couple of changes that we clicked through. We then were able to do an initial load of the business agreements and replications of newly created ones happened thereafter.

  • Button and image layout help.

    It is me again. I need some more help. I want to put the four buttons at the south border, and I want to put the image at the North Center. Now I want them obviously to be on the same panel. I would also like to add them all at once like in my code. Is there an override mechanism so that I can just put the image at the NORTH CENTER and keep the four buttons at the south border?
            QuizPanel = new JPanel();
            QuizPanel.add(label);  // I want this at the north center
            QuizPanel.add(button1);
            QuizPanel.add(button2);
            QuizPanel.add(button3);
            QuizPanel.add(button4);
            add(QuizPanel,BorderLayout.SOUTH);
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    * @author Matt
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class mario {
         * @param args the command line arguments
        public static void main(String[] args) {
            // TODO code application logic here
            EventQueue.invokeLater(new Runnable()
                public void run()
                    QuizFrame frame = new QuizFrame();
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.setVisible(true);
    class QuizFrame extends JFrame
        public QuizFrame()
            setSize(DEFAULT_WIDTH,DEFAULT_HEIGHT);
            ImageIcon icon = new ImageIcon("C:\\users\\Matt\\Documents\\mario2.gif");
            JLabel label    =  new JLabel();
            label.setIcon(icon);
            JButton button1 = new JButton("one");
            JButton button2 = new JButton("two");
            JButton button3 = new JButton("three");
            JButton button4 = new JButton("four");
            QuizPanel = new JPanel();
            QuizPanel.add(label);
            QuizPanel.add(button1);
            QuizPanel.add(button2);
            QuizPanel.add(button3);
            QuizPanel.add(button4);
            add(QuizPanel,BorderLayout.SOUTH);
            QuizLabel = new JLabel("This is a test",JLabel.CENTER);
            add(QuizLabel,BorderLayout.CENTER);
        private JPanel QuizPanel;
        private JLabel QuizLabel;
        private static final int DEFAULT_WIDTH = 300;
        private static final int DEFAULT_HEIGHT = 200;
    }       

    I ignored some of the constraints of what you 'wanted' to do. Mostly because they were silly.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.net.URL;
    public class mario {
         * @param args the command line arguments
        public static void main(String[] args) {
            // TODO code application logic here
            EventQueue.invokeLater(new Runnable()
                public void run()
                    QuizFrame frame = new QuizFrame();
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.setVisible(true);
    class QuizFrame extends JFrame
        public QuizFrame()
            JLabel label    =  null;
            try {
                    URL url = new URL("http://forums.sun.com/im/bronze-star.gif");
                    ImageIcon icon = new ImageIcon(url);
                    label    =  new JLabel(icon,JLabel.CENTER);
            } catch(Exception continueWithoutIcon) {
                    label    =  new JLabel();
            JButton button1 = new JButton("one");
            JButton button2 = new JButton("two");
            JButton button3 = new JButton("three");
            JButton button4 = new JButton("four");
            QuizPanel = new JPanel();
            add(label, BorderLayout.NORTH);
            QuizPanel.add(button1);
            QuizPanel.add(button2);
            QuizPanel.add(button3);
            QuizPanel.add(button4);
            add(QuizPanel,BorderLayout.SOUTH);
            QuizLabel = new JLabel("This is a test",JLabel.CENTER);
            add(QuizLabel,BorderLayout.CENTER);
            pack();
        private JPanel QuizPanel;
        private JLabel QuizLabel;
    }       

  • Adaptive Layout - Portlet horizontal alignment

    Is it possible to create an Adaptive Layout with horizontal alignment of portlets in a column?
    Attempting to create a layout with column1 above column 2 and column3 along right side of page.

    I apologize for the late response.
    I was not able to switch the alignment. I moved on to another approach due to limited time.
    Adaptive layouts are a composite of the base portal css styles and adaptive layout styles. It is difficult without a tool that is able to pull all the components into a single view based upon references. (Now that would be a useful tool.... anyone listening). The most useful tool i have found so far is Dreamweaver, it allows you to create custom tag libraries for limited design help.
    I welcome any input on a tool that can handle the tag libraries.
    I will update this thread if I make any discoveries.

  • Urgent help needed!! Layout table and Draw layout cell dissapeared.

    I need some urgent help. I'm using CS3 but for a while my
    Layout Table and Draw Layout Cell icons appear greyed and can't use
    them at all. Is there any kind soul out there who knows how to fix
    this? I'm going nuts trying all the possible options but none seem
    to work.
    Help please!!!!!!

    > How would you about designing a page without using html?
    You don't. But I don't recall suggesting that you not use
    HTML. I just
    suggested that you use best-practice HTML, no? Or maybe you
    meant to ask
    how you would go about building your site without learning
    HTML? In that
    case, I think you are outta luck. Using DW without knowing
    HTML is a very
    punishing experience, I'm afraid.
    > PS: A virtual box of 12 bottles of Moet Chandon is
    already on your way!!
    I'd prefer Cristal, please.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Untersberg" <[email protected]> wrote in
    message
    news:g4tj9a$m5o$[email protected]..
    > Ahhhhhh!!!!! They came up!!!! They came up again!!
    > I was on standard mode. Now going back to your
    suggestion, which I really
    > appreciate. How would you about designing a page without
    using html? I'm
    > just
    > redesigning my website at the moment and need it to get
    going urgently,
    > hence
    > the reluctance to start learning HTML at the moment.
    I'll do after but I
    > need
    > to get this up and running fairly quickly.
    >
    > Cheers.
    >
    > PS: A virtual box of 12 bottles of Moet Chandon is
    already on your way!!
    >

  • I left my Magic Mouse on overnight and now the scrolling and swiping does not work. Help Me!

    Hey guys,
    About a month agop I got a Magic Mouse as a Birthday present and have been using it semi regularly on my Macbook. However, last night I accidentally left the mouse on while the computer was off overnight. Initially the mouse was completely not working, so I managed to reboot it by deleting certain things in the extensions folder (AppleBluetoothMutlitouch.kext and AppleMultitouchDriver.Kext) and while the mouse works fine now, the scrolling and swiping functions no longer work. I've tried downloading the update on the mac site, but everytime the message "a newer version of this software already exists" pops up!
    I'm completely stumped (and I do not have USB Overdrive on my Mac)

    It's obvious that you need a screen repair.
    This tells you prices:  http://www.apple.com/support/ipod/service/prices/
    If you bring your ipod into an apple store, they can also ship it out for repairs. Also you should back up your ipod onto your computer before you bring it anywhere, so your memory doesnt get wiped out. If you have itunes IOS 6.1.3, plug the device into the computer, bring up itunes, in the top right hand corner click the button that says ipod, then click summary. Near the center of the page should be a button that says back up now. Click that and it will save all of your ipod's ino to your computer so you can re-download it when its fixed. Hopes this helps!

  • On 15/12/2012 i send iphone 4s adapter to digi klang for Warranty. until today digi center still talk to me go back home and waiting.pls help  Thank.

    on 15/12/2012 i send iphone 4s adapter to digi klang for Warranty. until today digi center still talk to me go back home and waiting.pls help
    Thank.

    This is a USER to User technical Forum
    There is no Apple presence on this forum
    So nothing anyone here can do
    As this is a public World wide Public forum I suggest you remove the document you have strangely decided to copy above .It looks like some form ID card

  • I need help scrolling and highlighting for a vast amount of pics that I'm trying to transfer. I have a macbook pro osx 10.5.8

    I need help scrolling and highlighting for a vast amount of pics that I'm trying to transfer. I have a macbook pro osx 10.5.8

    I need help scrolling and highlighting for a vast amount of pics that I'm trying to transfer. I have a macbook pro osx 10.5.8

  • PLEASE HELP!  members deleted after refreshing, current report and report layout

    Hi ,
    First of all , before explain my issue, I read the note about March Microsoft update, and my symptoms aren't exactly similar but almost the same.
    And it appeared last week, so one month after the ms update.
    So, I opened my report, and I see that current report and report layout are greyed out,
    I try to refresh the report and some members in rows axis are deleted.
    I'm only  one to have this problem in my team.
    Is there anybody able to solve my issue please ?
    Thanks in advance
    Jonas
    P.S  sorry for my english.

    Hi Marco,
    First of all, sorry to reply long a time after you answer but I was so very busy with another things.
    In fact, It's was a mistake, It's sure that it's not about an update. My issue comes only when I save my report in a different server, When I'm in the  source server,  I select the target server with  "Select Another Connection" process And I save my report in the target server.
    After that,  lot of members are dissapeared in my row axis.
    I don't know why.

  • I need help with scrolling and keyboard buttons on windows 7

    I've been able to install sound, bluetooth, and I'm able to do a right click.
    But for some reason, I still *can't scroll* and *the buttons on the keyboard (i.e. the eject button*), still won't work.
    There are two trackpad drivers on the snow leopard dvd. One is called multitouch and one just called *track pad*. Which one of those should I install?

    Hi nayefo,
    Try installing multitouch, and then see, while in windows, if you've successfully installed multitouch and multitouch mouse, you should have those drivers. Also check if you've installed trackpad and trackpad enabler.
    Cheers,
    Erik

  • How can I stop my site from appearing at the left in the tablet and phone layouts?

    At the moment my site works on desktop browsers but appears pinched to the left on phones and tablets.
    www.lrproductions.biz
    I have checked for any miscellaneous text boxes, and I also removed the scrolling fx to try and fix the the bug. Nothing seems to be working. I would really appreciate any help.
    Hughie

    Hello,
    Please make sure that there is no element line rectangle or text box outside browser are in Phone and tablet layout.
    If it is then either delete them or move it inside browser area.
    To find the exact browser area Please click on View > Show Grid Overlay. Pink Shaded area is the browser area.
    Please let me know if it do not work for you.
    Regards
    Vivek

  • Search Module for adaptive layout

    Hi BC Community,
    I am creating an adaptive layout site for my client (so, desktop/tablet/mobile versions).  I am using the search module in the site design, which is working quite well, however, on the desktop site, it is showing pages from the mobile and tablet sites in the search results.
    Does anyone have a work around to solve this issue?  For the desktop search results, I just want it to show desktop pages, same goes for tablet and mobile.
    Thanks in advance for your help with this.
    Aaron

    Hi,
    ASE 12 is very old and since no Eng support maybe decision made to not use datetime. However, you can certainly request feature - if you are able to create incident we can create Feature and then incident can be used for tracking purposes, etc.
    If unable to create incident please provide details:
    ASE version (exact with select @@version)
    SDK version being used
    code sample to demonstrate problem and the output from such a test
    If you used TDS please provide that trace as well if possible
    Cheers,
    -Paul

Maybe you are looking for

  • CTE Inbound com LES (CTEINBLE)

    Oi pessoal. Estou tentando ativar o processo de entrada de CT-E com LES para compras (Processo CT-E inbound CTEINBLE). Ao verificar a documentação da SAP no step 4 - Provide LES Documents Through BAdI (Technical name: CTEILFCD) é mencionado que ao fi

  • ADF custom binding for given service data model

    hi I have this business service that has a given data model. I would like to bind ADF Faces components to this data model. two examples: (1) The data model has a date attribute somewhere that holds the date of when something has been "checked"/"appro

  • Win 7, .flv file association to Flash player

    I lost the association for my .flv files, it should be a simple matter to indicate that they should open with adobe flash player, but I can't find the application! I have the pathway "C:\Windows\System32\Macromed\Flash" which contains the following f

  • As I exchanged phone is not from Russia

    Hello .The beginning I want to say that upset purchase the phone from Italy. here is the serial number dnyhfkp8dtc0 (md235ip/a) I live in Saint-Petersburg and I have discovered the defect to the phone..and that is : module for the transmission of wif

  • Headless xServe G5 ethernet ports broken?

    Hi there, after an attached DSL router imploded, the server stopped being seen on the network. It cannot be accessed via terminal, cannot be pinged, etc. However, it seems to boot normally in various modes (from DVD, harddisk, target disk). In target