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.

Similar Messages

  • 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>

  • 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

  • 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

  • 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

  • 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.

  • Xorg/radeon/i3 lagging when moving between monitors

    Hello, I just did a fresh install of Arch on my desktop, and I'm trying to get triple monitors working. My setup is:
    1 x DVI-D on R9 280X (primary display = DVI-1)
    2 x DVI-D on HD 5770 (left display = DVI-1-2, right display = DVI-1-1)
    All monitors are identical 2560x1440 (QNIX QX2710) monitors. I'm using the open source drivers (radeon) drivers, and testing this on i3 (the WM i plan to use). I tried doing this with cinnamon, however I could only get 2 screens going at once, primary and another on the 5770.
    in order to get all the monitors enabled, once i3 starts up i open a terminal and run:
    xrandr --setprovideroutputsource 1 0 && xrandr --output DVI-1-2 --preferred --left-of DVI-1 --output DVI-1-1 --preferred --right-of DVI-1
    This line enables all monitors, which I thought meant it was good. However, it lags. Specifically, it lags when moving mouse from center screen to either of the side ones. It completely locks up for 3-5 seconds, but then it catches up. However, it doesn't seem to lag when I move from one of the side displays to the center.
    xrandr doesn't see the monitors until i run --setprovideroutputsource, and it seems to crash my xorg if I setup right screen, then the left screen.
    I read online that trying to force accelmethod to exa in xorg.conf.d/ might fix it, however that didn't work. Otherwise, I've read again online that glamor is the cause of this issue. What should I do if that's the case?

    Hi ,
    I am having the same issue as your reported, but I am on different hardware, so I suspect it is an issue with something else.  I think these posts are similar so watch them:
    https://bbs.archlinux.org/viewtopic.php?id=139193
    https://bbs.archlinux.org/viewtopic.php?id=140572
    The system I am having an issue with was built via a derivative of ArchISO scripts and installed onto a machine.  I don't believe that alone is the issue, but initially I did think it was something wrong with my scripts / configuration.  I merged my /etc of a working system with the one in question and it still does not work.
    I looked very briefly at the Xorg logs and noticed that it wants to autodetect input devices, perhaps that could be an issue.  The other oddity I noticed is that I still cannot use slim / xfce.  Initially I built the system to primarily use that window manager to save resources, but even after unplugging devices and logging in, I would get booted back out.
    I will look into Xorg to see if there were any changes with auto-detection as well as udev.  Perhaps one of those things is causing an issue.
    Walter

  • On any web sites displaying flash or large gifs, Firefox intermittently and repeatedly disconnects USB mouse, especially when moving across page links

    Firefox ver. 3.6.13 /machine is Acer dual core AMD/4 gigs memory maybe 18 months old.
    This problem does not occur using IE or chrome.
    Is the Flash player handling disk I/O in such a way as to trigger hardware resource conflicts? Is Mozilla image caching a cause?

    ''the-edmeister [[#answer-666854|said]]''
    <blockquote>
    '''''"I created a second profile called Shopping. I imported the extensions from my default profile into it."'''''
    If you used Sync to do that "import", disable Sync for at least one of those Profiles.
    </blockquote>
    Thank you for your suggestion. I have Sync enabled for all the profiles. To my surprise, however, Sync was of no use in getting Default's extension collection into Shopping. For that I had to resort to the article http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox.
    I will try disabling Sync on Shopping.

  • Lost emails when moving between mailboxes

    Hello all
    I encountered a huge problem today when sorting out some of my mail.
    I'm currently running Mavericks and have several accounts set up on the Mail application - these include an Exchange account, and a Gmail (Google IMAP) account.
    My Exchange account is expected to expire soon, and so I decided to drag-and-drop mail items from the Exchange mailbox to the Gmail mailbox. This appears to have worked flawlessly for all Sent items from the Exchange account - all sent items have been moved and I can now find the items on the Gmail web interface as well as through the Mail application, and as a result, the Sent items folder is empty on the Exchange account.
    I repeated the process for all Inbox items, but it seems to have failed drastically! I cannot seem to locate the inbox items from neither the Gmail web interface nor the Mail application, and worse yet, the Inbox items folder is now empty on the Exchange account. I logged in to the Outlook web interface to see if perhaps the Exchange Inbox items would still be there, and oddly enough there are 13 messages there (the inbox previously contained hundreds of Inbox items) - so there is also some disconcordance between Exchange on the Mail application and on the Outlook web interface.
    I'm quite confused as to how the drag-and-drop process appears to have worked well for the Sent items from Exchange to Gmail, but so poorly for the Inbox items. I'm not too happy with the fact that I seem to have lost nearly all of my Inbox items. I have checked the Mail 'Activity' window in the hope that maybe some sort of process was stuck - thus explaining this error, but there's currently no activity.
    Thank you for taking the time to read this. I would really appreciate anyone's help in resolving this matter/finding the mail items that appear to have gone missing.

    Dear Eric,
    Apologies for the very late reply - I just thought I'd provide an update on my experiences.
    From what I recall, neither rebuilding nor reindexing my mailboxes helped to recover the emails that were lost after dragging-and-dropping from the Exchange mailbox to the Gmail mailbox. However, after reading your reply to WilliamCWL, I explored the 'V2' folder from a Time Machine backup (one that was made not too long before I posted this thread) and found the Exchange mailbox. From there, I located and gathered the Exchange Inbox 'emlx' mail files, which I then converted to 'mbox' format, using a tool that I found online. I then imported the 'mbox' format file into Mail, and from Mail I was able to drag-and-drop the Exchange Inbox emails to the Gmail Mailbox!
    Many thanks for your assistance in this matter Eric, it's much appreciated.
    @ WilliamCWL - I hope that you were able to resolve your problem.
    Regards

  • Oracle forms display bright white flash when transitioning between forms.

    We recently migrated an application from Oracle Application Server to WebLogic and we are noticing that in the WebLogic environment while transitioning between forms there is a quick bright white flash that has caused several complaints. We are not sure if this is related to a performance issue which may be preventing the form from painting quick enough or if there is a configuration problem somewhere. Has anyone else seen this behavior?
    We are running WebLogic Server Version 10.3, Fusion Middleware 11gR1, and Oracle DB 11.2

    Unfortunately we don't have any errors to work off of. The application works fine, it's just that their is a very short delay when transitioning from one form to another and during that transition the whole form turns bright white which has caused users to complain that it could cause an epileptic seizure. I assumed maybe there was some performance tuning/caching that could be done to make it so it loaded quicker. Our DBA team recieved a response from Oracle support stating that although the forms themselves are relatively unchanged, due to the underlying software changes in 11g we are to expect some differences compared to previous versions. We have since set background in formsweb.cfg to use a light grey image which seems to be more acceptable for our users.
    Edited by: user4597705 on Oct 12, 2012 1:18 PM

  • Finder / Desktop "Flashes" When Moving Files to Trash

    When I move files from an open window across the desktop into the trash, the finder seems to quickly flash a bunch of what looks like file icons.  Anyone ever seen this?  Any way to fix it?  It does not seem cause any issues - just annoying...

    John...
    Try moving these .plist files to the Trash from ~/Library/Preferences
    com.apple.finder.plist
    com.apple.desktop.plist
    Restart your Mac.
    ~ (Tilde) character represents the Home folder.
    For Lion:   To find the Home folder in OS X Lion, open the Finder, hold the Option key, and choose Go > Library

Maybe you are looking for

  • How to safely uninstall CS2 when CS3 is also on machine?

    Hi, I want to purge my machine of CS2 but also have CS3 installed on same drive.  I know there is an uninstall PDF and would follow it without question if I did not have CS3 installed as well. I am worried that if I trash all these as instructed:  6

  • Information in Histogram in Adobe Camera RAW

    Since I capture my images in RAW, when I open them in Adobe Camera RAW (via Elements 11), what information is displayed in the image and the histogram I see? Is it showing me the jpeg created in the camera?  If so, the jpeg settings in my camera are

  • New Square Stand Card Reader - Does it work in Australia?

    I'm in Australia but wanting to buy the new Square Stand (card reader) and wondering if it will work in Australia? This would be a great way to avoid eftpos machine contracts!

  • Inserting "Reference Data" tab in CIC Complaints / Item Details

    Dear all, When entering in CIC (WinGUI), and choosing the operation "Complaint", in the correspondent view "Item Details", the tab "Reference Data" is missing. This doesn't happen outside CIC0 (e.g. trx. CRMD_BUS2000126 - Maintain Activities). We fol

  • How to set up forwarded mail?

    I have several email addresses associated with my personal domain name that I have, that I set up on my host as forwards/aliases so I don't actually check server for mail sent to those accounts. In Apple Mail I want to be able to send out mail someti