Ui:hyperlink action methods stopped working in IE

Hi
I'm developing my application for few months, but few days ago all ui:hyperlink action methods stopped working in IE. They are not invoked at all... No javascript errors, everything works fine in Firefox. Can anybody tell me where to look as I'm sitting 6h in front of screen and cannot find anything wrong...

anyways, it can't be a problem becasue new application is facing the same problem and there's no filter. I'm using tomcat 5.5.18 on jboss 4.0.5.

Similar Messages

  • Ui:hyperlink and ui:button "action" methods stopped working in IE

    Hi
    I'm developing my application for few months, but few days ago all ui:hyperlink and button action methods stopped working in IE. They are not invoked at all... No javascript errors, everything works fine in Firefox. Can anybody tell me where to look as I'm sitting 6h in front of screen and cannot find anything wrong...
    The only thing I have changed was adding a filter which changes encoding to UTF-8. Class below:
    * CharsetFilter.java
    * Created on 17 maj 2007, 11:18
    package tools.filter;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.text.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.servlet.Filter;
    import javax.servlet.FilterChain;
    import javax.servlet.FilterConfig;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletException;
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    * @author  Michal
    * @version
    public class CharsetFilter implements Filter {
        public CharsetFilter() {
        private String encoding;
        public void init(FilterConfig config) throws ServletException {
            encoding = config.getInitParameter("requestEncoding");
            if( encoding==null )
              encoding="UTF-8";
        public void doFilter(ServletRequest request, ServletResponse response, FilterChain next)
             throws IOException, ServletException
    //          request.setCharacterEncoding(encoding);
              next.doFilter(request, response);
         * Destroy method for this filter
        public void destroy() {
    }

    anyways, it can't be a problem becasue new application is facing the same problem and there's no filter. I'm using tomcat 5.5.18 on jboss 4.0.5.

  • SSRS Execution Service Render Method stopped working

    Hello SSRS Profis!
    I'm having the following Problem:
    I was trying to integrate SSRS in my Company-Software, and until today it went quite good:
    Its an ASPMVC 5 project with WCF-Services, and in these i had methods to render reports with the help of the ReportExecution - Webservice (2005), the Version of the MSSQL Server we use is 2008R2, reports use stored procedures as data sets.
    Everything worked fine, i could render all my reports in the services, gave the result back to the Frontendprojects to present it there, it worked fast and properly.
    Until today: For some reason, the call of the ReportExection.Render() - Method gives no more results back.
    Debugging shows me that it works approx. the same time as it did before for every report, but the result now is only "null" for every report i integrated until now:
    Here is the code I use to execute the service (for network credentials i use a user with administrator privilegue who can access all the reports (tested in private session), Parameter constructio also should work properly because it did before, same
    for the Report path...
    Any Ideas would be helpful!
    private byte[] getPDFFromReport(string ReportPath, Dictionary<string, string> parameterDicitionary)
    ReportExecutionService rs = new ReportExecutionService();
    // private method to set a user with enough permissions
    rs.Credentials = SetServiceAccount();
    // Render arguments
    byte[] result = null;
    string reportPath = ReportPath;
    string format = "PDF";
    string historyID = null;
    string devInfo = @"<DeviceInfo><Toolbar>False</Toolbar></DeviceInfo>";
    // Prepare report parameter.// mapping Parameters, gives back ReportExecution.ParamaterValue Array, still works as it should
    ParameterValue[] parameters = SetReportParameters(reportPath, parameterDicitionary); DataSourceCredentials[] credentials = null;
    string showHideToggle = null;
    string encoding;
    string mimeType;
    string extension;
    Warning[] warnings = null;
    ParameterValue[] reportHistoryParameters = null;
    string[] streamIDs = null;
    ExecutionInfo execInfo = new ExecutionInfo();
    ExecutionHeader execHeader = new ExecutionHeader();
    rs.ExecutionHeaderValue = execHeader;
    execInfo = rs.LoadReport(reportPath, historyID);
    rs.SetExecutionParameters(parameters, "de-de");
    // rs.Timeout = 300000;
    String SessionId = rs.ExecutionHeaderValue.ExecutionID;
    Console.WriteLine("SessionID: {0}", rs.ExecutionHeaderValue.ExecutionID);
    try
    result = rs.Render(format, devInfo, out extension, out encoding, out mimeType, out warnings, out streamIDs);
    execInfo = rs.GetExecutionInfo();
    Console.WriteLine("Execution date and time: {0}", execInfo.ExecutionDateTime);
    catch (SoapException e)
    Console.WriteLine(e.Detail.OuterXml);
    // Write the contents of the report to an MHTML file.
    return result;
    Edit:
    I tested the methods with the same user in an WindowsForms Project and got a result. In a former Version, it also still works. I changed nothing since the last deploy in this methods, so can't imagine why it suddenly stopped working....

    Found the solution!
    After checking team-foundation-changelogs of the last checkins, it turned out that somehow automatically some value in the reference.cs of the reportexecution - webservice was changed from:
            [return: System.Xml.Serialization.XmlElementAttribute("Result", DataType="base64Binary")]
    to
            [return: System.Xml.Serialization.XmlElementAttribute("Value", DataType="base64Binary")]
    After deleting and readding the webreference to the Project, it worked again.
    The next Thing to Research for me is how it can be, that this value automatically changes. Possibly because of different Versions of VS in the dev-Team.. (Ultimate and premium) In any case, this issue is solved, thank you for reading :)

  • How can I execute the hyperlink action method when I click on the hyperlink

    Hi,
    I have created a hyperlink (hpPopupXML).
    1. I set the Target property to New Window.
    2. I set the URL to displayXML.jsp
    I ran the application and I click on the hyperLink to execute the hpPopupXML_action() method and it does not.
    Is there a way to force execution the hpPopupXML_action() when I click on my hyperLink (hpPopupXML);
    Please let me know.
    Thanks.

    The following excerpt is from http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/about_components.html#action
    Simple Page Navigation
    If you want the user to click a component to move to a specific page, and you do not want the browser to submit any user input, you can use the Hyperlink, Image Hyperlink, Tab, or Tree Node component and type the path to the destination page in the component's url property, such as /faces/Page1.jsp.
    Dynamic Page Navigation
    The Page Navigation editor enables you to specify navigation rules that map user actions and decision logic outcome to destination pages. You specify the mapping by dragging a named connector from the link or action component to the destination page. You must also create an action handler for the component that returns the outcome, which is a String value equal to the connector's name. You can use the component's action property to create the action handler.
    When a page visitor clicks the component, the browser submits the input, if any, and the action handler returns an outcome. The server looks up the outcome in the navigation rule mapping to determine what page to respond with. If there is no navigation rule for that outcome, the server redisplays the current page. You can write the action handler to return different outcomes based on business logic.
    NOTE: When you set both the url and the action property, the action handler takes precedence.
    IT LOOKS LIKE IN YOUR CASE THE URL PROPERTY IS TAKING PRECEDENCE OVER THE ACTION PROPERTY. IS THAT TRUE?

  • Refactor rename method stopped working - 10.1.3.1.0

    Selected Refactor -> Rename to rename a method. The preview log shows up, but when i click on the green arrow to "do refactoring", nothing happens. I have been using 10.1.3.1.0 since it was released but I just ran into this problem.
    I re-installed jdeveloper 10.1.3.1.0 but I still have the same problem.

    Frank,
    I thought that my JDev install had become unstable and that is why I re-installed. However that is not the case.
    I tried to isolate the problem a little further. The refactor/rename method works in the other projects in my application. In the project that I have a problem, I tried renaming methods in other classes and this worked.
    What is different about the class that I have a problem with is that:
    1) it is an abstract class (say abstractFoo)
    2) I am renaming a method that is not abstract in abstractFoo
    3) Foo is a subclass of abstractFoo
    4) I have a JUnit test FooTest that contains a few anonymous inner classes (that subclass Foo) and override the method to be renamed.
    The preview window shows the changes to be made in abstractFoo & FooTest but does nothing.
    Have you tested this scenario out?

  • IMFMediaSession::Start method stops working on second intance

    I have created a test app modeled on the playlist example in the vista sdk. I modified it a bit to play video and loop with the skip function. I then set it up to create two windows with a player in each. Now with one window it plays just fine and loops
    as expected. When I add a second window with another playlist something strange begins to happen. The first window plays and loops just fine, but when it comes to the second window, when it gets to the end of the sequencer source, it triggers the MEEndOfPresentation
    event. The code is set to call the skip function, which it executes fine. Then the player just goes black. It must still be playing or something, because if I wait the player will start playing again. If I wait even longer it will go black again. Now the whole
    time the first window is running fine.
    I have built this test app with the following example
    https://msdn.microsoft.com/en-us/library/ms697285(v=vs.85).aspx
    I could post the code for the test app, but it is quite a bit. I am hoping someone might have a clue to what the problem is before I fill this thread with code. I would appreciate it if someone could help me work through this problem.
    Edit: I have put the code, sample files I used, and a mftrace file here
    https://onedrive.live.com/?cid=C549C64FC840D296&id=C549C64FC840D296%21109
    Thank You

    uploaded the code^^^^^

  • How do I sync my iphone when normal methods stopped working?

    I am having trouble syncing my audio books-- some thing that has never happened before. I recently purchased an audio book that shows up in my itunes library on my desk top. However when I tried to sync my iPhone with my Itunes library nothing took. I was trying to take off some audio books from my iPhone and add others but nothing changed on my iPhone. I tried manually syncing them as well and that didn't work either. This is the first time I have had this problem. Any suggestions would be greatly appreciated.
    Betty

    What it means is that the media and apps you have selected to sync would take 3.7GB more space than the phone has available. Deselect some of the stuff you're trying to put on it. Photos and videos can be retrieved as though the phone were a camera using any app that supports one.

  • Problem with seting action method to a Hyperlink object

    Hi there,
    as the subject says, I have a problem wih setting the action method of a Hyperlink object. Here is how the program is organized:
    I have an external bean which generates an ArrayList of Hyperlink objects. In the backing bean of my web page I call a method from the above mentioned external bean to generate the list of hyperlink objects. After that in the page bean I insert the hyperlink objects in GridPanel component. So far everything works fine, but the action method of the Hyperlink objects is not called and I can't understant why.
    Here is how I add the objects to the GridPanel component:
    private void populateGridPanel()
            Hyperlink hyper;
            for(int i=0; i< checkboxList.size(); i++)
                    hyper = (Hyperlink) hyperlinkList.get(i);
                    vehicleGridPanel.getChildren().add(hyper);
        }All properties of the Hyperlink objects are set in the external bean not in the page bean, here is how:
    //action method executed when the hyperlink is clicked
    MethodBinding mb = (MethodBinding) FacesContext.getCurrentInstance().getApplication().createMethodBinding("#{Page1.hyperlink_action}", null);
    veHyperlink.setAction(mb);The populateGridPanel() method is called in the init() method of the page bean, after the initialization of all other components.
    An interesting fact is that if I manually drag-n-drop a hyperlink object to my page and programatically set its action method with the code above everything works fine. But using the same code for the dynamically generated hyperlink objects inserted in the grid panel doesn't work.
    Any kind of help is highly appreciated.
    Thanks!
    Message was edited by:
    panayot

    I got this use case to work as follows:
    1. Drag a Grid Panel and set its columns property to 1.
    2. Drag a Message Group.
    3. Use the following code in Page1:
    public void prerender() {
    populateGridPanel();
    private void populateGridPanel() {
    if (gridPanel1.getChildren().size() > 0) {return;}
    for (int i = 0; i < 3; i++) {
    Hyperlink veHyperlink = new Hyperlink();
    //action method executed when the hyperlink is clicked
    MethodBinding mb = (MethodBinding) FacesContext.getCurrentInstance().getApplication().createMethodBinding("#{Page1.hyperlink_action}", null);
    veHyperlink.setAction(mb);
    veHyperlink.setText("dynamic hyperlink " + i);
    veHyperlink.setId("dynamicHyperlink" + i);
    gridPanel1.getChildren().add(veHyperlink);
    public void hyperlink_action() {
    info("Yup it worked at: " + new java.util.Date());
    4. Fix imports, Run, and then click on the hyperlinks.

  • Folder Actions will not work - tried everything

    Recently Folder Actions simply stopped working on 10.6.4. They worked fine before then recently just stopped working.
    I've tried everything I can think of, including:
    1. completely removing enabling & disabling & enabling folder actions through the setup app.
    2. trashing folder actions plist files in user domain and relaunching
    3. disabling related launchd processes with lingon
    4. trashing launch agents in user domain and also trying to unload them in terminal
    5. trying to kill the folder actions dispatcher process in activity monitor (just relaunches, as it should)
    6. emptying system caches including dyld shared cache using cocktail
    7. doing most of the above and restarting
    It's driving me nuts. Any other ideas?
    here's some entries from syslog:
    8/2/10 9:31:37 AM com.apple.launchd.peruser.501[269] (com.apple.FolderActions.folders) Throttling respawn: Will start in 6 seconds
    8/2/10 9:37:29 AM Folder Actions Setup[4403] * WARNING: Method selectedRowEnumerator in class NSTableView is deprecated. It will be removed in a future release and should no longer be used.
    8/2/10 9:43:37 AM com.apple.launchd.peruser.501[269] (com.apple.FolderActions.enabled[309]) Exited: Killed
    8/2/10 9:46:23 AM [0x0-0x3a03a].com.apple.systemevents[360] com.apple.FolderActions.enabled: Already loaded
    8/2/10 9:52:07 AM Folder Actions Setup[1083] * WARNING: Method selectedRowEnumerator in class NSTableView is deprecated. It will be removed in a future release and should no longer be used.
    8/2/10 9:52:16 AM com.apple.launchd.peruser.501[269] (com.apple.FolderActions.folders) Throttling respawn: Will start in 7 seconds
    8/2/10 9:53:02 AM com.apple.launchd.peruser.501[269] (com.apple.FolderActions.folders) Throttling respawn: Will start in 1 seconds
    8/2/10 9:56:18 AM com.apple.launchd.peruser.501[269] (com.apple.FolderActions.folders) Throttling respawn: Will start in 10 seconds
    8/2/10 10:00:58 AM Folder Actions Setup[2190] * WARNING: Method selectedRowEnumerator in class NSTableView is deprecated. It will be removed in a future release and should no longer be used.
    8/2/10 10:01:01 AM com.apple.FolderActions.enabled[2236] launchctl: Error unloading: com.apple.FolderActions.folders
    8/2/10 10:01:30 AM com.apple.launchd.peruser.501[269] (com.apple.FolderActions.folders) Throttling respawn: Will start in 10 seconds
    8/2/10 10:01:42 AM com.apple.launchd.peruser.501[269] (com.apple.FolderActions.folders) Throttling respawn: Will start in 9 seconds
    8/2/10 10:05:03 AM sudo[2622] lryter : TTY=ttys000 ; PWD=/Users/lryter ; USER=root ; COMMAND=/bin/launchctl unload -w /Users/lryter/Library/LaunchAgents/com.apple.FolderActions.enabled.plist
    8/2/10 10:10:25 AM Folder Actions Setup[676] * WARNING: Method selectedRowEnumerator in class NSTableView is deprecated. It will be removed in a future release and should no longer be used.
    8/2/10 10:10:27 AM com.apple.FolderActions.enabled[680] launchctl: Couldn't stat("/Users/lryter/Library/LaunchAgents/com.apple.FolderActions.folders.plist"): No such file or directory
    8/2/10 10:10:27 AM com.apple.FolderActions.enabled[680] nothing found to unload
    8/2/10 10:10:38 AM com.apple.launchd.peruser.501[268] (com.apple.FolderActions.folders) Throttling respawn: Will start in 8 seconds
    8/2/10 10:13:17 AM sudo[943] lryter : TTY=ttys000 ; PWD=/Users/lryter ; USER=root ; COMMAND=/bin/launchctl unload -w /Users/lryter/Library/LaunchAgents/com.apple.FolderActions.enabled.plist
    8/2/10 10:14:01 AM com.apple.launchd.peruser.501[268] (com.apple.FolderActions.folders) Throttling respawn: Will start in 4 seconds
    8/2/10 10:14:14 AM com.apple.launchd.peruser.501[268] (com.apple.FolderActions.folders) Throttling respawn: Will start in 1 seconds

    I finally go Folders Action to work, after being unable to use it even for a simple beep for years now.
    Here is what I did:
    1. Changed permissions to 755 for the following folder and two contained files (note that 775 didn't work for me)
    ~/Library/LaunchAgents/
    ~/Library/LaunchAgents/com.apple.FolderActions.enabled.plist
    ~/Library/LaunchAgents/com.apple.FolderActions.folders.plist
    2. Changed the following lines within ~/Library/LaunchAgents/com.apple.FolderActions.enabled.plist (using TextWrangler)
    from:
    <key>OnDemand</key>
    <false/>
    to:
    <key>OnDemand</key>
    <true/>
    Prior to the permissions changes within #1 above, the value of <true/> kept getting changed back to <false/> by something in the system... and though
    there was improvement by the permissions changes, the following console message appeared until false was changed to true.
    com.apple.FolderActions.enabled[4127] launchctl: Error unloading: com.apple.FolderActions.folders
    At this point true is staying true, and not being changed by unknown forces to false, and the above message is not appearing.
    3. The only other thing I did prior to #1 and #2 above, was to run the script (unsaved),
    tell application "/System/Library/CoreServices/Folder Actions Dispatcher.app" to tick
    This little tell line caused something to occur where my Folder Action surprised me and worked for the first time though it took about 30 seconds and was erratic,
    sometimes performing, sometimes not, though if I would do move something into the folder to trigger the action that should occur, and did not occur, then at the point
    running the above tell line or script would cause the action to occur.
    4. At this point I don't fool with the tell line or script from #3, and it seems that systemevents has gotten involved, as well as launchd, and with my simple Folder Action script
    I'm getting the folder action within 10 seconds compared to 30 to 45 if ever seconds.
    5. This is still too early to tell if this is the wonder pill I've needed since Leopard, and now Snow Leopard (and maybe Tiger as well: I forget when I even tried Folder Actions).
    There was a time when I moved things around, so that the items normally found in the former AppleScript folder, were placed elsewhere in subfolders, so I don't know if that lead to this...
    because I could get Folder Actions to work on Macs in the Applestore, but not my own Mac. Watching the console messages was helpful. I don't think it's a big concern that
    deprecated messages are found sometimes. That's a just a normal part of the constantly rebuilding of things that goes on. It's more like a reminder that we've got an upgraded
    OEM part were going to start using, and the older part won't be available after such and such date, so program accordingly, and in the meantime drive.

  • Synaptics Coasting Feature Stops Working

    The laptop is model G61-420ca in which there are no W8 drivers as that is what I have running now.
     I have disabled tapping and the right hand swipe feature that pulls the Charms Bar out.
    Randomly the coasting action will stop working (which I have enabled) and double tapping causes the cursor to fly up to the right hand upper corner where it pulls the annoying Charms Bar out.
     All of the settings remain disabled as mentioned above, but the only way to get coasting back again as well as the cursor from activating the charms bar is to restart the computer.
     I tried installing the newest driver direct from Synaptics which I thought worked, but it happened today anyway.
     Plus Microsoft just did an update and installed an older version.
     My dv8 which wasn't doing it at all, has also just started doing this annoying thing.
     Nothing on Google about it either....

    Yes, an improvement over some things, but a step backwards on many others. Like having to click more to shut things down _ and if I apply the registry hack to fix that it affects other things in little annoying ways, just as one example. Why couldn't they have a shut down button in the charms bar, that would have made much more sense then berrying it under the gear symbol since it's not actually a setting per say, but a function to shut the computer down, not something that is user controllable.
     I did one of the hacks and added a shut down button to the tool bar on my G61 and after that, a command prompt window flashed on the screen when I booted up _ that's what I call unstable... and very annoying.
     Or when I mouse over to my favorites list  or close a window the charms keeps popping out and there is a and hack to keep that from happening.
     If I have to carve up a piece of software to get it to work, then I won't use it.
     A machine that is meant for W8 probably works fine, a computer where there are no drivers for it doesn't work very well.
     If I close the lid on my dv8 and open it _ it black screens _ randomly. I then get this pop up "W8 is experiencing a problem and will have to shut down". One time it even affected the BIOS with all this loud beeping and I had to force it to shut down.
     So no, W8 is designed for touch screen computers and if you don't have one _ best stick with W7 and maybe 2022 they will have worked the bugs out.

  • CP7 Advanced Action stopped working

    I am trying to create a slide that gives answer specific feedback to a multiple choice practice question.  To do this I am using the radio button interaction and an advanced action that displays the appropriate text caption box based on the selected answer.  It also shows the "next" button allowing the user to proceeed to the next slide upon choosing the correct answer.  I have used this method before successfully.  It was working properly for this specific slide.  Then, suddenly, on one preview it stopped working.  Clicking the "Check answer" button has no effect.  No text captions are displayed at all.
    If you want to see the problem the (unfinished) project is here.  Slide 6 is the problem.  It should be behaving exactly like slide 4, and was at first.
    I'm sure I did not inadvertently change anything about the slide or the action and have checked to see that everything is set properly.  I have checked and rechecked the variable and action names for conflicts with other actions.  I have restarted Captivate and restarted the computer.  I tried assigning a different action to the "Check Answer" button then re-assigned the desired action to try to "reconnect" it.  The action was working correctly each time I previewed the project until one time it did not work.  It has not worked since.  I believe that I only worked on static content slides between the working and non-working previews so I can't see what I could have done to break it.  The problem occurs in both Flash and HTML5 and in both previews and published files.
    I must have done something but I can't see what.  Any suggestions would be most apppreciated.
    I am using the latest version of Captivate - 7.0.1.237 - on Windows 8.1
    Here is a screen shot of the action:
    Thanks for anything you might be able to add here.

    Thank you for your suggestions.  Looking with fresh eyes today I found the problem.  On checking the radio button interaction there was no variable listed.  Somehow the variable holding the selection had become "disconnected" from the interaction.  Re-entering it fixed the problem.  Of course I only discovered this after deleting and recreating the actions and trying your suggestion of sharing the action from the other working slide.  When none of these worked I was trying to figure out what else might be common to all of these "solutions" and eventually found it.
    As for your other offered tips, I don't mind at all and welcome them.
    I considered grouping items but unless I am missing something there is no group that is common to all options and can be shown/hidden together.  I would have to create separate groups for each alternative answer which seems to me to be about an equal amount of work to showing/hiding individual items.
    As for your labelling suggestions, I have adopted them and made the appropriate changes.
    Once again, thank you so much for your time and efforts.

  • Advanced Action works 2 times and stops working

    Hi Everyone,
    I'm creating a Captivate 4 (4.0.1 Build 1658) presentation of a simple LAN setup with 2 hosts.  I have a caption showing setup parameters for the hosts (IP and Hostname) and a dropdown box allowing for selection of which host to configure parameters in the upper right (screenshot below).
    My advanced action executes when the submit button next to the IP field is clicked (Host Name will be next once I figure this little issue out). It checks which host is selected in the dropdown widget and assigns the IP address (HostIP) to the respective host.
    As the subject states, this works 2 times and then stops working.  Here is the code:
    Check If ( HostSelection is equal to Host 1 )
         begin
              Host1IP := HostIP
              rdcmndGotoFrame := 20
         end
    Or Else
         begin
              Host2IP := HostIP
              rdcmndGotoFrame := 30
    end
    The rdcmndGotoFrame assignment seems to be the only way I can reliably pause the presentation after the button is clicked.  Not sure if this is contributing to the problem or not.
    I've done this type of thing before but I can't figure out why this isn't working.  Any help would be greatly appreciated.

    Hello,
    To keep the playhead from moving on, use the expression:
    rdcmndGotoFrame = rdinfoCurrentFrame -1
    Sometimes the -1 is not necessary, you will have to check yourself. I do not know why you choose the absolute frame numbers to go to. And I do not really catch the issue for the rest.
    Lilybiri

  • Hello  My system version 10.5.8  I have installed Safari update - 5.0.6 and the browser stopped working. At openingit shows the following icon:   "Safari has suddenly finished working. Possible problem is in the action of the plugin "TastyAppsAVPlugin".

    Hello
    My system version 10.5.8
    I have installed Safari update - 5.0.6 and the browser stopped working. At openingit shows the following icon:
    "Safari has suddenly finished working. Possible problem is in the action of the plugin "TastyAppsAVPlugin".
    After deleting all plugins from the folder "Internet Plugin", Safari worked again no problem, BUT all sites with flash content (e.g.YouTube) did not work.
    I then tried the following experimental steps:
    a) Moved all plugins from the folder "Internet Plugin" into a temporary folder.
    b) Downloaded and istalled Adobe Flash Player version 10.3.181.34
    c) Started Safari and it did not work ( same message"TastyAppsAVPlugin")
    d) Deleted Adobe Flash Player from the folder "Internet Plugin". Safari worked.
    e) Moved back all plugins, except Adobe Flash Player, from the temporary folder to "Internet Plugin" folder. Safari works... But Flash won't work!!! Before update to Safari 5.0.6 , ev erything worked perfectly well.
    Guys, please solve the problem
    Regards
    Ruslan Reed
    [email protected]

    MayaMa --
    There are many threads on this.  I typed "Uninstalling TastyApps" in the Google search, and came up with these:
    http://www.google.com/search?client=safari&rls=en&q=Uninstalling+tastyapps&ie=UT F-8&oe=UTF-8
    I do not know which of the many TastyApps haxies you have.  Perhaps it would be better to contact them directly, once you know which of their products you have.

  • Hyperlinks in PDF doc stop working when emailed out in Mac Mail. Why?

    I have created a Pages document with hyperlinks and then saved it as a PDF.
    The PDF document retains the hyperlinks (they still work).
    When I attach the PDF to Mail and email it out the hyperlinks stop working unless I double click on the PDF document (which "opens it").
    Why? Help please as I want the hyperlinks to work when the email is received - ie. without double clicking on it. Thanks.

    First off, Word should show you the version on a splash screen when you launch it.
    Also, what happens to the links if you just open the document in Word and save it as a PDF?

  • Hyperlinks have stopped working in Acrobat 9 pro

    Hi all,
    I have been using acrobat 9 pro for quite some time now, in conjunction with Microsoft Office 2007, specifically Excel 2007.
    I have been using Excel 2007 to create my reports which have several worksheets. The first worksheet is a simple cover page and the second a worksheet with data relating to the next "x" amount of worksheets.
    On this second worksheet, I have included several hyperlinks which point to the other "x" worksheets within the workbook as a whole.  The other worksheets then have a hyperlink which takes them back to the data (second) worksheet.  Sort of like a homepage pointing to locations, with a "home button" on each subsequent page.
    Once the reports were finished, I then clicked the PDF maker button, and added "all worksheets" or "entire workbook" whichever took my fancy at the time to create the PDF.  This hhas been working perfectly for over a year, however, last month this stopped working.
    Previously when creating the PDF file, being a really boring nerd i decided to click the "show progress" button which showed every step of the conversion process from "performing post processing" to "scanning for hyperlinks" etc.  Now when I click the "show progress" button, all that appears is "performing post processing," the scanning for hyperlinks has completely disappeared.
    I have checked the settings, in case they had been changed accidentally, however, the "include links" checkbox is ticked.  I have also tried creating several (well all) different formats of the Acrobat PDF from version 4 through to 8, all with the same results.  The text that should be a hyperlink is blue and underlined, but has no link.
    If i create a PDF/A format file, the hyperlinks are the same result (blue and underlined) however if you hover over the link text popps up with the address of where the link should point to in the document, eg. "Page 6 XYZ 59 542 NULL."
    I imagine the "NULL" part has something to do with this feature not working.
    My current version of Acrobat is 9.1.2 and I am wondering if the update from 9.0 is what has caused this, and if so, does anyone have a way of making the hyperlinks work.
    Message was edited by: fenton419

    The source of the problem (Excel internal Hyperlinks no longer convert to PDF file) has been FOUND...check for the installation of "Microsoft Excel 2007 Security Update (KB969682)".  The Knowledge Base Article, dated June 9, 2009, http://support.microsoft.com/kb/969682 actually lists one of the two issues we started to notice at the end of June / early July.  The recent Adobe Acrobat 9.1.2 update was more than likely just coincidentally released at about the same time as Microsoft's KB969682 security update for Excel 2007.
    We uninstalled the "Microsoft Excel 2007 Security Update (KB969682)" update from our Windows XP workstations, and the Adobe PDFMaker Add-In 9.1.2 works fine now...no more distorted graphics and Excel Hyperlinks are now back into the PDF files!

Maybe you are looking for