LSO 300 - Flash file we lost the control button

Hi ,
The E-course has the Flash commands play, pause, ... we the course is played in the AE we can see the commands , when the course is played in the Learning Portal (Content Player) the commands are no more displayed ? Any idea .
Regard's

Hi
Check out that correct flash Plugin and Java version is installed on the server. Sometimes when required Java Version for LSO is not used , these kind of problems occurs while playing a course on the portal.
Regards
Waz

Similar Messages

  • Lost the control bar

    I have created a video with a control bar in Flash 8. When I run the .swf file by itself (in Flash player or IE) the control bar is there but when I add it to my web page the control bar is missing. Can anyone help please?
    My embedding code is:
            <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="492" height="360" title="Samaritans">
              <param name="movie" value="docs/video1.swf" />
              <param name="quality" value="high" />
              <embed src="docs/video1.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="492" height="360"></embed>
            </object>

    That is old-style embedding code which might not work for all browsers.  So if you want to address that aspect then you should consider looking into making use of swfObject embedding which is available thru the following link...
    http://code.google.com/p/swfobject/
    Aside from that, since you are loading the swf from a different folder than where the html page is, that could be the source of your problem if you have not coded the swf to work in that file structure.  When you embed an swf into an html page, the html page becomes the reference basis for any files that the swf tries to load.  So if you have not done so, your swf needs to target any files it loads as if it is sitting in the same folder as the html page... it does not have to be in that folder, but it does have to act like it is since when it is loaded into that html page it is as good as living there anyways.

  • I've lost the control of Apple ID.

    Hello,
    Firstly please be indulgent with my english if he isn't correct
    I come here because I've a probleme since some months.
    I've lost the control of my apple, so I lost my gamecenter, my purchases, my apps, my mail account, etc.
    I created a new for the moment, but I would really like to retrieve old.
    But when I wan't to use Apple ID iForgot, I'm really scared because I realize that my date of birth has been changed, and I can guess the same thing for my personal questions...
    If I use the service "reset your apple id by mail", i don't receive any mail on my mail account that I had set. So I guess that my mail account for backup/rescue is changed.
    So I would like to contact Apple and explain my problem. Is it possible to provide some infos like the serial number of some devices I used with this account ?
    For example I can give the S/N of 2 iphone 5, one iphone 5s, a Macbookpro, and iPad 2
    Or give some invoice of purchases ? (if I can find them...)
    Thanks !

    Go to https://getsupport.apple.com ; click 'See all products and services', then 'More Products and Services, then 'Apple ID', then 'Other Apple ID Topics' then 'Apple ID account Security'.

  • Different log file name in the Control file of SQL Loader

    Dear all,
    I get every day 3 log files with ftp from a Solaris Server to a Windows 2000 Server machine. In this Windows machine, we have an Oracle Database 9.2. These log files are in the following format: in<date>.log i.e. in20070429.log.
    I would like to load this log file's data to an Oracle table every day and I would like to use SQL Loader for this job.
    The problem is that the log file name is different every day.
    How can I give this variable log file name in the Control file, which is used for the SQL Loader?
    file.ctl
    LOAD DATA
    INFILE 'D:\gbal\in<date>.log'
    APPEND INTO TABLE CHAT_SL
    FIELDS TERMINATED BY WHITESPACE
    TRAILING NULLCOLS
    (SL1 DATE "Mon DD, YYYY HH:MI:SS FF3AM",
    SL2 char,
    SL3 DATE "Mon DD, YYYY HH:MI:SS FF3AM",
    SL4 char,
    SL5 char,
    SL6 char,
    SL7 char,
    SL8 char,
    SL9 char,
    SL10 char,
    SL11 char,
    SL12 char,
    SL13 char,
    SL14 char,
    SL15 char)
    Do you have any better idea about this issue?
    I thought of renaming the log file to an instant name, such as in.log, but how can I distinguish the desired log file, from the other two?
    Thank you very much in advance.
    Giorgos Baliotis

    I don't have a direct solution for your problem.
    However if you invoke the SQL loader from an Oracle stored procedure, it is possible to dynamically set control\log file.
    # Grant previleges to the user to execute command prompt statements
    BEGIN
    dbms_java.grant_permission('bc4186ol','java.io.FilePermission','C:\windows\system32\cmd.exe','execute');
    END;
    * Procedure to execute Operating system commands using PL\SQL(Oracle script making use of Java packages
    CREATE OR REPLACE AND COMPILE JAVA SOURCE NAMED "Host" AS
    import java.io.*;
    public class Host {
    public static void executeCommand(String command) {
    try {
    String[] finalCommand;
    finalCommand = new String[4];
    finalCommand[0] = "C:\\windows\\system32\\cmd.exe";
    finalCommand[1] = "/y";
    finalCommand[2] = "/c";
    finalCommand[3] = command;
    final Process pr = Runtime.getRuntime().exec(finalCommand);
    new Thread(new Runnable() {
    public void run() {
    try {
    BufferedReader br_in = new BufferedReader(new InputStreamReader(pr.getInputStream()));
    String buff = null;
    while ((buff = br_in.readLine()) != null) {
    System.out.println("Process out :" + buff);
    try {Thread.sleep(100); } catch(Exception e) {}
    catch (IOException ioe) {
    System.out.println("Exception caught printing process output.");
    ioe.printStackTrace();
    }).start();
    new Thread(new Runnable() {
    public void run() {
    try {
    BufferedReader br_err = new BufferedReader(new InputStreamReader(pr.getErrorStream()));
    String buff = null;
    while ((buff = br_err.readLine()) != null) {
    System.out.println("Process err :" + buff);
    try {Thread.sleep(100); } catch(Exception e) {}
    catch (IOException ioe) {
    System.out.println("Exception caught printing process error.");
    ioe.printStackTrace();
    }).start();
    catch (Exception ex) {
    System.out.println(ex.getLocalizedMessage());
    public static boolean isWindows() {
    if (System.getProperty("os.name").toLowerCase().indexOf("windows") != -1)
    return true;
    else
    return false;
    * Oracle wrapper to call the above procedure
    CREATE OR REPLACE PROCEDURE Host_Command (p_command IN VARCHAR2)
    AS LANGUAGE JAVA
    NAME 'Host.executeCommand (java.lang.String)';
    * Now invoke the procedure with an operating system command(Execyte SQL-loader)
    * The execution of script would ensure the Prod mapping data file is loaded to PROD_5005_710_MAP table
    * Change the control\log\discard\bad files as apropriate
    BEGIN
    Host_Command (p_command => 'sqlldr system/tiburon@orcl control=C:\anupama\emp_join'||1||'.ctl log=C:\anupama\ond_lists.log');
    END;Does that help you?
    Regards,
    Bhagat

  • I've lost the "Send" button in my reply window. When I double click on a Mail message, on order to reply, the "Send" button at the top of the window is missing. I can reply by closing and saving my reply, and re-openning from Drafts. How to fix?

    I've lost the "Send" button in my reply window. When I double click on a Mail message, on order to reply, the "Send" button at the top of the window is missing. I can reply by closing and saving my reply, and re-openning from Drafts. How to fix?

    Hi, try this...
    If nothing is showing in the Toolbar at top, click the little gray oval at top right.
    Right click or Control+click on the Toolbar, choose Customize Toolbar, drag the Send button to the Toolbar.

  • I AM TRYING TO SET UP THE PRIVATE BROWSING FEATURE - I SEEM TO HAVE LOST THE FIREFOX BUTTON. HELP PLEASE

    WHEN I OPEN THE FIREFOX BROWSER, I NO LONGER SEEM TO HAVE THAT ORANGE BAR THAT SAYS FIREFOX AT THE TOP LEFT. I AM SHOWING FILE,EDIT,VIEW,HISTORY,BOOKMARKS, TOOLS AND HELP. I WANTED TO ACTIVATE PRIVATE BROWSING BUT SEEM TO HAVE LOST THE FIREFOX BUTTON THAT I NEED TO CLICK ON. THANKS, JANE

    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: command+Shift+F).<br />
    If you are in full screen mode then hover the mouse to the top to make the Navigation Toolbar and Tab bar appear.<br />
    You can click the Maximize button at the top right to leave full screen mode or right click empty space on a toolbar and use "Exit Full Screen Mode" or press F11.
    *https://support.mozilla.org/kb/how-to-use-full-screen
    See also:
    *https://support.mozilla.org/kb/how-do-i-get-firefox-button
    *https://support.mozilla.org/kb/Menu+bar+is+missing

  • Before I upgraded my iPad mini, you could turn off apps to save battery power by double clicking the control button and then holding your finger on the app button until the minus sign appeared.  That doesn't work anymore.  How do you turn off the apps wit

    Before I upgraded my iPad mini, you could turn off apps to save battery power by double clicking the control button and then holding your finger on the app button until the minus sign appeared.  That doesn't work anymore.  How do you turn off the apps with ios7

    Now you swipe downward, the app will appear and you delete, keep scolling to the right as in the past.  With the new operating system you also swipe downward to get the search bar to find an app

  • Cannot operate youtube videos in Firefox. Cannot use play, pause, volume, or any of the control buttons.

    None of the control buttons work, it's as if the darn video window is part of the backgroun.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • I shrank my Yahoo e-mail by pushing the control button. How do I restore to original size

    I shrank my Yahoo e-mail by pushing the control button. How do I restore to original size?
    == This happened ==
    Just once or twice
    == I pushed the control button

    I corrected my problem, which was having very small print when I went to Yahoo e mail, by clicking on reset on the view menu. Only my text was small, the toolbars were fine.

  • How can I stop the control button from moving the open applications up and exposing the desktop?

    It is getting very annoying when I want to use the control button for other functions.
    I tried looking in settings under keyboard, but found nothing.
    If anybody knows how to change it, I would really appreciate it!
    Thanks,
    Neel.

    Please describe what you are doing and what is happening more fully. I can press the control key all day long and nothing happens.

  • I broke my screen on my iphone and lost the home button. is it repairable?

    i broke my screen on my iphone and lost the home button. is it repairable?

    You can pay the out of warranty fee ($249 I think, in the USA) and get a refurbished replacement.

  • After ios5 update i lost the change button in my contacts so i cant change phones, email, adresses...

    After i did the iOS 5 update i lost the ΄΄changes΄΄ button in my contacts. So now i cant change anything...phones, email etc.How can i take the button back?

    This is what I fixed to get all my data back - if everything works correctly you shouldn't lose anything... http://discussions.apple.com/thread.jspa?threadID=2478473&tstart=0

  • After a few hours of inactivity , my screen goes white with a flashing file folder in the centre with a question mark in the centre of said folder. at this point i can only unplug the computer for it to reboot properly, then it is fine till the next go..

    After a few hours of inactivity, I return to find a white screen with a file folder in the center of the screen with a ? mark in the centre of said folder and both are flashing...am i compromised?

    No 
    Solution may be found if you search in the "More Like This" section over in the right column. 

  • After Mavericks update, i am not able to save flash files (fla) to the server.

    After installing OS X Mavericks, i am no longer able to (resave) any flash files (.fla) to any of our servers or local storage devices.
    When saving the file the first time all seems fine, trying to save the same file again results in the error message bellow.
    The error message : "Unable to save the documents as '/volumes/content/users/brian/test.fla' Please try saving to a different filename or ta different location"
    Saving a file locally doesn't give me these problems.
    Im currently running Flash CC 13.0.1.808 on a iMac.

    Hi,
    The December 2013 update(13.1.0.226) already resolved the buzzing sound issue on Maverics. Please update your Flash CC for that fix.
    Save issue is under investigation. While this issue is being fixed, you can recover the corrupted files by following the below steps
    1. Change the file extension of your corrupted fla to zip eg: corrupt.fla to corrupt.zip
    2. Extract the zip file
    3. Open the xfl file from the extracted folder in Flash CC(you will see the file is of up to date and non-corrupted)
    Other trivial work-arounds:
    1. Save your file as .xfl(uncompressed fla) instead of .fla
    2. Connect your shared location via afp protocol on Mac 10.9 whereever-possible
    3. Use Mac 10.8 or lower versions if-possible
    Thanks!
    Mohan

  • Lost the Controls

    My daughter seems to have changed my iTunes...I no longer have the controls...to play, pause and alter the volume...I can't seem to see how to change it back to the typical default settings...
    Any advice?

    Sorry I'm not trying to be rude here, but are you purposely trying to be as nondescript as possible? Perhaps you can just post a screen shot, so it doesn't take 10 posts to find out what were actually looking at. cmdshift3 = take a screenshot (at any time) of the entire screen.

Maybe you are looking for

  • Lots of apps crashing when opened

    Since upgrading from an iphone 4 to an iphone 5 last year, various apps that worked before no long work, i used the settings and profile for my 4 and transferred to the 5 so some of the apps installed automatically, and they did not work, and some ap

  • Error while Updating the TIN No through DTW

    Hi, When i try to update the TIN Number through DTW .....i'm experiencing the Error-- DELETING ROWS NOT SUPPORTED FOR OBJECT FISCAL ID'S FOR BP MASTER DATA APPLICATION-DEFINED OR OBJECT DEFINED ERROR 65171 My Template is like this.... ParentKey LineN

  • Error adding file type item using portal api

    We are using portal 3.0.8. I can add text and url type items fine but when i try to add a file type item, i get following error. ERROR at line 1: ORA-29532: Java call terminated by uncaught Java exception: java.lang.SecurityException: relative pathna

  • Mac keeps falling asleep for no reason

    So, I have a MacBook pro w/ retina display. It falls asleep when I am using it. All the time. And then makes me re log in. I don't want to shut off sleep mode, as I like it. But it won't stop. Known issue? Fix? Thank you in advance.

  • List of Camera types and Black and White.

    Sorry for being slack but I've struggled with the differences between similar named  camera options on my 920. Is there a page that lists and descibes these different options and how they differ and fit together? Also, what is the easiest way to eith