JavaScript:Event - Popup ('32770567', '73')

When viewing tv programs on demand for the day on www.news.com.au, I used to be able to click on a program and a new window opens to give a sypnosis of the program.

Now, when I put the cursor on the program I get the message: javascript:event - popup...

Being a computer illiterate, I don't know what the problem is!

Appreciate help and thank you.

Restore point:

http://www.howtogeek.com/HOWTO/Windows-Vista/using-Windows-Vista-system-restore/

Do Safe Mode system restore, if it is impossible to do in Normal Mode.

Try typing F8 at startup and in the list of Boot selections, select Mode safe using ARROW top to go there > and then press ENTER.

Try a restore of the system once, to choose a Restore Point prior to your problem...

Click Start > programs > Accessories > system tools > system restore > choose another time > next > etc.

http://www.windowsvistauserguide.com/system_restore.htm

Read the above for a very good graph shows how backward more than 5 days in the System Restore Points by checking the correct box.

See you soon.

Mick Murphy - Microsoft partner

Tags: Windows

Similar Questions

  • Question of JavaScript event...

    Hello

    I'm writing JavaScript code that runs when an entry is selected from a Popup LOV. But because the and its corresponding element hidden are filled from JavaScript on the page of the child, it does not trigger a change/development event.

    I need a way I thought to overcome this, but not yet tried to create a new Popup LOV template and locally override the JavaScript function with the same code + a little something.

    Is there a better solution?

    Kind regards
    Dan

    http://danielmcghan.us
    http://sourceforge.NET/projects/tapigen

    try to put this in the item > 'Attributes of the HTML form element' of your popup lov

    onChange="javascript:alert('Changed...')"
    
  • Spread of events PopUp

    How to listen to a dispatched event of a PopUp? The PopUp from an Application (as a parent). However, the Application is not able to listen to the event.

    Hello

    a as an example

    _customWindow = TitleWindow (PopUpManager.createPopUp (this, TitleWindow, true));

    _customWindow.addEventListener (CloseEvent.CLOSE, onCloseCustomVars);

    _customWindow.addEventListener ("settingsChanged", onChangeCustomVars);

    PopUpManager.centerPopUp (_customWindow);

  • ADF set (true) disclose to showDetailItem using javascript and pass event

    Hi all

    We strive to integrate oracle ADF and Oracle Forms. We use integration javascript to call/interact with oracle forms

    Presentation of the ADF:

    Activate us or disable the appropriate showdetailitem based on a link.

    To enable forms indicating technicality (with id formssd1) and the javascript event passes to the forms, we use the code below

    function refreshReport(evt) {
      var formsLayout = AdfPage.PAGE.findComponentByAbsoluteLocator("pt1:r1:0:formssd1");
      if (formsLayout != null) {
       if (!formsLayout.getDisclosed()) {
       formsLayout.setDisclosed(true);
       }
      }
      var reportLink = evt.getSource();
      var reportID = reportLink.getProperty('reportID');
      alert(document.forms_applet);
      if (document.forms_applet != null) {
       document.forms_applet.raiseEvent('refresh', reportID);
      }
      else {
       window.setTimeout(invokeReport(reportID), 20000);
    
    
      }
    }
    
    

    Problem/question:

    The forms showDetailItem is it disclosed (true), it works fine. The javascript event through to the form and the form refreshes the report

    If the forms point showDetail is not disclosed, javascript allows the showdetail.  But the document.forms_applet attribute is not set.

    ADF: 12.1.3

    Forms: 11g R2

    Can you please let me know, how to reach the attribute (document.forms_applet)?

    I was able to solve the issue myself. I used a combination of clientListener and serverListener. I called the "document.forms_applet.raiseEvent" of managed bean and it solved my problem

  • Process management using javascript to call popup

    I'm on Windows Vista, Oracle XE and Apex 3.1.0.00.32.

    Management works when you use the button of the area based.

    I wanted to use a button"display"among the elements of this region for a list of 'button' in the sidebar. I created a button and used a branch issue: REQUEST = 'button_name '. The range lights, but I get an error "Internet Explorer cannot display the webpage."

    Header HTML code
    < script language = "JavaScript" type = "text/javascript" >
    function {popup (pURL, pwidth, pheight)
    html_PopUp (pURL, "winLov", pWidth, pheight);
    }
    < /script >

    Branch code
    JavaScript:Popup('f?p=&APP_ID.:10012:&APP_SESSION.:&request.::10012:P10012_ISS_ID:&P10011_ISS_ID.',500,350);

    Given that the code works in the URL redirection on a button in a position in the region but not in a redirect of Branches to a URL, I guess that this feature does not work? Anyone can shed some light on this? If that doesn't work I'll have to find another solution...

    Thank you

    Sam

    I did search and found a thread that intimates she should work.

    link:javascript on a branch call is possible

    Published by: slavanaway on March 23, 2009 16:14

    Sam,

    Now I understand what you're trying to do...

    First, on the question of the key, even if it doesn't have a redirect URL option you can use the scope attribute to hang some javascript. For example:

    OnClick ='openPopUp (); void (0);'

    The void (0) must be just, the browser executes the JS and not "follows the link. But attention! To do this, you use the button model must include the string #BUTTON_ATTRIBUTES # substituiton.

    If I understand your question about branches and JS, branches may not have JS simply because they run in the side server.

    To make the window pop up submit the home page before you close, you can use this code in a button:

    opener.doSubmit ("ANYREQUESTYOUWANT");
    Window.Close ();

    Don't know if that answers all your questions, but I hope it helps...

    Luis

  • problem of JavaFX and javascript

    Hello

    I work with Javafx and facing a problem regarding the javafx and javascript event. I use WebView of javafx and points associated with the application of the swing.
    I'm passing a url and be able to view the Web page.

    The Web page contains a button that has a validation. After clicking on a popup alert is supposed to be opened against this validation.

    But the alert does not come.
    could you please enlight on it.

    Kind regards
    Dev.

    Note that your question belongs in the forum later and JavaFX 2.0 not 1.x forum JavaFX (JavaFX 1.x did not have a WebView).

    JavaFX 2.0 and later versions «JavaFX 2.0 and later forum»

    ---------------

    To get windows pop up for WebView, you must implement an appropriate Manager.
    Perhaps a future version of a WebView will provide implementations by default of these dialog boxes, but there is currently no default behavior for many of these methods in JavaFX 2.2 (i.e. basically they are simply ignored).

    See WebEngine methods:
    setOnAlert
    setPromptHandler
    setConfirmHandler
    setCreatePopupHandler

    For your example, you probably want to predict an EventHandler setOnAlert that creates a new dialog box that contains the alert information.

    For example, the following code displays a couple of alerts when the user triggers them by pressing a button html with a javascript onclick handler:

    import javafx.application.Application;
    import static javafx.application.Application.launch;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.layout.StackPane;
    import javafx.scene.web.*;
    import javafx.stage.*;
    
    public class WebViewWithPromptHandler extends Application {
      public static void main(String[] args) { launch(args); }
      @Override public void start(final Stage primaryStage) {
        WebView webView = new WebView();
        webView.getEngine().loadContent("");
        webView.getEngine().setOnAlert(new EventHandler>() {
          @Override public void handle(WebEvent event) {
            Stage popup = new Stage();
            popup.initOwner(primaryStage);
            popup.initStyle(StageStyle.UTILITY);
            popup.initModality(Modality.WINDOW_MODAL);
    
            StackPane content = new StackPane();
            content.getChildren().setAll(
              new Label(event.getData())
            );
            content.setPrefSize(200, 100);
    
            popup.setScene(new Scene(content));
            popup.showAndWait();
          }
        });
    
        final Scene scene = new Scene(webView);
        primaryStage.setScene(scene);
        primaryStage.show();
      }
    }
    

    -----------

    If you want to use predefined and model logic of dialogue to set your WebView dialogue management, then refer to the ControlsFX project:
    http://fxexperience.com/controlsfx/

  • pushScreen Popup using touchEvent

    Hi guys,.

    I want pushScreen (new MyScreen()) of the screen touch event Popup. So I replace touchEvent in popupScreen and check if the coordinates x and made desired region and where they I is pushScreen().  Everything works fine on the torch, but nothing happens on the storm. I traced it and the problem is pushScreen(), so, basically, he treats the events of the ok button.

    Any ideas?

    Thanks for the reply, actually I solved it, the problem was connected with EventLock.

  • Problem with javascript in narrative mode

    Hi gurus!

    I'm trying to put conditional logic in a narrative view of my analysis. I found some advice and wrote that:

    < script >

    If ('@ {} {FIN01TIME}'== 'Period')

    {

    document. Write ("[b] fiscal year: [/b]@1 [b] Fiscal Quarter: [/b]@2 [b] fiscal year: [/b]@3 [b] Roll Up: [{/ b]@{FIN01ND} {} [b] cost center: [{/ b]@{FIN01CC} {} [b] currency: [{/ b]@{FIN01CURR} {}" "]]]]]]")

    }

    If (' @{FIN01TIME} {} '==' quarter ')

    {

    document. Write ("[b] fiscal year: [/b]@1 [b] Fiscal Quarter: [/b]@2 [b] Roll Up: [{/ b]@{FIN01ND} {} [b] cost center: [{/ b]@{FIN01CC} {} [b] currency: [{/ b]@{FIN01CURR} {}" "]]]]]")

    }

    If ('@ {} {FIN01TIME}'== 'Year')

    {

    document. Write ("[b] fiscal year: [/b]@1 [b] Roll Up: [{/ b]@{FIN01ND} {} [b] cost center: [{/ b]@{FIN01CC} {} [b] currency: [{/ b]@{FIN01CURR} {}" "]]]]")

    }

    < /script >

    Everything works fine, but the problem happens when I "click" on my analysis paging buttons (see attached image: javascript_problem_paging.png). After clicking, it leaves me with a blank page that contains only view narrative. In addition, displays "error on page" message of warning in the status bar (see attached image: javascript_problem_afterclick.png)

    I think that this problem occurs with the "onclick" javascript event. I tried to turn it off, but still does not work.

    Any help will be appreciated.

    Thanks for your time!

    Kind regards

    Fabian

    Hi all!

    I have my own answer, jeje.

    Instead of using "document.write...". "I put another narrative with a view

    control and set its content in "document.getElementById (.). innerHTML = "(le même code HTML)" ""

    It works perfectly! I hope that this achievement will help someone else.

    Kind regards

    Fabian

  • Is it possible to change the alert message default javascript '1 article has been added to your basket' to something nicer?

    Hey BC Community!

    Well, I may have missed in the docs (and if I have, please do not hesitate to show it to me) but I was curious to know if it was possible to change the default javascript alert popup that says "1 item added to cart" to something more pleasant as perhaps a green bar that temporarily shows downstairs which said "added to shopping cart." I would create a jquery script to intercept the default alert?

    Thanks in advance for anyone of you guys help!

    Hello

    Have you already checked this

    Customization of shop alert stations online

  • what event fires when one end of captivate?

    Hello

    I am a web application developer and I work with Captivate. I'm not a creator of captivate myself, just a programmer, so I don't know the first thing about Captivate (though I am working with someone who does). I wonder if there is an event that fires when the captivate is done - in other words, when the user clicks on the button 'send' on the last slide, after which there is nothing more for the captivate to do.

    My friend the designer Captivate says that the Send button is wired to an event handler in the CPM.js file. The script is named "assessment_Pass" and we located the CPM.js event handler. However, I can't work with this. I can't manually handle small javascript that Captivate generates, especially when we offer hundreds of captivate files and store the update. I need to work in javascript in my Visual Studio project. If I could know what event is triggered (if an event fires) when the captivate is done, I can then hook up a javascript event handler in my development environment.

    I found this list of Captivate events (they are actually for the Interface API Captivate that I prefer to work with, but will any event), but none of that ' s I tried seem to draw.

    Any help is very appreciated.

    [quote = "TLCMediaDesign"]

    {window.cpAPIEventEmitter.addEventListener ("CPAPI_VARIABLEVALUECHANGED", function ()}

    (resultChanged ();}, "result"); [/ quote]

    This solved my problem - I had the arguments are passed in the wrong order: variable Manager, events,.

    But you like: Event Manager, variable.

    Once I switched around, it started working.

  • use of AF: Resource with javaScript - jdev 11.1.2.3

    Hello:

    I'm trying to create the application that uses af:resource with af:clientListener / af:serverListener to call a simple javaScript functions as openPopup with alert() and get the dateTime property...

    I found some examples on google, but they do not explain it well. Such as where and how can I get the tag af:resource? I just type in the source or what I need to do something different? What Miss me?

    Is there an example of end to end than any good knowledge of javaScript call popup to and returns a dateTime value to managed bean?

    Thanks for the help

    Oh, you can type the keyword in the source yourself or drag it from the palette of component on the source or the structure view.

    Timo

  • CpQuiz access with javascript variables

    I need report Captivate Quiz data in a back-end server. I am aware that an LMS that would make futile but using an LMS system is not an option. Also, the purchase of a widget is not an option. I was responsible for making this work using only the Captivate program.

    I could successfully, information high level Quiz via javascript that runs on the Quiz results page. (found the code below)

    Now, I need to expand on that by making a loop on all issues, reports the question, good answer/s and the response/s chosen for each.

    I guess that this information is kept in a multidimensional array. Where can I find the names of variables or key layout for this table so that I can access?

    In addition, it could be made to manage the question unmarked interactions like boxes, click? I feel that I need to access the 'Advanced Interactions' information for this part.

    JavaScript document

    / * Change the buttonURL to your own URL and add your own variables to double dollar signs * /.

    var buttonURL = ' https://mywebsite.com/_php/sendQuizResults.php?quizType=$ $cpQuizType$ $& quizName = $$ cpQuizNa $$ & name = $$ cpQuizInfoStudentName$ $& email = $$ cpQuizInfoStudentEmail$ $& success-failure = questions & oPassFail of cpQuizInf of $$$ $= $$ cpQuizInfoTotalQuestionsPerProject$ $& userPoints = cpQuizInfoPoints $$ has$ $& passingPercentage = $$ cpQuizInfoQuizPassPercent$ $& passingPoints = cpQuizInfoQuizPas sPoints $$$ $& userRightAnswers = $$ cpQuizInfoTotalCorrectAnswers$ $& ttlPossiblePoints = $$ cpQuizInf oTotalQuizPoints$ $& userPercentage = $$ cpInfoPercentage$ $& EndDate = $$ cpInfoCurrentDateStrin g$ $& finishTime = $$ cpInfoCurrentTime$ $';

    / * Default value is to open in a new window.  Use "_self" to open in the current window * /.

    var target = "_self";

    / * Replace the Captivate Variables in the URL with the true values * /.

    buttonURL = replaceVars (buttonURL);

    / * Utility function that will replace and encode the Captivate variable values to output SWF and HTML 5 * /.

    function replaceVars (myString) {}

    var i, e, varValue, varName, objCp, isHTML5 = false;

    / * Check for HTML5 vs SWF output * /.

    If (typeof window.cp = 'undefined') {}

    objCp = document.getElementById ('Captivate');

    / * We output SWF, so get the Captivate object * /.

    If (objCp & & objCp.cpEIGetValue) {}

    isHTML5 = false;

    }

    } else {}

    / * We have HTML5 output * /.

    If (cp.vm & & cp.vm.getVariableValue) {}

    isHTML5 = true;

    }

    }

    While (myString.indexOf("$$")! = - 1) {}

    I = myString.indexOf ("$$", 0);

    e = myString.indexOf ("$$", (i + 2);

    varName = myString.substring (i + 2, e);

    / * Fixing bug where the quiz variables are not synchronized in variables for HTML5 Manager output * /.

    {if (isHTML5)}

    / * If the variable does not exist outside of the window object, and then use the variable Manager * /.

    If (typeof window [VariableName] = 'undefined') {}

    varValue = cp.vm.getVariableValue (varName);

    } else {}

    varValue = window [VariableName];

    }

    } else {}

    varValue = objCp.cpEIGetValue ('m_VarHandle ' + varName);

    }

    / * Instead of true/false, see the success/failure for cpQuizInfoPassFail variable * /.

    If (varName == 'cpQuizInfoPassFail') {}

    if(varValue == false) {}

    varValue = "fail";

    } else {}

    varValue = "Pass";

    }

    }

    / * encode the URL value good formatting * /.

    varValue = encodeURIComponent (varValue);

    / * Attach back the URL with all the new values * /.

    myString = myString.split ("$$" + myString.substring (i + 2, e) + ' $$ ') .join (varvalue);

    }

    return myString;

    }

    / * Open the URL with the target specified * /.

    var windowOpener = window.open (buttonURL, target,'toolbar = Yes, location = Yes, status = Yes, menubar = Yes, scrollbars = yes, resizable = yes, widt h = 400, height = 400, screenX = 20, screenY = 10, albums = 10, left = 20');

    Captivate 8 introduces the common JavaScript API which gets and sets the Captivate variables to output SWF and HTML5 in the same way.  You can learn more about that here:

    https://helpx.Adobe.com/Captivate/using/common-JS-interface.html

    Another great thing about Captivate 8, is that they have exposed Captivate JavaScript events.  So, for example, you can listen to when a user submits a quiz question and run your own JavaScript when that submit event occurs.  Not only can you listen to this event, you also get information sent to you about this event... like what the right answer was compared to what the student has chosen.  What I would recommend is that you are subscribed to the following events:

    CPAPI_QUESTIONSUBMIT

    CPAPI_INTERACTIVEITEMSUBMIT

    The event data returned from the event will give you the information you need.  Download the sample article project to find out how to subscribe to these events.

  • JDeveloper 11.1.2.3: In regard to the contextual events, af:inputtext, af:table

    adf newbie question fast 11g...

    While passing by a nice tutorial on http://www.youtube.com/watch?v=IFl-1RQm_so & feature = plcp Frank, I decided to search with the wizard for creating contextual events. What I noticed that the type of the event produced changes was based on the type of parent (pure!) component.

    Dialog contextual event for an af:inputText nested in an af:table
    http://i.imgur.com/uy0Xh.jpg

    Dialog contextual event for a stand-alone af:inputText
    http://i.imgur.com/SXsXQ.jpg

    The switchable contextual event to ValueChangeEvent for an af:inputText in an af:table type?

    Thank you

    -Wes

    Wes,

    in fact when I reproduce with 11.1.1.6 then change value event is created for the event popup I create for a text entry field in a table. I guess you always focus on the table when you create the popup event. Check the Lady of PageDef. If you see the event under the binding of the tree, then I'm right.

    Frank

  • Event trigger once the user view article

    Hi guys,.

    Nobody knows what kind of Javascript event handlers are supported on simple editing of DPS?

    For example, $(window) .focus () or window.focus (), doesn't seem to work in the DPS application even if it works in the web browser.

    Basically, I want to raise an event when the user displays an article. For now, events in the following article are fires in advance due to prefetching of pages. Is there a way to do it, while keeping the content Web overlay - Auto Play function is active?

    Thank you very much!

    Juan

    Try onAppear and onDisappear.

    Neil

  • Links JavaScript to the attachment in PDF from Word (or another Solution / Workflow)

    Hi all,

    After that hours of searching for a possible solution without getting even an approach I'm a little frustrated, so thanks for any help

    (Sorry for any spelling, I'm German ^^)

    My goal:

    A large (about 180 pages) PDF with approximately 60 documents (pdf, word, excel) in this PDF.

    Now, I want to have links in the text of the main PDF file that connects these attachments.

    I did it with Adobe Acrobat, PDF with normal links and Word/Excel using JavaScript Code (exportDataObject).

    My problem:

    The main PDF isn't static for all time, it happens.

    How can I avoid manually creating all the links after export of the Word Document in PDF format.

    Additional information for solutions:

    Modification of the PDF in Acrobat is AFAIK is not an option, because the layout as a header or page numbers the will / can not be changed with that.

    Hyperlinks are possible to do in Word a PDF file will take them along.

    It would also be possible with links to attachments?

    I don't necessarily have to to a specific show if you have any other solutions or options.

    I am grateful for all the help.

    You cannot create objects in JavaScript-event link in an external application, they must be created manually in Acrobat.

Maybe you are looking for

  • Time Capsule no longer works in conjunction with the ISP modem

    Hi everyone, thanks in advance for any help you can provide, and my apologies if similar topics have already answered - rushed for this post, so I did not have too much time to browse the forums - please point me in the right direction if other threa

  • My Satellite L50 - A - 1 7 no longer works

    Just some time ago, I was playing a game with friends, but all of a sudden my screen freezes and the sound. Pressing the powerbutton or now in did nothing. Only, I opened my Toshiba Satellite L50 - A - 1 7 and disconnected the battery because it has

  • Install the Adobe Flash drive on EL CAPITAN

    I got El Capitan 10.11.3 and Adobe Flash Player NPAPI 21.0.0.182 and PPAPI 21.0.0.182 module installed. Always when I try to view the Flash content I get a required window to install Adobe Flash Player. I activated the player safe Internet Safari by

  • General problem with Satellite A100-491

    I have a laptop Satellite A100-491 and also the Toshiba Windows Vista HP Express installed update. It worked without any problems for half a year. Now whenever it starts, an error fatal system occurs and I tried to repair Windows, to re - install and

  • Is this an authentic message or scam?

    I received this email and I was wondering if it was genuine or a scam? HP discovered that some P66xx and S56xx and desktop HPE - 4xxModels built in June / July 2010 deadline have maps systemwith a slightly higher than expected failure rates. Based on