ListField in image sets without scrolling Page

What I'm trying to do, it's like what Poynt done with their results, where the ListField scrolls, but around it stays the same. All I have is a listfield on a screen, but I have a bitmap as a background and would like to keep it fixed while only the listfield scrolls

Someone has an idea how Poynt did it?

Hello

Take a look at this thread

http://supportforums.BlackBerry.com/Rim/Board/message?board.ID=java_dev&message.ID=30432#M30432

Tags: BlackBerry Developers

Similar Questions

  • Refresh the interactive report without scrolling page?

    Hello.

    I have a page with three interactive reports arranged vertically on the page. I want that each of these reports to refresh automatically, so I added the following to my page header:

    setInterval ("jQuery('#report1').trigger ('apexrefresh');", 10000);

    setInterval ("jQuery('#report2').trigger ('apexrefresh');", 10000);

    setInterval ("jQuery('#report3').trigger ('apexrefresh');", 10000);

    The code works and the data is refreshed, the problem is that when this happens APEX seems to focus on the report, it is refreshing and page scrolls to it. This means that the user could be down at the bottom of page 3 of the report but every 10 seconds they are caught back to 1 at the top of the page report.

    Is it possible to refresh the reports without going through the emphasis placed on them?

    I use the Application Express 5.0.0.00.31

    Thank you very much.

    Andrew V wrote:

    Hello.

    I have a page with three interactive reports arranged vertically on the page. I want that each of these reports to refresh automatically, so I added the following to my page header:

    setInterval ("jQuery('#report1').trigger ('apexrefresh');", 10000);

    setInterval ("jQuery('#report2').trigger ('apexrefresh');", 10000);

    setInterval ("jQuery('#report3').trigger ('apexrefresh');", 10000);

    The code works and the data is refreshed, the problem is that when this happens APEX seems to focus on the report, it is refreshing and page scrolls to it. This means that the user could be down at the bottom of page 3 of the report but every 10 seconds they are caught back to 1 at the top of the page report.

    Is it possible to refresh the reports without going through the emphasis placed on them?

    I use the Application Express 5.0.0.00.31

    See APEX 5 - IR r region without losing the focus on the region of origin for a similar problem, but I do not think that the workaround solution discussed here will be of use to you.

    APEX 5.0.1 patch that contains a fix for this problem is now installed on apex.oracle.com. Try your page there to see if it solves your problem. The patch should be made public quickly.

  • How can I go to the top of a Web page without scrolling?  On a PC, I hit the 'Home' button

    How do the top of a Web page without scrolling?  On a PC, I hit the 'home' button

    If you are using Firefox, you could hit the 'Home' button

  • How thumb code scroller for images, set its different widths and heights uniformed?

    I am pile trying to organize the images of variable width to be evently spacer of xml file in the thumb wheel.

    I probably miss something in this code sigment:

    function resizeMe(mc:DisplayObject,_maxH:Number,_maxW:Number=0,_constrainProportions:Boolean=true,_centerHor:Boolean=true,_centerVert:Boolean=true):void {}

    maxH = maxH == 0? maxW: maxH;

    MC. Width = maxW;

    MC. Height = maxH;

    If {(constrainProportions)

    mc.scaleX < mc.scaleY? mc.scaleY = mc.scaleX: mc.scaleX = mc.scaleY;

    }

    If {(centerHor)

    MC.x = (maxW - mc.width) / 2;

    }

    If {(centerVert)

    MC.y = (maxH - mc.height) / 2;

    }

    }

    Currently, my images appear to be resolved on a uniform width with any height would be proportional to the width defined in uniform. I also have equal distance between images.

    How to make my images have an equal distance, in uniform in height and regardless of the width would be proportional to the height defined in uniform.

    Here's the code in its entirety:

    import com.greensock;

    com.greensock.easing import. *;

    //////////////////////////////////////

    Load the xml

    var xmlLoader:URLLoader = new URLLoader();

    Parse XML

    var xmlData:XML = new XML();

    var xmlPath:String = "app_thmbs_imgs.xml";

    xmlLoader.load (new URLRequest (xmlPath));

    trace ("loading xml from:" + xmlPath);

    xmlLoader.addEventListener (Event.COMPLETE, LoadXML);

    function LoadXML(e:Event):void {}

    trace ("loading xml complete");

    xmlData = new XML (e.target.data);

    trace (XMLDATA.image); Let's see each xml element of picture in Panel output with this xmlList

    buildScroller (xmlData.image); rather than trace the xmlList, send it to our buildScroller function

    }

    Build a Scroller MovieClip to hold each Image

    var scroller: MovieClip = new MovieClip();

    this.addChild (scroller);

    scroller.y = 30;

    /////

    Parse XML

    build the scrolling of a xml file

    function buildScroller(imageList:XMLList):void {}

    trace ("' generation Scroller '");

    for (var point: uint = 0; point < imageList.length (); ++ item) {}

    var thisOne:MovieClip = new MovieClip();

    thisOne.x = (140 + 20) * point;

    thisOne.x = currentX; modified line to adjust variable inch widths

    thisOne.itemNum = item;

    thisOne.title is imageList [item] .attribute ("title");.

    thisOne.link is imageList [item] .attribute ('url');.

    thisOne.src is imageList [item] .attribute ("src");.

    thisOne.alpha = 0;

    trace (thisOne.itemNum, thisOne.title, thisOne.link, thisOne.src);

    Loading and adding Images

    container image

    var thisThumb:MovieClip = new MovieClip();

    Add images

    var ldr:Loader = new Loader();

    var url: String = imageList [item] .attribute ("src");

    var urlReq:URLRequest = new URLRequest (url);

    trace ("thumbnail loading" + item + "in Scroller:" + url);

    assign events to charger headphones

    ldr.contentLoaderInfo.addEventListener (Event.COMPLETE, completeHandler);

    ldr.contentLoaderInfo.addEventListener (IOErrorEvent.IO_ERROR, errorHandler);

    LDR. Load (urlReq);

    thisThumb.addChild (ldr);

    thisOne.addChild (thisThumb);

    create listeners for that inch

    thisOne.buttonMode = true;

    thisOne.addEventListener (MouseEvent.CLICK, clickScrollerItem);

    thisOne.addEventListener (MouseEvent.MOUSE_OVER, overScrollerItem);

    thisOne.addEventListener (MouseEvent.MOUSE_OUT, outScrollerItem);

    Add article

    scroller.addChild (thisOne);

    }

    trace ("termination of construction scroller");

    }

    function clickScrollerItem(e:MouseEvent):void {}

    trace ("item clicked" + e.currentTarget.itemNum + "-visit url:" + e.currentTarget.link);

    }

    function overScrollerItem(e:MouseEvent):void {}

    trace ("Over" + e.currentTarget.title);

    }

    function outScrollerItem(e:MouseEvent):void {}

    trace ("out" + e.currentTarget.title);

    }

    function completeHandler(e:Event):void {}

    trace ("thumbnail full" + e.target.loader.parent.parent.title)

    TweenMax.to (e.target.loader.parent.parent,.5, {alpha: 1});

    image size to scroll

    resizeMe (e.target.loader.parent, 140, 105, true, true, false);

    }

    function errorHandler(e:IOErrorEvent):void {}

    trace ("thumbnail error =" + e);

    }

    The resizing function

    parameters

    required: mc = the movieClip to resize

    required: maxW = the size of the box to resize, or just the desired maximum width

    Optional: maxH = if you want to resize area is not a square, the maximum height. by default must match maxW (so if you want to resize to 200 x 200, just send resizeMe (image, 200) or once 200 ;)

    Optional: constrainProportions = boolean to determine if you want to limit the proportions or tilt the image. set to true by default.

    Optional: centerHor = centers the displayObject in maxW region. set to true by default.

    Optional: centerVert = centers the displayObject in maxH region. set to true by default.

    function resizeMe(mc:DisplayObject,_maxH:Number,_maxW:Number=0,_constrainProportions:Boolean=true,_centerHor:Boolean=true,_centerVert:Boolean=true):void {}

    maxH = maxH == 0? maxW: maxH;

    MC. Width = maxW;

    MC. Height = maxH;

    If {(constrainProportions)

    mc.scaleX < mc.scaleY? mc.scaleY = mc.scaleX: mc.scaleX = mc.scaleY;

    }

    If {(centerHor)

    MC.x = (maxW - mc.width) / 2;

    }

    If {(centerVert)

    MC.y = (maxH - mc.height) / 2;

    }

    }

    You want to set the height of a specific value... it should be as simple as

    MC. Height = a specific value

    mc.scaleX = mc.scaleY; This will make the width proportional to the new height adjustment

    but it must be done after the image is finished loading

    as regards the addition with a uniform spacing goes, you must determine where the right edge of the last image and add the space betwwen to set the location of the one currently being added.  If you add that these s mc to a container movieclip, then the width of the container must be data very useful to determine where is the right edge of the last mc.

  • How to set margins for any site viewed without scrolling back?

    Some sites and most of the forums, threads cannot be read without scrolling the screen back. How these adjustable where all the information is read without moving screen less upward or toward the bottom and can not afford side back.

    Some forums have a button or a link named something like 'Thread tools' which has an option to view a "Printable" on the wire. This simplified layout can better meet your needs.

  • How can I get the image of the Web page when my mouse over the icon in the taskbar?

    I used to get the image of some Web pages I look at one when I spent my mouse on the browser used in the taskbar, now, I only get the Scripture that says what pages are open, how to get back the images? It facilitated visually for me to see.

    Hello

    Are you referring to the feature Aero Peek in Windows 7?

    You can use Aero Peek to take a quick look at other open windows without clicking away from the window you are currently working. For more information, see Preview an open window on the desktop using Peek.

    You may experience this problem if PEAK Aero is disabled on the computer.

    If you can not see the effects of glass window, or if you are unable to use Aero Peek and Aero Shake, use the Aero troubleshooting tool to diagnose and fix the problem automatically.

    Solve problems Aero in Windows 7

    http://support.Microsoft.com/kb/976170

    You can also go to the Control Panel - Performance and options (find it by typing in the search box) - and set for the "look better".

    I hope this helps. If you need help with Windows, let us know and will be happy to help you.

  • Is it possible that when the new record is inserted in a table then this empty inserted record is automatically displayed without scrolling?

    Mr President.

    Is it possible that when the new record is inserted in a table then this empty inserted record is automatically displayed without scrolling?

    Because I change the size property of the table 5 range and my new record is inserted at no 10.

    When I click the addRecord button the new parallel line does not appear, do scroll down to see it.

    I want that we don't have to scroll down.

    The line is displayed automatically.

    as shown in the photo my behavior of page.

    scrolling.png

    Concerning

    If you just need the newly created line to be visible,

    You can simply set contentDelivery = 'immediate' and displayRow = "selected".

    P.S. the blog mentioned above only.

    See you soon

    AJ

  • Change the background image on the login page (smarthphone theme)

    Hello

    I would like to know how to change the background image on my login page.

    Version of the apex is 4.2.4.
    The theme is jQuery Mobile Smartphone (topic 50).

    Pls remind me if I missed some important information.

    I have a model of customised area on this page. My user name text fields and password + "CONNECT" button is placed in this area.

    I also have an inline css that centers in my area. My dimensions of the region are also placed here.

    Not available to access the application today so bad im trying to provide the look of it with a drawing.

    Also I noticed that my experience has some white color.

    Ty for any information that you provide.

    0Ja9gNj.png

    Hi Para,

    Try the style of your page like

    
    

    But if trying to define for your application color gradients extract ThemeRoller to http://jquerymobile.com/themeroller

    to set the themes of all colors and gradients you want without doing custom overrides CSS jQM Apex definitions.

    Everything you have requested can be configured via the ThemeRoller.

    Also found what may be useful if you are going to customize your login

    http://orapedia.files.WordPress.com/2012/12/how_to_set_background_image_in_a_oracle_apex_login_page.PDF

    Kind regards

    Benjamin.

  • Scaling of Images/background for Muse Pages

    I work with Adobe Muse and have difficulty with sizes of web pages, especially when I try a sites page. For example, I have an a site page with images background four, one per page. (i.e. main image has, services a b picture, picture c and d image contact). I prepared my images, optimized for the web and put across the different sizes to see what works, like width 1100 pixels, height 600 pixels, then set and tested. Unfortunately, no matter what I change, the proportions always get screwed upward when I export the site. Image sizes are disabled or missing in some cases. Now, don't confuse this issue with mobile proportions. I know there are at least three designs; Mobile, Tablet and desktop. At this point, I just want to get office just before moving on. I looked at Lynda.com tutorials, even one on the sites of a webpage with Muse and this tutorial, the decorations were ALREADY perfectly proportioned. Both and the instructor does not mention how he got it. So please, can someone explain how to get the proportions of the image or a background page optimized for Web sites a page? Yes, I know screen everyone is different. I just want, more or less, as the user scrolls down, the background image or pages to be roughly one after another, instead of an unholy mess.

    Absolutely useless. Learn the code from scratch. I regret wasting time with Muse I did. There is no substitute. Muse is a product that fails to respect what it promises.

  • Adding items to the QNX list without scrolling

    Is it possible to update the items in a list of qnx without scrolling of the list in article 1?

    I have a list of qnx that retrieves its list items in a stream, and if the list item has been scrolled, beyond every time that I update the dataprovider, it automatically reloads the list with 1 point on the screen.

    HM sounds quite interesting. what I would do is to find something to defines a set of data apart from others and makes every single tweet. There is probably an ID of the API or something. then id have a separate table, keep track of all the IDS in your current list. from there whenever u 'referesh' you can check if you got the identifiers in the new list differ from your current table of ID. If they are separately add each individual tweet of the new incoming list using the addItem() method instead of reset your entire dataprovider. hope that helps some. Good luck!

  • Frame scrolling page

    Can you do one side of your scrolling page? On the screenshot attached, I want to on the right side to scroll so you can display the text but keep the image on the left, as it is. Here is the Muse that I created - Dropbox file - Strattons.muse

    Screen Shot 2016-06-27 at 12.38.35.png

    This would be a normal composition with two subgroups - with overflow to generate the scroll, the other with a fixed size.

    Mylenium

  • image resize with scrolling effects

    Hello everyone! I am wanting to make a website with the logo placed prominently at the Center at the top of the page, but I have scroll down, navigation pin on the top and the logo "morphs" or down can evolve into a smaller size to the Center. I've seen sites that probably manually, coded as http://www.ecwid.com or other. I see on ecwid they use a SVG file. I will work with the file of the logo will be vector as well.

    How can I do? I did tons of research and that you can't seem to find it! Thank you!

    Hello

    Here's how you can get, Steve Harris is a great widget to do exactly what you're looking for, check out the video at the link Images scale on Scroll - Adobe Muse Widget Tutorial - MuseThemes.com - YouTube. Follow the link to the website of Muse-theses to see the widget. scale and scroll I hope this helps.

  • I can't set up defined page before printing. File for all pages then it happens... the entire depth running above the bottom. I can't print from the web

    Question
    I can't set up defined page before printing.
    I'll file to all pages that comes very close up and tabs Format & Options and margins, headers/footers.
    Here is the entire depth... running above the bottom. I can't put footers. I can't print from the web

    When I go to preview before printing I get a totally gray screen

    See this:

    http://KB.mozillazine.org/Problems_printing_web_pages

  • When I opened a Web site, it seems quite wrong. Everything is white and all centered page to the left. I checked Firefox by pressing the ALT key, and it is already set to "basic page style". So there must be something else.

    When I opened a Web site, it seems quite wrong. Everything is white and all centered page to the left. I checked Firefox by pressing the ALT key, and it is already set to "basic page style". So there must be something else.

    Clear the cache and cookies from sites that cause problems.

    "Clear the Cache":

    • Tools > Options > advanced > network > storage (Cache) offline: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Tools > Options > privacy > Cookies: "show the Cookies".

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions of the origin of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • When you open a new tab, how to make images of recently viewed pages underneath the toolbars?

    When you open a new tab, how to make images of recently viewed pages underneath the toolbars?

    See what-
    http://www.Google.com/support/toolbar/bin/answer.py?answer=115561

Maybe you are looking for