Refresh problem for swf website

I have a web site which is swf movies based on html.
to be refreshed (the swfs) every time I re-ender it(not
every 10 or 20 seconds). Think of it like a news site which needs
to be refreshed constantly to keep up to date. What coding should I
use?Should it be on the html page or in the swf?
It loads the swf from the cashe of the browser even when I
have made changes to the server files.
Please I need some help
Thanks

Do you mean that the 'news' or 'updates' are actually made to
the swf file itself?
That would be unusual for a data driven site although its not
impossible. There's even a reasonably 'new' data exchange format
based on a simplified swf format that is used for loading data. But
it doesn't sound like that's what you're doing.. it seems like you
want to reload the original swf itself. I hope thats via some CMS
or something that's generating the swf files. Its seems impractical
for a 'news' type site otherwise.
Either way I imagine you can reload the swf into the _root
level. You might need to use the same type of anti-cacheing
approach as before.
_root.loadMovie("sameSwf.swf?dontCache="+getTimer());
How often you do that... well that would depend on how often
you think it would change. AFAIK there's no way to know if the file
on the server has physically changed without polling the server
separately e.g. via LoadVars .

Similar Messages

  • Firefox 31.0 - slowness and script problems for using websites

    Since Firefox 31.0 is released, some technical problems of slowness and script problems to use
    websites have been noticed from mine. Sometimes it needs up to some minutes to load a website
    and sometimes there are error messages for an unanswered script.
    pemigabo123

    Hello FredMcD,
    thank you for your message.
    But your answer to my question at support.mozilla.org is not helpful,
    although it is a professional technical answer from a Top 10 Contributor
    from mozilla.
    It seems that there is a permanent unfixed problem always if a new
    version of mozilla is released. After all fixed problems of the earlier
    version of firefox, there is no problem at all.
    But if I am already working with the non-problem earlier version of
    firefox, then suddenly the problems of error messages, slowness and
    script errors are appearing, and if I have looked for the actual version
    of firefox, there was signed a new version and now I have known,
    aha a new vesion of firefox was released and it needs up some time
    for every new version until the error problems were fixed.
    Maybe it is combined with the plugins like flashplayer or shockwave.
    But a professional version of firefox should not sign up error messages,
    because of plugins, while working with these plugins.
    Another answer from another support.mozilla.member was for an
    overload problem, because of opening some windows of firefox.
    But to open many windows of firefox was already no problem with the
    earlier version firefox 30.0 or earlier, until the error messages are fixed.
    The same unfixed problems are since firefox 25.0 up to 30.0, but I was
    wondering for how long version 30.0 was actual in practical working.
    And since version of firefox 31.0 was released the same problems
    of error messages, slowness and script errors were appearing.
    At the moment it seems firefox 31.0 works alright.
    But only the following time shows if it works without error messages,
    slowness and sript problems or not.
    In hope to give a helpful answer to yours
    kind regards
    pemigabo123

  • JTable Refreshing problem for continuous data from socket

    Hi there,
    I am facing table refreshing problem. My table is filled with the data received from socket . The socket is receiving live data continuously. When ever data received by client socket, it notify table model to parse and refresh the data on specific row. The logic is working fine and data is refresh some time twice or some thrice, but then it seem like java table GUI is not refreshing. The data on client socket is continuously receiving but there is no refresh on table. I am confident on logic just because when ever I stop sending data from server, then client GUI refreshing it self with the data it received previous and buffered it.
    I have applied all the available solutions:
    i.e.
         - Used DefaultTableModel Class.
         - Created my own custem model class extend by AbstractTableModel.
         - Used SwingUtilities invokeLater and invokeAndWait methods.
         - Yield Stream Reader thread so, that GUI get time to refresh.
    Please if any one has any idea/solution for this issue, help me out.
    Here is the code.
    Custom Data Model Class
    package clients.tcp;
    import java.util.*;
    import javax.swing.table.*;
    import javax.swing.*;
    public class CustomModel extends DefaultTableModel implements Observer {
    /** Creates a new instance of CustomModel */
    public CustomModel() {
    //super(columnNames,25);
    String[] columnNames = {"Sno.","Symbol","BVol","Buy","Sale",
    "SVol","Last","..","...","Total Vol...",
    "..","High","..","Low","Change","Average","..."};
    super.setColumnIdentifiers(columnNames);
    super.setRowCount(25);
    /*This method called by client socket when ever it recived data as line/record*/
    public synchronized void update(Observable o, Object arg){
    collectData(arg.toString());
    /*This method used to parse, collect and notify table for new data arrival*/
    public synchronized void collectData(String rec){              
    String validSymbol="";
    System.out.println("collectDataRecord :-"+rec);
    StringTokenizer recToken=new StringTokenizer(rec," ");
    Vector rowVector=new Vector();
    for(int i=0;i<25;i++){
    validSymbol=(String)getValueAt(0,1);
    if(rec.indexOf(validSymbol) != -1){
    for(int j=0;recToken.hasMoreTokens();j++){
    super.setValueAt(recToken.nextToken(),i,j);
    //break;
    Client Socket Class
    package clients.tcp;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import javax.swing.*;
    public class DataReceiver extends Observable implements Runnable{
    private Socket TCPConnection = null;
    private BufferedReader br = null;
    private String serverName = "Salahuddin";
    private int serverPort = 5555;
    public DataReceiver()
    public void setServerName(String name){
    this.serverName=name;
    public void setServerPort(int port){
    this.serverPort=port;
    //03-20-04 12:30pm Method to open TCP/IP connection
    public void openTCPConnection()
    try
    TCPConnection = new Socket(serverName, serverPort);
    br = new BufferedReader(new InputStreamReader(
    TCPConnection.getInputStream()));           
    System.out.println("Connection open now....");
    //System.out.println("value is: "+br.readLine());
    }catch (UnknownHostException e){
    System.err.println("Don't know about host: ");
    }catch (IOException e){
    System.err.println("Couldn't get I/O for "
    + "the connection to: ");
    //03-20-04 12:30pm Method to receive the records
    public String receiveData(){
    String rec = null;
    try
    rec = br.readLine();          
    catch(IOException ioe)
    System.out.println("Error is: "+ioe);
    ioe.printStackTrace(System.out);
    catch(Exception ex)
    System.out.println("Exception is: "+ex);
    ex.printStackTrace(System.out);
    return rec;     
    public void run()
    while(true)
    String str=null;
    str = receiveData();
    if(str != null)
    /*try{
    final String finalstr=str;
    Runnable updateTables = new Runnable() {
    public void run() { */
    notifyAllObservers(str);
    SwingUtilities.invokeAndWait(updateTables);
    }catch(Exception ex){
    ex.printStackTrace(System.out);
    System.out.println("Observer Notified...");*/
    try{
    Thread.sleep(200);
    }catch(Exception e){
    public synchronized void notifyAllObservers(String str){
    try{
    setChanged();
    notifyObservers(str);
    }catch(Exception e){
    e.printStackTrace(System.out);
    Regards,
    Salahuddin Munshi.

    use your code to post codes more easy to read, lyke this:
    package clients.tcp;
    import java.util.*;
    import javax.swing.table.*;
    import javax.swing.*;
    public class CustomModel extends DefaultTableModel implements Observer {
    /** Creates a new instance of CustomModel */
    public CustomModel() {
    //super(columnNames,25);
    String[] columnNames = {"Sno.","Symbol","BVol","Buy","Sale",
    "SVol","Last","..","...","Total Vol...",
    "..","High","..","Low","Change","Average","..."};
    super.setColumnIdentifiers(columnNames);
    super.setRowCount(25);
    /*This method called by client socket when ever it recived data as line/record*/
    public synchronized void update(Observable o, Object arg){
    collectData(arg.toString());
    /*This method used to parse, collect and notify table for new data arrival*/
    public synchronized void collectData(String rec){
    String validSymbol="";
    System.out.println("collectDataRecord :-"+rec);
    StringTokenizer recToken=new StringTokenizer(rec," ");
    Vector rowVector=new Vector();
    for(int i=0;i<25;i++){
    validSymbol=(String)getValueAt(0,1);
    if(rec.indexOf(validSymbol) != -1){
    for(int j=0;recToken.hasMoreTokens();j++){
    super.setValueAt(recToken.nextToken(),i,j);
    //break;
    Client Socket Class

  • UWL refresh problem for ABAP BOR custom attributes

    Hi all,
    we are facing an issue with an UWL iView. We wanted to display custom attributes from an ABAP Business Object (ABAP_BOR).
    The feature is working but when an end-user receives a new task in his UWL view, he needs to click on the refresh button in order to have all the custom attributes correctly displayed.
    We have only the problem with custom attributes, for the columns containing standard workflow decision task attributes, the data are displayed directly without the need to push the refresh button.
    We are on EP 7 SPS11 and the back-end is an ECC6 version.
    We have followed the methodology described in the How to configure and customize the Universal Worklist pdf document:
    ABAP BOR
    <CustomAttributeSource id="ABAP_BOR"
    objectIdHolder="externalObjectId"
    objectType="FORMABSENC"
    cacheValidity="final">
    <Attribute name="COSTCENTER" type="string"
    displayName="Cost Center"></Attribute>
    <Attribute name="FIRSTDAYOFABSENCE" type="date"
    displayName="First day of absence"></Attribute>
    <Attribute name="LASTDAYOFABSENCE" type="date"
    displayName="Last day of absence"></Attribute>
    </CustomAttributeSource>
    Do you have an idea where this problem come from and how it could be solved?
    Thanks in advance and regards,
    Sébastien BODSON

    Hi Chintan,
    This parameter has no impact on the problem we face. I found an exact description of our problem on SAP Help portal, in the UWL pages:
    CustomAttributes, CustomAttributeSource and Attribute
    Extract from SAP Help portal:
    Every item type can have custom attributes defined, which can be filled from Business Object or Provider Data Containers like the Business Workflow Container or the Alert Container. These attribute sources are defined within the CustomAttributeSourcetag, which contains information on which attribute connector brings the custom attributes, how to identify these custom attributes in the provider system and how long the cache is valid.
    Note that once an item arrives, these custom attributes are retrieved in additional calls to the backend. For performance reasons, in order to minimize responses times to the end user, this may happen while the item is displayed to the end user - causing such attributes to be empty initially and only to appear in subsequent requests.
    The display names of the attributes for column headers and labels are defined in the display attributes of the default view of the item type.
    Does anyone know a workaround in order to have directly the complete information displayed?
    Sébastien BODSON

  • Newspaper layouts cause major usability problems for your website

    Think about what happens if a [Web Development|http://www.intellixmedia.com/web-development.htm] page is laid out in a newspaper-type multiple column format. How would visitors read that page? There will be this thin strip of text going down the page. To read it, they will have to scroll down with the browser to read that narrow strip. When they reach the bottom, they will have to scroll upwards again to find the next column to continue reading that same story. And so on. Back and forth, and up and down. In the meantime the rest of the space that they have in their huge monitor is wasted - they cannot use it to speed up their reading because at any one time, only one narrow column is relevant. The frustration and irritation caused by that kind of page will probably rival the annoyance caused by the webmaster mistakes listed in my satirical Seven Ways to Annoy Visitors to Your Website. In reality though, many visitors to such a website probably won't even bother to read the page. Why suffer the punishment when the competition is just a click away? (Bear with me in this section. It may not look relevant to the main topic, but I want to try to address one of the root causes of low-usability sites as a site with a newspaper layout would have been.) Many new web designers want their website to look unique. They want their site to look special and memorable. As such, they have a tendency to come up with all sorts of interesting things to do with their site, including this newspaper layout idea, so that it does not look like every other site on the Internet. Unfortunately, in so doing, as discussed before in my article on Appearance, Usability and Search Engine Visibility in Web Design, they may sometimes inadvertently create websites that cause usability problems as well as search engine indexing issues. Recall the (not so) early days of home desktop computing, when many people used an operating system called MS-DOS. Contrary to what you may think, not all programs that ran on DOS were command-line programs. There were full-screen or windowed programs like the ones you see on Windows and the Mac today. However, the task of learning to use new programs on DOS was not as easy as it is to use a new program on modern operating systems. Every program had their own way of doing things. For example, to save a file, different programs had different keystrokes and menus to accomplish the same task. With modern operating systems, companies like Microsoft and Apple have clearly-defined "Human Inteface Guidelines" for programmers to follow. As a result, the interface of just about every program on your computer is fairly similar. For example, to save a file in Windows, no matter what program you are using, you can simply use the "File" menu and the "Save" item on that menu. Or hit Ctrl+S. Or click the icon that looks like a floppy disk on the toolbar. The standardisation of the interface means that anyone who has learnt how to use one program will also know how to use another. You no longer have to read the manual. After installing a new program, most people can simply grope around and still be able to accomplish their task.
    Web design is pretty much the same way. Although there is no overarching organisation to give a user interface guideline to specify that websites are to work a certain way, there are millions (or more) of websites on the Internet that more or less behave the same manner. By their existence and similarity alone, these existing websites have established a de facto standard. Users who know how to navigate a site with one of those standard design styles will also know how to navigate other sites with the same way of doing things. In other words, you don't have to be a web guru or a usability master to create a usable website any more. Just use the trick of following the standard pattern used by other sites - a one, two or three column website with navigation menus in the usual places (top, bottom, left or right), and the main content flowing downwards in the centre, links that work like normal links, and so on. (See my articles on usability if you want more information.) By making your site operate in a standard way, visitors will automatically find your site usable, because they've already learnt it from their past experience with other sites.

    I have the same problem, as I can not log into my iCloud via Preference Pane since I changed my password which is verified correct.  Keeps saying "Can not login at this time.  Try to login again."  Or just give the busy signal and eventually no connection.
    I looked for the "Networkinterfaces.plist" entry but there is none.  Any other potential solutions would be highly appreciated.
    Apple refuses to help unless I pay $49 for their mistake.

  • ALV grid Refresh problem  for one user

    Have an ALV with editable columns. Validation and save works for all columns for one user but not for the other. The user with the issue is able to modify the values and save to the database fine.The problem is it doesn't display in the ALV once refreshed. Please suggest any ideas of how to look into this issue as it works for one and not other user.

    Strange work for one user not for other.
    Once you save the data, rebind the data to table. so that new data will display. ( that use set_initial_elements as true, so that old values not display ).
    Regards
    Srinivas

  • Refreshing problems for an online dice

    here's the problem
    http://www.geocities.com/nsmela/java/onlinedice.html
    notice how you can't roll afterwards? how can i change this?

    ok, i tried doing a while(countIng=0) with counIng=0 in the beginning
    i got 4 errors i can't figure out.
    code:
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.Applet;
    public class OnlineDice extends Applet implements ActionListener
              int inputNumber;
              double resultNumber = 0;
              int numberOfTimes;
              int countIng=0;
              TextField textField = new TextField(5);
              Button button = new Button("Roll Now");
              Label label = new Label("Click the button after entering the amount of sides into the field above");
              TextField textField2 = new TextField(5);
              public void init()
                   add(textField);
                   add(textField2);
                   add(button);
                   add(label);
                   button.addActionListener(this);
              do; //attempt at trying to make this @#$#!!!! thing loop
              public void actionPerformed (ActionEvent e)
                   String textFieldText = textField.getText();
                   String textFieldText2 = textField.getText();
                   inputNumber =Integer.parseInt(textFieldText);
                   numberOfTimes =Integer.parseInt(textFieldText);
                   for (int count=1; count <=numberOfTimes; count++){
                   while (resultNumber>inputNumber || resultNumber<1)
                        resultNumber=(Math.random()*inputNumber+1);
                   label.setText(Long.toString(Math.round(resultNumber)));
    label.setText(" is your result");
    /*basicly, i'm trying to make this have 2 fields, one to enter the amounts of sides the dice will have
    the other is how many times
    and the error i get is:
    C:\java\diceroller\RollingDice\OnlineDice2.java:26: illegal start of type
              do; //attempt at trying to make this @#$#!!!! thing loop
    ^
    C:\java\diceroller\RollingDice\OnlineDice2.java:26: <identifier> expected
              do; //attempt at trying to make this @#$#!!!! thing loop
    ^
    C:\java\diceroller\RollingDice\OnlineDice2.java:28: illegal start of expression
              public void actionPerformed (ActionEvent e)
    ^
    C:\java\diceroller\RollingDice\OnlineDice2.java:6: class OnlineDice is public, should be declared in a file named OnlineDice.java
    public class OnlineDice extends Applet implements ActionListener

  • Cache Clearing Problem for my website

    I have tried every single thing from this support area to clear my browser cache, but still when i open this website http://www.enukesoftware.com, it doesn't load properly the CSS files.
    Please help me out, its ruining my day.

    Does the page load properly in a Firefox Private Window? If not, try restarting Firefox in Safe Mode (Menu > Help > Restart with Add-ons disabled) to see if the page works there.
    If the latter works then this could be caused by an extension.

  • Force cache refresh for my website

    Hello,
    I have a problem on my website : http://kevinpounot.olympe.in/<br />
    This problem appear just with Firefox.
    When I update my site with new photo or if I change the main page, the modifications does not appear in Firefox.
    The browser just load the caching version of my website and the new stuff is not here.
    I already tried some codes like :
    <pre><nowiki><HEAD>
    <META http-equiv="Cache-Control" content="no-cache">
    <META http-equiv="Pragma" content="no-cache">
    <META http-equiv="Expires" content="0">
    </HEAD> </nowiki></pre>
    or
    <pre><nowiki><?php
    header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
    header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
    header("Cache-Control: no-cache, must-revalidate");
    header("Pragma: no-cache");
    ?> </nowiki></pre>
    Nothing works.
    Is there a code which could force the browser to refresh cache and load the latest version of the site ?
    PS : Sorry for possible mistakes in my english. ;)

    The first thing to check is whether you have any caching plugins like WPSuper cache if you are using a CMS like Wordpress.
    These create temporary HTML versions of your page so it is not enough to deactivate them, you have to activate them and then delete their cache from their settings page.
    If you are a developer and never want cache loaded then
    enter the following into your address bar
    about:config
    Tell it you understand it is dangerous
    enter cache into the search bar and look for
    browser.cache.disk.enable
    Read about what it does here
    http://kb.mozillazine.org/Browser.cache.disk.enable
    clicking it sets it to false
    This will make firefox slower but will work
    You can use this as an alternative
    browser.cache.check_doc_frequency
    read about it here
    http://kb.mozillazine.org/Browser.cache.check_doc_frequency
    basically the settings are
    0 Check for a new version of a page once per session
    1 Check for a new version every time a page is loaded.
    2 Never check for a new version - always load the page from cache.
    3 Check for a new version when the page is out of date. (Default)
    but this does not work so well for me
    Note that
    browser.cache.disk.enable
    must be set to true for
    browser.cache.check_doc_frequency
    to make any difference
    Note that your ISP may be caching, if so consider using different nameservers like openDNS or Google DNS

  • Invalid security certificate for my website host-they say the problem is Apple Safari and use Firefox instead

    For the past few days, I keep getting an invalid security certificate in Safari whenever I select Edit My Site from my website homepage (http://annaporterartist.com), or whenever I select anything requiring a secure log in from my website host main page (FASO.com). I have contacted technical support at my website host (fineartstudioonline.com) and they say that this has been an intermittently recurring problem in Safari for years and they recommend that I use Firefox instead. As proof of this they emailed a link to an Apple Support discussion, but it was for Mac OS X Lion v 10.7.4 and Safari 5.1, even though I told them I am using Mac OS X Mountain Lion v 10.8.2 and Safari 6.0.2. I do not get this error message anywhere else on the web using Safari. I did try Firefox and it seems to work fine, but I prefer Safari and I want to know why Safari is not working as it should be. I am concerned that there is a real security problem with my website host and I need someone to explain why I am getting this error message, what it means, and if it is, in fact, a known problem with Safari or is my website host corrupted? Really tired of technical support playing pass the buck or pretending the problem does not exist.
    The specific error message is:
    Their response to my inquiry and my reply is shown below:

    Back up all data.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    From the menu bar, select
    Keychain Access ▹ Preferences ▹ Certificates
    There are three menus in the window. What is selected in each of them?

  • Recommended size for .SWF on website???

    Hi there,
    I'm producing an interactive video piece for my New Media masters project.  I've put it up on my website, and was wondering out of curiousity, whats the recommended upper limit for the size of a .SWF file on the internet to run smoothly? I realise CPU and internet speeds vary greatly from machine to machine along with RAM, but is there a general upper limit which shouldn't be exceeded for .SWFs?
    My project's .SWF is currently at 260kb.  It also pulls in .FLVs that are between 800kb - 1.5mb and .mp3s between 1.5mb - 2mb via XML.
    The latest prototype of my project is at www.keithwoods.co.uk if anyone's interested and would like to leave me some feedback on this post on how smoothly it ran on your particular machine and any other comments welcome.
    Cheers!

    Thanks for that Ned,
    I had a feeling I was going about it the right way but just wanted to check.
    I remember hearing something about the 10 second rule for a webpage to load, and if it was any longer than visitors would get impatient (goes to show what TV's done to our attention spans!)
    I don't know if I've made this one up but is it recommended that webpages shouldn't really exceed 1mb if you want it to load quickly, or is that not as important now broadband is becoming more prevalent?

  • This website make problem for me, he open by it self everytime i try to open another websites  Please i need some help

    this website make problem for me, he open by it self everytime i try to open another websites
    Please i need some help
    http://yandex.ru/yandsearch?text=ццц&lr=1004

    Dude, I don't think there's a user on this forum that would click on that link.

  • Problems with my hosting for my website

    hi i have a problem i have a hosting for my website and was working fine direct from the modem when i put the router stop working i don't know if is that the router have to be configurate . the router i have is WRT54G My internet service is from comcast cable Thanks for you help Manasses

    well ,  i would lyk u to put some light on the issue first.
    manasses .
    u are not able to host the website now ?? or u having some problem in accessing ur site from a remote location or shld i say WAN?
    Or there is some problem In The FTP file Transffering From ur Website??
    Well , there are many issues related as u said , so plz let us know the Problem u coping with ?
    ~~~Nobudy's Perfect , i try To Be So ! Each n every moment of maH LYF , AND I THINK dat wats make Me "Different" From others....~~~

  • Does anyone have problems with some websites where text is overwritten and it is impossible to navigate the site as the buttons to for example confirm purchases do not work?

    I am having problems with some websites - e.g. Easyjet and more recently the Sport Relief website, where the text overwrites other text and images and it means it is impossible click to accept, confirm or find further information?

    lindsayfromstow on the wold wrote:
    I am having problems with some websites - e.g. Easyjet and more recently the Sport Relief website, where the text overwrites other text
    Post a screen shot.
    What browser and what version are you using?
    Have you tried a different browser?

  • Problems with creating a 3D picture logo/tile for a website

    Hi all
    About 6 years ago, I found a great free website where you could create fast and easy 3D picture logos/tiles, with any image or photograph.  Stupidly I did not note down their web address, and now I cannot find it by typing everything above, into good old Google.  Luckily I subscribed to Adobes Photoshop CC 14.2 version, and was wondering if you guys would know of any tutorials, I could follow to create 3D logos/tiles for a website.  Or your own little tutorials please? As it would be very much appreciated.
    The only way I can describe my 6 year old created logo/tile, is that it is 149 pixels wide x 217 pixels long, and looks like a bathroom tile.  As it seems to have an invisible, internal frame which makes you think that the image, is jumping out at you.  Depending on whether Adobe allows you to add images, onto their threads with an external picture host, I will try to add it to this thread.
    <img src="http://i125.photobucket.com/albums/p63/leosun848/YES.jpg" border="0" alt="Complete Angel YES photo YES.jpg"/>
    I look forward to your advice.
    All the best,
    Oliver

    Hi, Herbert2001
    Many thanks for replying to my thread, very much appreciated.  I am just so embarassed, that putting a tile frame effect around an image was so easy!  By simply just going to Layer-> Layer Style-> Bevel & Emboss, on Photoshop CC.  Ow well, you cannot win them all haha!;-)
    All the best,
    Oliver

Maybe you are looking for

  • Error in Opening Posting Period in MM

    Dear Gurus, I am facign an error when i am opening a posting period in MM. In MMPV, when i open the Period and execute system displays the following error message: Client 300 Period Entered : 112009 Log ABEND MMPV_Date_Check Error Occured (See note 1

  • Daily Crashes of Acrobat 11 Pro 11.0.3 on XP

    My help desk is getting several calls a day about users' opening a PDF, stamping it and printing to Adobe PDF (to add preset security settings) -- then Acrobat crashes and closes. And sometimes Acrobat just crashes for other reasons. This has been ha

  • Need a way to display/toggle between data like tabbed Spry

    I want the functionality of the tabbed Spry but I don't want the tabs. I want some links and be able to toggle from link to link displaying info in an area of the page without navigating to another page. Is there a way to do this in Dreamweaver?

  • Answers-Perf

    Hi, Can Any one tell me the performance tuning techniques we can do in OBIEE Answers side?not RPD

  • Help Adobe Document Services capabilities

    Hi, 1. Can Adobe document services be configured for continuoulsly monitoring a folder "watching a folder" for xml files (which is data source) 2. Once a xml file is placed into the folder ADS should pick up the file and merge it with the xdp file (l