Watermark the page on change event

Hi,
we wanted to watermark the page on an Eventchange action of a field. Is it possible to do in adobe designer. We wanted the page to have a watermark of it fails in a range validation and say " Test Failed" across the page. Any help is appreciated.

[email protected] wrote:
> Hi,
> we wanted to watermark the page on an Eventchange action of a field. Is it possible to do in adobe designer. We wanted the page to have a watermark of it fails in a range validation and say " Test Failed" across the page. Any help is appreciated.
You should be able to accomplish this with a text field. Set the field
to have no caption and make the field whatever size you wish your
watermark to be. Then you can programmatically change the value of the
field to be "Test Failed" in javascript.
Justin Klei
Cardinal Solutions Group
www.cardinalsolutions.com

Similar Messages

  • How can I make a intro page for my website, then after the intro has run make the page automatically change to my we site home screen

    how can I make a intro page for my website, then after the intro has run make the page automatically change to my website's home screen

    You can do this using a meta refresh but the problem is you have to add it to the html file for the page very time you publish changes.
    A better way is to create a splash page and upload it to the server outside of the folder produced by iWeb. Example HERE.
    The meta refresh is added to the head section of the html file...
    <meta http-equiv="refresh" content="32;url=http://www.domain.about.com/Page-Name.html">
    The delay time in seconds is marked in blue and the URL to the redirect page is in red.

  • Since I installed IOS 8.0.2 (was ok on IOS7),on my iPad 4 "photos" don't scroll properly, it freezes and staggers, it's really slow to scroll to the bottom of the page (in Album, Events From My IMac) it's very annoying!

    Since I installed IOS 8.0.2 (was ok on IOS7),on my iPad 4 "photos" don't scroll properly, it freezes and staggers, it's really slow to scroll to the bottom of the page (in Album, Events From My IMac) it's very annoying!

    I'm not sure, but I know it's not recommended to upgrade to iOS 8 on anything older than an iPhone 5. I only lost my music playlists and music that was on my phone, but that music is also on my iTunes, not the playlists though, and I don't want to go through ALL my iTunes library to fix it either... But it seems I don't have a choice right now.
    Whatever you do, do NOT upgrade to iCloud Drive, keep iCloud till OS X Yosemite comes out, if your computer is a Mac. I also just noticed that all my documents on my phone are gone from Pages, BUT if I go on the iCloud website they are still there. Hopefully it will all work itself out when I can update my macbook pro to OS X Yosemite.
    If you backed up your phone and all your purchases off your iPhone prior to trying to upgrade you should be fine... But I'm not even remotely sure.

  • Getting the "Page Has Changed" error.

    I'm using InContext Editing and am getting this error:
    Page Has Changed
    The page you are trying to edit or duplicate could not be found on the server. You can check if the page was deleted or moved in the meantime.
    The page does exist, I can view it in the browser and thru includes/ice/ide.html. I can Duplicate the page, and the page gets duplicated on the server, but  I can't edit the duplicated page either.
    My pages are pretty simple, but do have a few include files in them. So I deleted the includes, uploaded a straight .html file, and I still get the error.
    In the "Configure Site" section, I can connect to my ftp site. I can browse the directories, etc., so I'm definitely connecting.
    The weird thing is, I upload this exact same site to a test server (on Linux), configure a new site in the admin, edit the same files and it works perfectly. But once I upload these files to a Windows/IIS server, I get this error.
    Any ideas?
    Thank you in advance.

    Please send the url of the site,  the FTP server, username and password to [email protected] and we'll investigate this issue; also include a link to this forum post in your message.
    Regards,
    Dan Popa

  • Can't get the page to change

    I don't really know much about actionscript, but I want the login page to show up when the movie start, to go away when someone logs in and to come back if someone logs out.  I also want the pages to appear dynamically and not use goToAndStop or .visible, but I can't seem to get the login button working. If I remove the document class from the login pags and all references to it the button works, but it doesn't work when the document class and things are there.
    so here is the code.
    this is the document class .as code
    package {
        import flash.display.MovieClip;
        import flash.events.*;
        import flash.net.URLRequest;
        import flash.net.URLVariables;
        import flash.net.URLLoader;
        import flash.net.URLLoaderDataFormat;
        import flash.display.Loader;
        public class loginPage extends MovieClip {
            public var noPass:Number=-1;
            //public var subBtnClick:Number=-1;
            public function getPass(event:Event):void {
                if (noPass==0) {
                    var passRequest:URLRequest=new URLRequest("PasswordPageTwo.swf");
                    var passLoader:Loader = new Loader();
                    passLoader.load(passRequest);
                    addChild(passLoader);
                    //addEventListener(Event.ENTER_FRAME, zeroPass);
                    removeEventListener(Event.ENTER_FRAME, getPass);
                    trace("back to the pass page");
                } else if (noPass==1) {
                    //addEventListener(Event.ENTER_FRAME, zeroPass);
                    var navRequest:URLRequest=new URLRequest("Connect/ILNav.swf");
                    var navLoader:Loader = new Loader();
                    navLoader.load(navRequest);
                    addChild(navLoader);
                    removeChild(passLoader);
                    removeEventListener(Event.ENTER_FRAME, getPass);
                    trace("here is the nav page");
                } else if (noPass==3) {
                    var defaultRequest:URLRequest=new URLRequest("PasswordPageTwo.swf");
                    var defaultLoader:Loader = new Loader();
                    defaultLoader.load(defaultRequest);
                    addChild(defaultLoader);
                    //addEventListener(Event.ENTER_FRAME, zeroPass);
                    removeEventListener(Event.ENTER_FRAME, getPass);
                    trace("default pass page");
          public function listenPass(event:Event):void{
                addEventListener(Event.ENTER_FRAME, zeroPass) 
                removeEventListener(Event.ENTER_FRAME, listenPass) 
            public var reLoginName:String; 
            public var reLoginPassword:String; 
            public var myTheme:Number; 
            public var myHelper:Number; 
            public var myFont:String; 
            public var myBackground:String; 
            public var userSet:Number; 
    This is the first layer movie's code. This works in the begining to load the login layer.
    function zeroPass(event:Event):void {
        if(noPass>=0){
        addEventListener(Event.ENTER_FRAME, getPass);
        removeEventListener(Event.ENTER_FRAME, zeroPass);
        } else {
            noPass=3;
        addEventListener(Event.ENTER_FRAME, getPass);
        removeEventListener(Event.ENTER_FRAME, zeroPass);
    addEventListener(Event.ENTER_FRAME, zeroPass);
    This is the login code.  I just have the testing code done so when it clicks it is meant to log off. This is where the button does not work.
    function myLogin(event:MouseEvent):void {
        trace("submit works");
        noPass=0;
        addEventListener(Event.ENTER_FRAME, listenPass);
        submit_btn.removeEventListener(MouseEvent.CLICK, myLogin);
    submit_btn.addEventListener(MouseEvent.CLICK, myLogin);
    I also have the navigation page that I cannot test because the login page doesn't work but it is the same code so it I think it is safe to say it does not work either.
    function myLogout(event:MouseEvent):void {
        noPass=1;
        trace("logout works");
        addEventListener(Event.ENTER_FRAME, listenPass);
        Logout_btn.removeEventListener(MouseEvent.CLICK, myLogout);
    Logout_btn.addEventListener(MouseEvent.CLICK, myLogout);
    like I have said I am new to actionscritp so I most likely have it all wrong.

    IF you are using 2-sided printing, in the print dialog you will have a selection for long side binding OR short side binding. Whichever setting you have set, switch to the other one.
    Walt

  • On a page change, GIFs in the orignating page stop animating - how can I keep them animating until the page actually changes?

    On some pages in my application I put up a mask and a loading dialog when changing page. This dialog has a GIF as a background image as a loading/waiting indicator. This GIF plays one or two frames and stops when the pages begins its redirection to the target page.
    Page change initiated using javascript: location.href ...
    FF 19 MAC OSX

    You can render the ebook on an instructional application called Zankura. Not only can you control the screen scrolling, but all the students can freely annotate with their stylus. www.zankura.com.

  • Where is the page listing changes in 3.6.x updates?

    There used to be a link in the "Firefox Updated" page that would take you to the page where the latest sub-versions changes were listed. Why can't I find it anymore?
    == after 3.6

    The release notes contain links to what's new in that version, for 3.6.7 see http://www.mozilla.com/en-US/firefox/3.6.7/releasenotes/
    For a list of security fixes see http://www.mozilla.org/security/known-vulnerabilities/firefox36.html

  • I can set my home page but every time firefox starts it goes back to the page I changed it from

    I keep having to change the home page. I joined a site that changed the home page. I uninstalled this program but I am unable to get firefox to change the home page. This does not happen with IE when I change the page it stays. No matter how many times I try it always goes back to
    http://home.ibryte.com/im/6962727974656261736963

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Has the page ordering changed since cs5 or is something amiss with my cs6?

    Hi
    Right i hope i explain this correctly
    in my old cs5 the page ordering displayed like so in the pages panel:
       1
    2-3
    4-5
    6-7
    and so on
    but in cs6 its like this
    1
    3-2
    5-4
    7-6
    and so on
    so basically all documents when exported are in the wron order!!!
    is this new and correct or is something wron here? sure seems that way. can anyone help me fix this annoying issue?
    many thanks and happy holidays
    Dean

    Got it "binding options" thanks for your help

  • How to make an item be remembered once the page is changed?

    Hi,
    For my school project I am trying to create a drag and drop product on Adobe Flash CS4 using Action Script 3.0.
    I have three keyframes:
    - The first one has tops to be dragged and dropped onto the model
    -The second one has skirts/trousers to be dragged and dropped onto the model
    -The third has shoes to be dragged and dropped onto the model
    But once the top has been dragged and droped and the next button is selected displaying the skirts/trousers, the top which has been dragged and dropped onto the model is no longer displayed.
    Does anyone know what coding I need to add to get each item of clothing to be remembered once it has been dragged and dropped onto the model, so it is visible on the following pages?
    Many Thanks

    Thank you very much for your response.
    I'm so sorry, this is probably a really silly question but how can I make the items of clothing hidden on the layers where I don't want them seen?
    I am also having real problems with my 'next' button in the second key frame.
    I am recieving two errors for this button and have tried everything that I can think of, so was wondering if you were able to have a look at my coding for this button and tell me if it is correct bearing in mind that the button is on the second keyframe but should take you to the third.
    The first error I am recieving is:
    'TypeError: Error #1010: A term is undefined and has no properties'
    for the line
    'femaleDragAndDropPage.femaleMenu.nextButtonBottoms.addEventListener(MouseEvent.CLICK, onNextButtonBottomsClick);'
    -The nextButtonBottoms is the button leading from the second to the third key frame-
    The second error I have is:
    'TypeError: Error #1034: Type Coercion failed: cannot convert NextButton@246159c1 to PinkNextButton.
    at flash.display::MovieClip/gotoAndStop()
    at Main/onNextButton3Click()'
    for the line
    'femaleDragAndDropPage.femaleMenu.gotoAndStop(2);'
    -This line is for my next button on the first keyframe which leads to the second one and only appears when it is selected-
    On the first keyframe, there is also a next button (with a different instance name) which leads to the second keyframe which works fine so I used the same coding for the next button leading from the second to third keyframe but changed the instance name. This is where I then recieved the errors so cannot view the rest of my pages which come after this one.
    Thank ypu so much for your help!

  • How could i listen to the column width changed event of a tableview

    I really want to do some painting when the column is resized manually.
    but it seems that there's not a column reszie event in javafx, is there?

    TableColumn dateCol = new TableColumn("Date");
    dateCol.setCellValueFactory(new PropertyValueFactory("longrowid"));
    dateCol.widthProperty().addListener(new ChangeListener(){
            @Override public void changed(ObservableValue o,Object oldVal,
                     Object newVal){
                 System.out.println("Width property has changed!");
          });

  • Unable to reset the variable value in the method value change event and use

    Hi ,
    int i=4;
    public changevalue(ValueChangeEvent ValueChangeEvent)
    //some code
    i=5;
    system.out.println("in changevalue method="+i)// this prints i value as 5
    public void submit(ActionEvnet actionEvent){
    //somecode
    system.out.println("in submit="+i) // this prints value 4;though its value is changed as 5 in above mehtod
    how can i get the value as i=5 in second method(i.e, in submit method)??

    Hi 980230,
    When I tried the same thing it gives me 5 in the submit method.
    Are you sure that ValueChange method is getting invoked before the actionEvent method?
    Its better to debug the application, you will get the exact flow and error if any....
    Thanks
    --NavinK                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • HT201363 I keep trying to delete r edit my apple account and after I delete my info I click save and try to go to another page and this keeps popping up and whatever u click on it resets the page.Save changes? You've made changes to your Apple ID, but hav

    Save changes?
    You’ve made changes to your Apple ID, but have not saved them. Would you like to save your changes before proceeding?
    Discard Changes
    Save Changesit resets brings the inf back

    You are trying to delete it or edit it?
    GB

  • The page title Changing.

    Hi Gurus,
    due to some clien t requiremen ts i have changed welcome page hearder .
    but when check with key value of page header we are unable find .
    key value is (b2b.fs.title).
    please let me know where ( DC) key value exist.
    Thanks,
    Jagadish Babu.

    You can find this ".xlf" file under project
    /DNF_DEVISA_Dcrmtcwebecommercebase~sap.com
    File name is "crmtcecommercebase~resources_en.xlf" for English version.
    You can go to NWDS click on "Search" from "Java Perspective" select 2nd option "File" from drop down menu.
    In Containing Text input Box provide "b2b.fs.title" and File name Patterns input box provide *.xlf and then press "Search"
    You have to create project "crm/tc/web/ecommercebase" from SC "sap.com_SAP-SHRWEB"
    I hope this will solve your problem.
    Cheers....
    Ecommerce Developer.

  • I clicked the "download now" but the page just changes to the thank you page and nothing at all downloads. My popup blocker is off.

    I can't download iTunes for my iPod. Can you please help me?

    Thank you for answering!
    After about 3 1/2 hours, of trying to publish, I did uncheck the Facebook box.  Only thing is, the Publish Site button will not light up again to let me republish.  If I go to Quit iweb, a message says, "Are you sure you want to Quit?  Quitting iweb while your site is being published might cause problems".
    Does it normally take this long to publish.  There isn't any icon or indication that anything is happening.  I checked the Activity Monitor and it doesn't look like iweb has any activity, but I don't know for sure what it's supposed to look like.
    If I quit iwev, will it erase my site?  I would like to republish the same site.  Any thoughts?
    Thank you!!

Maybe you are looking for