Flash or Javascript upload message

Hoi there,
I don't want the browser to use the Flash mode but the javascript mode when uploading multiple image files using the multiple image upload with database wizzard. Does anyone know how to do that?
Thanks

Are you aware that you are in a Java forum, not a DHTML forum? Javascript has absolutely nothing to do with Java. Most Java web developers also knows Javascript, but that is completely out of the scope of this JSP/JSTL subforum.
Try dhtmlcentral.com or dynamicdrive.com, those have good DHTML forums.

Similar Messages

  • Aperture help not working - getting JavaScript error message

    My Aperture 3 has been having a lot of strange issues lately, most, but not all of which have been cleared up by holding down command + option while starting up and going through all three of the choices there.
    One problem that remains is the inability to open the Help files. I keep getting the following message:
    “The Help Library requires JavaScript.
    If JavaScript is not enabled, you will not
    be able to view all the content.”
    Help works in all other applications, like Pages and Final Cut Pro. I don’t get JavaScript error messages in any other applications.
    I’ve already done an erase and restore from a Time Machine backup, and an archive and install. I reinstalled Aperture, although not by using the Terminal command suggested in the kbase article # HT3805.
    If I go the Terminal command route, will I lose all my projects, albums, and editing? What about Mobile Me galleries?
    I have a guest user on the computer, and when I log on to that user and open Aperture, the Help Library works fine. So, I know the problem is in my user account somewhere, but I don’t know how to address it. Any ideas?

    Welcome to the forums.
    The fact that you have access to java in another user suggests that it is a local setting or preference.
    In the applications folder/utilities there is an application Java Preferences, try resetting this and seeing if it works.
    If not, try deleting the java preferences file in your users folder
    systemHD/Users/user/Library/Preferences/com.apple.java.JavaPreferences.plist
    relaunch the app Java Preferences which creates a new preferences file for you, then try Aperture again.
    Let us know how this goes.
    Tony

  • How to verify JavaScript alert message display on page with C#?

    Hi All,
    I have a question about verify the JavaScript alert message on page. For example, I input the script in browser address like: "javascript:onmouseover=alert('popup windows')" . How to verify there's a alert message displayed on page with C#?
    Thanks

    Are you trying to use some automation or ? What the previous solution is they have put the text in the dom for you to pull out with C# or other languages.
    if you are trying to automate this through a browser maybe look into WebDriver
    WebDriverWait wait = new WebDriverWait(driver, 2);
    wait.until(ExpectedConditions.alertIsPresent());
    Alert alert = driver.switchTo().alert(); var alertText = alert.Text;
    alert.accept();

  • Not able to display javascript alert message from within a pl/sql block

    Hello,
    Can anyone please help me out with this issue. I wanted to display an javascript alert message from within a pl/sql block for an update button. Below is sample code which i am using. P1_ITEM is my hidden item on the report.
    begin
    if :P1_ITEM IS NOT NULL then
    HTP.p ('<script type="text/javascript">');
    HTP.p ('alert(''Please complete the item which is already assigned to you!'');');
    HTP.p ('</script>');
    end if;
    end;
    and I have made this code to be executed conditionally when request = Expression1
    Expression1: SUBMIT
    The thing is I am not able to display an alert message when the update button is clicked.
    Can anyone please help me with this one.
    Thanks,
    Orton

    varad but I also have an update statement within that block for the update button something like this i want to achieve.
    begin
    if :P1_ITEM IS NULL THEN
    update sample_tbl
    set col1 =:APP_USER,
    col2 = 'Y'
    where pk_col = ---;
    commit;
    HTP.p ('<script type="text/javascript">');
    HTP.p ('alert(''Successfully assigned an item!'');');
    HTP.p ('</script>');
    end if;
    if :P1_ITEM IS NOT NULL then
    HTP.p ('<script type="text/javascript">');
    HTP.p ('alert(''Please complete the item which is already assigned to you!'');');
    HTP.p ('</script>');
    end if;
    end;
    thanks,
    Orton

  • AS3.0 External Interface: Pass variables to flash using javascript

    Hello all,
    I am looking for a simple and straightfoward example of how I can pass the value of a variable into flash using javascript.
    Specifically, I'd like to use javascript to pass the filename of an external video file that I would like to load into my flash movie.
    I'd also like to call a function in the SWF that plays the movie once the filename as been passed to the flash movie.
    External Inferface looks like the way to go.
    I've found a few decent AS2.0 examples, but converting them to AS3.0 has proven difficult and many of the examples are much too complex for what I am trying to do.
    If you have any code samples or tutorials showing the HTML/Javascript and the associated actionscript I'd really appreciate it!
    Thanks!
    Tim

    if you create a swf (eiTest.swf) and html:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
        <head>
            <title>eiTest</title>
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
            <script language="JavaScript">
             function thisMovie(movieName) {
             if (navigator.appName.indexOf("Microsoft") != -1) {
                 return window[movieName];
             } else {
                 return document[movieName];
         function f1(value) {
             thisMovie("eiTest").jsF(value);
    </script>
        </head>
             <body onload="f1('yourfilename.ext');">
         <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
                 id="eiTest" width="550" height="400"
                 codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">
             <param name="movie" value="eiTest.swf" />
             <param name="quality" value="high" />
             <param name="bgcolor" value="#869ca7" />
             <param name="allowScriptAccess" value="sameDomain" />
             <embed src="eiTest.swf" quality="high" bgcolor="#869ca7"
                 width="550" height="400" name="eiTest" align="middle"
                 play="true" loop="false" quality="high" allowScriptAccess="sameDomain"
                 type="application/x-shockwave-flash"
                 pluginspage="http://www.macromedia.com/go/getflashplayer">
             </embed>
         </object>
        </body>
    </html>
    you can use:
    import flash.external.ExternalInterface;
    ExternalInterface.addCallback("jsF", asF);
    function asF(fileS:String):void{
    trace(fileS);

  • Calling a function in Flash via JavaScript

    My project is in Flash CS3 ActionScript 2. I am using
    JavaScript elements in my project that are called within Flash. The
    following code placed on frame 1 of my main timeline goes to frame
    2 and displays the JavaScript element = that works. Here's the
    code;
    HS_Film_Button.onRelease = function ()
    gotoAndStop(2);
    flash.external.ExternalInterface.call("firehs");
    Now when on frame 2, I want the JavaScript "close button" in
    the element to go to frame 1 on my Flash main timeline. Right now
    what it does is closing itself in frame 2 of my Flash page, so I
    added a flash button in there to go to frame 1. Thus the need to
    double click to finally end up on frame 1. But I want the
    JavaScript element to do that in the first place!
    The real issue here is that the JavaScript element was once
    on my main single frame timeline but its performance (display speed
    and such) was greatly affected by my Flash Time and Date and Frame
    rate calculations. This JavaScript element is based on miliseconds
    and I suspect that my Flash file is based in seconds and that my
    Flash calculations are grabbed by the Browser and directing my
    JavaScript element.....Hey I am getting lost I hope you kind of see
    what I mean. Anyways, if I could just get rid of frame 2 all
    together and have some kind of coding that would eighther have
    Flash calculate in miliseconds rather than seconds????? to match my
    JavaScript one.... Or codify JavaScript so that when called it
    would take over and tell the Browser to change its calculations
    rates?
    If you wish please have a look at the Forum topic postings
    where all of this is evolving with questions examples and
    answers....This link gets you right in the posting.
    Highslide
    JS Forum
    This is where Flash meets JavaScript! I need help please.
    Kind Regards
    Pierre

    Hi, Since your reply I have been trying to follow your
    direction and found a couple of things,
    My flash site is based on the AC_FL_RunContent JS file
    not the
    <object classid= ..............>
    <param name="allowScriptAccess" value="
    sameDomain" /> which element in bold should probably be
    repalced by "always" for the externalinterface addCallback() to
    work properly. The question being what code I have to ad to the
    AC_FL_RunContent JS file for allowScriptAccess.......
    quote:
    ExternalInterface is similar in functionality to the
    CallFrame() method but is more flexible and more generally
    applicable. ExternalInterface is the preferred method for
    JavaScript–ActionScript communication in Flash Player 8 and
    later.
    So I see I could use externalinterface addCallFrame() for
    achieving Javascript to ActionScript communication ; when
    Javascript close button is pressed Flash goes to frame 1........
    The latest hint I got from Highslide JS was to add the
    following in the Head section;
    <script type="text/javascript">
    hs.Expander.prototype.onBeforeClose = function (sender) {
    return confirm("Do you really want to close this nice
    image?");
    </script>
    The line in bold should be the code to call to go to frame 1
    in Flash and the onBeforeClose should probably be onAfterClose.
    Anyways, I am completely lost in space = could you really hep
    me out with this code by code and where to put those exact
    codes.....please
    Pierre

  • How to embed Flash without Javascript?

    How to embed Flash without Javascript? Other way to ask this: if user desactivates Javascript, sill Flash content still be visible?
    Thanks for helping.

    Hi
    This article may be of interest (shows with and without javascript methods), - http://perishablepress.com/press/2007/04/17/embed-flash-or-die-trying/.
    PZ

  • I keep getting the message-blocked plug-in when trying to use Adobe Flash Player. A message also states that I don't has a up to date flash player but I know that I have the right version of Flash player.

    I keep getting the message-blocked plug-in when trying to use Adobe Flash Player. A message also states that I don't have a up to date flash player but I know that I have the right version of Flash player.

    Hello,
    Safari, blocked plug-ins…
    http://support.apple.com/kb/HT5271

  • Trying to download adobe flash player.  Getting message to turn off brccmctl.  What is brccmctl?

    Trying to download adobe flash player.  Getting message to turn
    off brccmctl.  What is brccmctl?  How do I turn it off?

    brccmctl is the printer monitor for Brother printers.  If you are on Windows, end the process using the Task Manager's Processes tab.

  • I am not able to download Flash Player--- the error message is Internet Explorer should be closed

    I am unable to download Flash Player ===== the error message says that Internet Explorer should be closed----  how would I get to Adobe.com if Internet Explorer is not open?

    You download the installer (http://fpdownload.adobe.com/get/flashplayer/current/install_flash_player_ax.exe) and save it to disk, then close all Internet Explorer windows and run the downloaded installer.

  • Importing movie to Flash 8 and error message appears

    I have tried to import a movie into Flash 8 and the message appears "The operation could not be completed as an error has occurred".  It will not pu the movie on to the stage.  Do you think there is something wrong with the movie file or am I missing a step?  This is what I do:
    1) open a new flash file
    2) file - import video
    3) browse to find the movie file and then click next
    4) Click the option 'progressive download from a web server'
    5) I dont change any of the default settings and I don't want a skin on it
    6) It runs through like it is making the file and then the message appears "The operation could not be completed as an error has occurred".
    Any ideas what I am doing wrong??
    Thanks,
    Rachel

    Now that I have restored my pc to the time before installing Autodesk, the
    import facility now works again.
    If you have installed programs that you do not really need, the best thing
    to do is either uninstal them, or restore your computer through the control
    panel.  If you do need them you could try using another flash encoding
    program, encode it through that and then open the file in your flash
    program.
    There is also a program called "Super" that enables flash encoding.  It
    sounds good, and I am going to check it out as it is a freeware.
    If it works well I may use it to encode the video into flash:-
    If interested, here is the link
    http://www.erightsoft.com/SUPER.html
    I too have very little knowledge in computers, but I like the creative side
    of using flash.
    Hope this helps a little.
    Let me know how you get on.

  • My iPhone is not receiving mail but these messages continue to flash at the bottom of the screen:  Checking for messages, Updated just now, checking for messages, etc.  After a minute or so it will flash downloading 1 - 32 messages but nothing is received

    My iPhone is not receiving mail but the following messages continue to flash over and over at the bottom of the screen:  "Checking for messages, Updated just now, Checking for messages", etc.  After a minute or so it will flash downloading 1 - 32 messages but nothing is received and then the "Checking for Messages," etc. starts back again.   I turned the phone off for 30+ minutes and also tried to reset it, but the problem continues.   Any ideas on how to solve the problem?

    Double click the home button and swipe up the messages app to stop it, then open the app again. This pretty much completely stops the process and freshly opens it again, resolving problems at times. I have had this happen before as well on my iPad, I get a banner, check messages, and nothing new is there.
    If that doesn't work, close the app like suggested above, but then restart the phone by holding down the home and lock button for 10-15 seconds until the apple logo appears.

  • Adobe Flash 10c.ocx error message?

    Well, my sister and I are REALLY getting angry at whatEVER this flash thing is.  I run my business on the road -am gone a LOT.  Tonight when I got home, I had a very important eMail letter to send.  Three other windows were open -NOTHING PERTAINING TO ADOBE!!!  All of a sudden, it wiped ALL of them out, shut them down and left me with this little number above, "Adobe Flash 10c.ocx" error message, to which crap vista windows informed me, "Internet Explorer has encourntered a problem with an add-on and needs to close."  No warning ... just the whole letter and ALL the other pages, GONE!
    If I want to do something with Adobe, I'll do it, otherwise I expect it to sit quietly in the background and keep quiet!  I have enough problems with this vista "system" -WORST ever invented.  Just what vista needed, something else so it can cause more headaches!
    I found this forum, and I HOPE this will be fixed VERY shortly.  Thanks for letting me say.
    Thank God I have almost total recall when such a thing happens, but I really do not appreciate it happening in the middle of a message so important!

    1. Download & use the flash Uninstaller from here: it
    http://kb.adobe.com/selfservice/viewContent.do?ext...
    2. Reboot to clear out any left over ocx files.
    3. Rescan using Secunia PSI - if there are any insecure Flash elements left what is the path to them? U should not proceed to stage 4 until all U clear any problems found.(The overview page may look a little odd because it uses Flash for the pictorials) you can download it from www.secunia.com it's a easy tool to use just follow the commands
    4. Reinstall the latest Internet Explorer Flash Player from here: ( make sure you copy the link below and open internet explorer and paste it into the address bar and press enter then download the file and it should install fine.)
    http://www.filehippo.com/download_flashplayer_ie/
    3A.If U are also using Firefox, Opera and other Gecko-based browsers U need this link as well: ( If you are using this browser just follow the same commands as above just copy the link below and paste it into the address bar and press enter then download the file and it shold install fine)
    http://www.filehippo.com/download_flashplayer_fire...
    5. Go to add/remove & double check Adobe have not installed the useless Adobe Download Manager - if U see an entry remove it.
    Hope it helps for you i had the same problems took me days to work out what was wrong, let me know if it fix it. Melissa

  • JavaScript Error Message using Angel Learning Software

    After upgrading to the latest version of FF I receive a JavaScript error message when attempting to send an email via the Angel Learning educational portal. All the other operations in Angel appear to function normally at this time. Does anyone have any ideas as to what may be the issue and it if will be resolved or can be bypassed?
    Thanks!

    Thank you. The JavaScript is enabled on my FF settings. The message I am receiving is:
    Script: http://angel.cascadia.edu/jscript/yahoo/utilities/utilities.js:9
    So, perhaps I confused jscript with JavaScript by error? Either way, the link you forwarded said not to confuse the two...
    "Please note that JavaScript is not Java and Jscript is not JavaScript!"
    So, I clicked on the link to JScript which says that it is the same language as JavaScript and has a different name due to trademark issues. I have IE on my computer but never use it. Would you recommend that I uninstall IE? Please let me know if you have any other suggestions.
    Thanks!

  • Updated to Firefox 35 and now I get a Javascript error message

    My Firefox updated to version 35 and now on every page I go I get this javascript error message: : 'navigator' getter called on an object that does not implement window interface. I'm not sure what is the source of the error. I have not installed any new extensions. I'm attaching an image so you can see the error message.

    Please report this to that add-ons support page.

Maybe you are looking for

  • How to implement logging functonolity in my java application

    Hi. I want to add logging functionality in my java project.Iam using jdk1.5.I have written following log4j.properties.This property file i need to keep it in com.format.src.property folder .All java files are there in com.format.src folder. log4j.roo

  • How to make bookmark tree open dynamically when moving in the content?

    Intro: When viewing a PDF-file with a bookmark tree, I can unfold(open) nodes in the bookmark tree and make the view window jump to the corresponding destination. If the bookmark tree is open (unfolded) I can observe a selection mark moving downwards

  • Ssrs 2008 r2 parameters

    In an existing SSRS 2008 R2 report, I need to add some extra parameters to several reports that call subreports. There will be times when the parameters may be empty. The visibility of specific columns and report headers will determine if the column

  • Document creation

    hi guys, i have one requirement. I want to upload thousands of technical manuals in to SAP . So what i did is i made one BDC for document creation and uploaded in the system. Now the problem is the doucments created have status create. By BDC i am no

  • Implement the UI design

    Hello everyone, I am getting started with flex 2 those days. It’s amazing. A lot of features make it easy to develop applications. I have little experience in ActionScript3.0 so I am eager to know the ability of AS3.0 to build a dynamic UI and to int