Problem when moving between pages

Hi all,
I have buit an interface in Flash Catalyst and imported it into FB to modify a few little things. However, when I run the application and move between the "pages" I built in Catalyst, I noticed that the pages dont reset at the top. By this I mean: if I scroll down a long page and click a "next" button, the following page wont begin at the top, it will display at the point where I scrolled to on the previous page.
Is there a way to make a resulting page start at the top like it would if it were HTML?
Thanks in advance!

Heya!
Thanks for the reply...!
When i import the fxp file in to FB the pages are already built. How would I go about putting the pages in a scroller (since catalyst doesnt already do it)?
I can drag out the Scroller component, but it doesn seem as if I can build anything in it. Sorry... I am quite new to this.
I made a quick little example and pasted the code below. Would I be able to modify this in some way?
Thanks again for your assistance... it is much appreciated!
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:d="http://ns.adobe.com/fxg/2008/dt" xmlns:fc="http://ns.adobe.com/flashcatalyst/2009" xmlns:components="components.*" xmlns:ATE="http://ns.adobe.com/ate/2009" xmlns:ai="http://ns.adobe.com/ai/2009" xmlns:flm="http://ns.adobe.com/flame/2008" xmlns:lib="assets.graphics.Untitled_1.*" backgroundColor="#FFFFFF" height="900" preloaderChromeColor="#FFFFFF" width="1040">
    <fx:Style source="Main.css"/>
    <fx:Script><![CDATA[
        protected function button_clickHandler():void
            currentState='Page2';
        ]]></fx:Script>
    <s:states>
        <s:State fc:color="0xcc0000" name="Page1"/>
        <s:State name="Page2"/>
    </s:states>
    <fx:DesignLayer d:id="2" d:userLabel="Layer 1">
        <s:Button includeIn="Page1" label="Button" x="337" y="191" click="button_clickHandler()"/>
    </fx:DesignLayer>
    <fx:Private>
        <fc:Guide x="33"/>
        <fc:Guide x="230"/>
        <fc:Guide x="1002"/>
        <fc:Guide y="290"/>
        <fc:Guide y="314"/>
        <fc:Guide y="221"/>
    </fx:Private>
</s:Application>

Similar Messages

  • SWF flickers/flashes when moving between pages

    IDCS4 export to SWF with page transitions. Not sure if anyone else is having this problem, but when I navigate between pages, the interactive items/buttons seem to flash or flicker once after each transition.
    Does anyone know how to resolve? I'm building a small booklet in IDCS4. Nothing fancy about it, just a few pages that I want the viewer to be able to navigate through. The flickering is driving me nuts and I can't seem to figure out why it's happening. I've tried just about every setting, searched the net and have found nothing on the subject.
    Any help would be greatly appreciated. Thanks in advance!
    Mark

    Happens with all transitions. Seems to be a bug and I've sent my notes to Adobe. Other posting can be found
    here.
    Hopefully they'll fix it in the future, 'cause it's a great feature.

  • OA Query Region shows previous search results when moving between pages

    Hello All,
    I have a custom OA Page which has a query region based on a LOV for searching device names. The problem I am facing is once device name is searched and I go to another page through the quick links and come back to same Search Device page, it shows the previous searched results. I am not retaining AM for any page navigation.
    Things I have already tried :
    1 . I have tried refreshing VO by using clearcache and reset methods on VO.
    2. Get the Go button from the query region in ProcessFormRequest and on Go button click I use forwardImmediatelyToCurrentPage. And in Process Request method I am querying the results manually when Go button is clicked. Otherwise I am manually making the where clause condition 1=2 and ensuring that the VO does not return any rows.
    But still I am not able to get rid of the issue.
    The code used is pasted below for your reference. It is urgent. Can you please provide any pointers.
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    try
    VpaAdminAMImpl am = (VpaAdminAMImpl)pageContext.getApplicationModule(webBean);
    TkvpaDeviceSearchVOImpl deviceAll = am.getTkvpaDeviceSearchVO1();
    deviceAll.clearCache();
    deviceAll.reset();
    deviceAll.setWhereClause("1=2");
    deviceAll.setWhereClauseParams(null);
    String query = deviceAll.getQuery();
    System.out.println("getSearchResult query :="+query);
    deviceAll.executeQuery();
    OAQueryBean queryBean = (OAQueryBean)webBean.findChildRecursive("region1");
    String goAction = queryBean.getGoButtonName();
    if(pageContext.getParameter(goAction) != null)
    getSearchResult(am, pageContext, webBean);
    catch(Exception ex)
    throwException("SearchDeviceCO.processRequest",ex);
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    String action = pageContext.getParameter(EVENT_PARAM);
    OAQueryBean queryBean = (OAQueryBean)webBean.findChildRecursive("region1");
    String Go = queryBean.getGoButtonName();
    System.out.println(pageContext.getParameter(Go));
    if(pageContext.getParameter(Go) != null)
    pageContext.forwardImmediatelyToCurrentPage(null,false,"N");
    public void getSearchResult(VpaAdminAMImpl am, OAPageContext pageContext, OAWebBean webBean)
    try
    String device = pageContext.getParameter("deviceSearch");
    StringBuffer sb = new StringBuffer();
    if(device != null && device != "")
    sb.append(" DEVICE_NAME = '");
    sb.append(device);
    sb.append("'");
    String sql = sb.toString();
    TkvpaDeviceSearchVOImpl deviceAll = am.getTkvpaDeviceSearchVO1();
    deviceAll.setWhereClause(sql);
    deviceAll.setWhereClauseParams(null);
    String query = deviceAll.getQuery();
    System.out.println("getSearchResult query :="+query);
    deviceAll.executeQuery();
    }catch(Exception e)
    e.printStackTrace();
    Thanks in Advance,
    Abhishek Mishra

    Hi Anand,
    The getSearchResult method also does the same thing. I have also tried to remove the dependency on getSearchResult and wrote the same code in ProcessRequest() but still it does not solve the problem.
    In fact, I have ensured that the VO does not contain any records and have checked these by using SOPs and debug in JDEV. The interesting point is the VO does not have any records but still the previous search data and search criteria is shown when we navigate to the page. Printed the query just before performing execute query and that query does not return any records. Also tried printing something if there are any records in the VO by using vo.hasNext().
    Data gets stored somewhere and it is shown when the page is navigated from other page. FYI, this page is accessed from quick links and there are other pages also in the quick links and when we navigate between these pages we get to see the previous search results. Tried methods clearCache(), reset() on VOs but still unsuccessful.
    Not even that I thought that the VO may be corrupted in some sense so I created a new VO instance in the AM and then used newly created VO instance in the query region. But still no luck.
    Any pointers will be appreciated.
    Thanks in Advance,
    Abhishek

  • Audio problems when moving between chapters

    My movie consists of imported video from my camera. I have a two songs playing over the video - one at the beginning of the first chapter and one at the beginning of the last chapter. When I play the movie straight through, the audio works perfectly fine. When I skip between chapters the two with songs play correctly. However the chapters that have the original audio are distorted - the video seems to pause or stall out and the audio doesn't play for several seconds. Does anyone know what my problem might be and how to fix it?

    SteveG, I don't believe it is an 1820m issue at all. Do you have a single or multi-core processor? This behavior did not occur on my old P4 3GHz system. I only started observing it when I built this quad core system about a month ago.
    By the way, today I replaced my mobo with one of the same brand and model and the behavior still exists (to rule out a defective mobo.) I've also tried 3 different video cards (although they were all NVIDIA) and the problem remains no matter which card I use.
    Durin,
    As I was typing the first post, I verified that I was using the Emu 1820m ASIO driver in both Edit and Multitrack views. (As I was writing it, it crossed my mind that I might have it set to something else in one mode.) However, it is the same in both.
    One thing I forgot to mention is that there is one more app that behaves similarly (Reaper). All other apps (Sonar, FL Studio, eXT, Ableton Live, Sound Forge, Wavosaur) do not show this behavior and are rock solid.
    If you'd like to see my thread about this behavior in Reaper (and others who can reproduce it) see here: http://www.cockos.com/forum/showthread.php?t=19036
    I believe Sonar, FL Studio, eXT, Ableton Live, Sound Forge, Wavosaur, etc.. are doing something properly when playing back audio and/or initializing plugins that Adobe Audition and Reaper are failing to do properly with certain hardware configurations.
    -Clayton

  • Version 33, problems when moving tab to new window, then if you open a new tab in that window it doesn't switch to it unless you use Ctrl-Tab?

    Version 33, problems when moving tab to new window, then if you open a new tab in that window it doesn't switch to it unless you use Ctrl-Tab.

    Type '''about:preferences'''<enter> in the address bar.
    Select '''General.''' Look for '''Tabs.'''
    Turn on '''When I open a link in a new tab, switch to it immediately'''

  • How to keep location in a table persistent when switching between pages

    Hi -
    How would I keep my last location persistent in a table when switching between pages? If I am on cell X and switch to another page, when returning to the previous page, I return to the top of the table. This can be very annoying when trying to find the same location in a large table (or even in a small one).
    Thanks.

    If by "page" you mean "sheet", you can do it. To get back to the same place you were in the other sheet, click on the sheet in the sidebar (the list of sheets/tables/charts/etc on the left). Don't click on the table, click on the sheet.

  • Running Adobe Photoshop Elements 12 is sluggish when moving between pictures on new iMac.

    Running Adobe Photoshop Elements 12 is sluggish when moving between pictures on new iMac. I have a standard 21" iMac with 8 gb of RAM, but it still sticks for up to 30 seconds when switching pictures in organizer or other functions.  How can I get it more responsive?

    How large is your HD & how much space do you have left?  Make sure you are using the latest version of APE. 
    You should also contact Adobe Support and/or post in the Adobe Forums since it's their product.

  • 802.1X Authentication issues when moving between switch ports

    Hi Guys,
    We are having some issues at our office where when users move from one switch to another, the 802.1X authentication does not want to take place. The PC just gets an APIPA address. Now I have read about features that MAC Move and MAC replace but they seem to be used when moving from one port a switch to another port on that same switch. Will MAC move help for issues between switches? And should I focus my attention on the switch's configuration or have a look at the NPS server that might be blocking that authentication as the user is already authenticated?
    My configuration we have on the switch ports look as follows:
    authentication host-mode multi-domain
    authentication order dot1x mab
    authentication priority dot1x mab
    authentication port-control auto
    dot1x pae authenticator
    Your help is greatly appreciated.
    Grant

    Hi Neno,
    Thanks for the reply. We are using NPS on a Server 2008 R2 virtual machine. The switches are stacked 2960S-48FPS-L running 15.0(2)SE. I will quickly do the debugs and get back to you.
    Here is the config:
    aaa group server radius customer-nps
     server name radius1
     server name radius2
    aaa authentication dot1x default group radius
    dot1x system-auth-control
    radius server radius1
     address ipv4 172.28.130.52 auth-port 1645 acct-port 1646
     key 7 05392415365959251C283630083D2F0B3B2E22253A
    radius server radius2
     address ipv4 172.28.131.52 auth-port 1645 acct-port 1646
     key 7 107C2B031202052709290B092719181432190D000C
    interface GigabitEthernet1/0/1
     switchport access vlan 300
     switchport mode access
     switchport voice vlan 2
     srr-queue bandwidth share 1 30 35 5
     queue-set 2
     priority-queue out
     authentication host-mode multi-domain
     authentication order dot1x mab
     authentication priority dot1x mab
     authentication periodic
     authentication timer reauthenticate 28800
     authentication timer inactivity 1800
     mab
     no snmp trap link-status
     mls qos trust cos
     dot1x pae authenticator
     auto qos trust cos
     storm-control broadcast level 1.00
     storm-control multicast level 1.00
     spanning-tree portfast
     spanning-tree bpdufilter enable

  • Problems when moving from OWB 10.1 to OWB 10.2

    Hello!
    I got some problems when I try to move from OWB 10.1 to OWB 10.2.
    In the new environment I have
    Oracle Warehouse Builder Client 10.2.0.1.31
    Oracle Warehouse Builder Repository 10.2.0.1.0
    When I try to create a dimension I got the following errors:
    VLD-0338: The hierarchy DEF in dimension D_ENGINE contains only one level ENGINE.
    For Storage Type-relational along with Deployment Option-Deploy Data Objects, dimension can consist of only one level (without any containing hierarchy).
    VLD-0339: In Relational Dimension D_ENGINE, the hierarchy DEF contains either only one level or no levels.
    Relational Dimension hierarchy should contain atleast two levels or relational dimension can contain only one level with out any hierarchy.
    When I then try to edit the dimension the Data Object Editor is not opened when I right-click and select "Open Editor". However when I double-click the Data Object Editor is opened but it is totally empty.
    Another problem I have is when I try to create a Process Flow, I can't create any tranistions. When I place the cursor on the first activity I get the arrow but when I drag it to the next no arrow is cretaed between them,
    I also like to add parameters to the start activity but I can't find the "Activity View"

    Hi,
    i don´t think that thie Version is so full with bugs, i use it since 11 month, that way...
    Some tricky Things there, thats right,
    but what heres explained as Problems, i think that might not be patched away :-)
    Lone

  • Issue when moving between screens

    Hi All,
    Since we started working with Siebel 8.1 in SI we started having an unexpected behaviour when moving to another screen. Basically, when we log in Siebel PRM, we go to "Contact Screen Homepage View (SCW)" and search button is modified to go the Contact/ Opportunities view.
    But if we don't want to work with contacts and try to go to another Screen ("Home Page", "Opportunity" or "Messages") instead of showing the selected screen Siebel goes to the Contact/Opportunities of the first contact found.
    In case we search for a contact, go to another screen from the Contact/ Opportunities view and try to go to another screen the application works as expected.
    Did anybody have the same issue? Do you knwo what can be happening?
    thanks!

    Freezermale,
    It may help to bring Excel to the foreground (by clicking the Excel icon in the Dock), then using the "Zoom" option under the Window menu.
    This solved my question by VikingOSX  on Oct 17, 2012 10:57 AM
    Window > Zoom.
    Command and + key will zoom in.
    Command and - key will zoom out.
    For applications that support trackpad zoom, enable Zoom in or out in Trackpad Scroll & Zoom prefs.
    See video at System Preferences > Trackpad > Scroll & Zoom. Hover pointer over Zoom in or Out.
    See the answer in context
    how to zoom on the new mountain lion
    https://discussions.apple.com/thread/4441149
    All my best,
    Allen

  • When moving a page from one pdf to another I see a message "consolidating fonts" and the added page does not view properly

    I am working with multiple PDF files in Acrobat Pro XI.  Sometimes when I move a page from one PDF to another it does not view properly.  It was fine in the source PDF, but not when moved to the desired PDF.  I also see a message momentarily across the bottom of my screen that says "consolidating fonts".  What must I do to fix this?

    Lloyd ,
    Follow these steps for Acrobat 11 .
    Launch Acrobat>Tools>Print Production>Acrobat Distiller
    Now in Acrobat Distiller follow these.
    Select Standard in Default settings. 
    Go to Settings and select Edit Adobe PDF Settings. 
    Select Fonts and in the font source window select the fonts you want to Add. 
    Click Save As and then OK.
    See if this helps.
    Regards
    Sukrit Dhingra

  • Since the last software update for mountain lion I am having a problem when moving screenshots to trash. Now a Finder box appears saying finder wants to make changes and I have to enter my password for every action.

    Since the last software update for mountain lion, I am having a problem when trying to remove any screenshots to the trash. A box appears saying "Finder wants to make changes. Type your password to allow this"
    I have checked Finder Preferences and cannot find any box that I can 'UNTICK' to resolve this. I sometimes take a lot of screenshots when I am researching something and now find I have to enter my password for every screenshot to be removed to trash.
    Anyone got a solution please, Thanks

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • Exchange Mail Offline Problem when moving/deleting mails

    Hi there,
    I am using the Apple Mail Program to connect to my corporate Microsoft Exchange Server. This work perfectly well (also with the calendar, tasks, etc.)
    Mail also work s well while I am online.
    When I work offline (I often travel in planes in trains) I can write emails, respond to mails and those will be synchronized without any problem when I am back online.
    But the strange thins is that Mail sets back all changes in my inbox without any recognizable trigger. Meaning, I am moving emails from the inbox folder to other folders and/or deleting emails from my inbox. After switching from the inbox to another folder, or simply shortly to another program and then coming back, ALL moved and deleted emails show up again in the inbox. This is strange, because I am offline the whole time - thus the expanation that the server synch has changed everything back cannot be. At the same time, written emails stay in the outbox folder and remain there until I go online again.
    I asked an apple employee at Genious Bar but he could help me. Another friend of me who uses another corporat Exchange Server experiences the same  problem. Can anyone help?

    One thing that may help is to go to Mail Preferences, Accounts, and in your account under the Advanced tab select the check box for "Prompt me to skip messages over xxx kB" (where you indicate how many kB). This can reduce the download times by factors of 2 to 4 or more, depending on the size of the attachments.
    I think the more specific control you are looking for that is analogous to what you can do on the iPhone and iPad might not be available on the computer versions of Mail.
    Edit added: I just noticed that the above option is only available for POP accounts, but not for Exchange (IMAP) accounts, so unfortunately it may not apply to your account.
    Message was edited by: steve626

  • When moving from page to page in Safari, is there a way to keep each page zoomed without zooming each page with a separate zoom gesture?

    When I zoom a page in Safari and then move to a new page, the new page reverts to unzoomed status and I have to zoom again.  Is there a way to make the zoom persist as I move between pages?

    Try the All Pages Zoom extension.
    Click here > https://extensions.apple.com/
    The select Productivity on the left.
    You can install the extension from there.
    After it's installed, you can access the settings from Safari / Preferences - Extensions.

  • FCE freezes when moving between clips!  Help?

    Not with all transitions, but with some, sometimes even moving between clips from the same batch of film(!) FCE will stop playing through in the timeline, sound will jerk to a halt, and I'll then see what I call the "Colorful wheel of death" as FCE tries to deal with it and stops responding, making me Force Quit, which is a Jedi ability I now have much use in, btw... I have tried to Trash Prefs but still no good, and as I am fairly new to this software, with less than a year's experience, I need help!
    I have three major projects to do before year's end!
    What do I do?

    First be sure you've correctly trashed your preferences. Follow the advice here: http://www.fcpbook.com/Misc1.html
    Be sure everything is rendered before you playback. Be sure none of the windows (particularly Canvas) are overlapping.
    Move your RT playback quality to low.
    Sometimes it helps to reduce the opacity of an offending clip to 99% (via the motion tab in the viewer)before playing your sequence in the timeline. I can't explain why this works but its saved me alot.

Maybe you are looking for