Flash not workin after upload

Hii friends i develop one swf for my site in which i
hyperlink some pages with images
swf is working on my pc but when ever i upload it on my site
it stops working
My Flash Player version is 9 and Action Script version is 3
Plz help me out that how it works after uploading on
site

Try checking the security options at the "export" window. Try
both of them: access netowork only and access local files only.
Can we have a look at the page which causes the
problem?

Similar Messages

  • Sounds with Buzz not playing after upload

    Hi,
    So I have a project that works fine testing in browsers but when I upload it I get no sound. I have the sounds saved in oog, mp3, and wav. The file structure is the same, buzz script is uploaded as well as the sounds folder. I did change the html file name to index.
    Does anyone have any ideas on why the sounds wont play?
    Thanks

    Thanks for responding. Sorry I had forgoten the link.
    http://briancschneider.com/zip/web
    I'm not using edgecommons. I'm using buzz! for the sounds.
    Checking other threads on sound was very helpful in getting the sound set-up. I've been unable to find a thread about sounds not playing after upload except certain formats not playing in some browser. That shouldn't be my issue since I have the sounds in multiple formats, but I'm obviously overlooking something so...

  • Data in CSV uploads successfully, but it is not visible after upload.

    Hi,
    I am using Apex 3.2 on Oracle 11g.
    This is an imported application for which I am making changes as per my requirements. As I am new to Apex and even SQL, I request forum members to help me with this.
    Please find below the old code for uploading data from CSV. It displays only 6 columns - Database Name, Server Name, Application Name, Application Provider, Critical, Remarks. This was successfully uploading all the data from CSV and that data was visible after upload.
    OLD CODE:_
    --PLSQL code for uploading application details
    DECLARE
    v_blob_data      BLOB;
    v_blob_len      NUMBER;
    v_position      NUMBER;
    v_raw_chunk      RAW(10000);
    v_char           CHAR(1);
    c_chunk_len           NUMBER:= 1;
    v_line           VARCHAR2 (32767):= NULL;
    v_data_array      wwv_flow_global.vc_arr2;
    v_rows           NUMBER;
    v_count           NUMBER;
    v_dbid           NUMBER;
    v_serverid           NUMBER;
    v_sr_no          NUMBER:=1;
    v_last_char          varchar2(2);
    BEGIN
    -- Read data from wwv_flow_files
    SELECT blob_content INTO v_blob_data FROM wwv_flow_files
    WHERE last_updated = (SELECT MAX(last_updated) FROM wwv_flow_files WHERE UPDATED_BY = :APP_USER)
    AND id = (SELECT MAX(id) FROM wwv_flow_files WHERE updated_by = :APP_USER);
    v_blob_len := dbms_lob.getlength(v_blob_data);
    v_position := 1;
    -- For removing the first line
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    EXIT;
    END IF;
    END LOOP;
    -- Read and convert binary to char
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_line := v_line || v_char;
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    --removing the new line character added in the end
    v_line := substr(v_line, 1, length(v_line)-2);
    --removing the double quotes
    v_line := REPLACE (v_line, '"', '');
    --checking the absense of data in the end
    v_last_char:= substr(v_line,length(v_line),1);
    IF v_last_char = CHR(44) THEN
         v_line :=v_line||'-';
    END IF;
    -- Convert each column separated by , into array of data
    v_data_array := wwv_flow_utilities.string_to_table (v_line, ',');
    -- Insert data into target tables
    SELECT SERVERID into v_serverid FROM REPOS_SERVERS WHERE SERVERNAME=v_data_array(2);
    SELECT DBID into v_dbid FROM REPOS_DATABASES WHERE DBNAME=v_data_array(1) AND SERVERID=v_serverid;
    --Checking whether the data already exist
    SELECT COUNT(APPID) INTO v_count FROM REPOS_APPLICATIONS WHERE DBID=v_dbid AND APPNAME=v_data_array(1);
    IF v_count = 0 THEN
    EXECUTE IMMEDIATE 'INSERT INTO
    REPOS_APPLICATIONS (APPID,APPNAME,APP_PROVIDER,DBID,SERVERID,CRITICAL,LAST_UPDATE_BY,LAST_UPDATE_DATE,REMARKS) VALUES(:1,:2,:3,:4,:5,:6,:7,:8,:9)'
    USING
    APP_ID_SEQ.NEXTVAL,
    v_data_array(3),
    v_data_array(4),
    v_dbid,
    v_serverid,
    v_data_array(5),
    v_data_array(6),
    v_data_array(7),
    v_data_array(8);
    END IF;
    -- Clearing out the previous line
    v_line := NULL;
    END IF;
    END LOOP;
    END;
    ==============================================================================================================================
    Please find below the new code (which I modified as per my requirements) for uploading data from CSV. It displays 17 columns - Hostname, IP Address, Env Type, Env Num, Env Name, Application, Application Component, Notes, Cluster , Load Balanced, Business User Access Mechanism for Application, Env Owner, Controlled Environment, SSO Enabled, ADSI / LDAP / External Directory Authentication, Disaster Recovery Solution in Place, Interfaces with other application.
    This is successfully uploading all the data from CSV, But this uploaded data is not visible in its respective tab.
    _*NEW CODE:*_
    --PLSQL code for uploading application details
    DECLARE
    v_blob_data      BLOB;
    v_blob_len      NUMBER;
    v_position      NUMBER;
    v_raw_chunk      RAW(10000);
    v_char           CHAR(1);
    c_chunk_len           NUMBER:= 1;
    v_line           VARCHAR2 (32767):= NULL;
    v_data_array      wwv_flow_global.vc_arr2;
    v_rows           NUMBER;
    v_count           NUMBER;
    v_dbid           NUMBER;
    v_serverid           NUMBER;
    v_sr_no          NUMBER:=1;
    v_last_char          varchar2(2);
    BEGIN
    -- Read data from wwv_flow_files
    SELECT blob_content INTO v_blob_data FROM wwv_flow_files
    WHERE last_updated = (SELECT MAX(last_updated) FROM wwv_flow_files WHERE UPDATED_BY = :APP_USER)
    AND id = (SELECT MAX(id) FROM wwv_flow_files WHERE updated_by = :APP_USER);
    v_blob_len := dbms_lob.getlength(v_blob_data);
    v_position := 1;
    -- For removing the first line
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    EXIT;
    END IF;
    END LOOP;
    -- Read and convert binary to char
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_line := v_line || v_char;
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    --removing the new line character added in the end
    v_line := substr(v_line, 1, length(v_line)-2);
    --removing the double quotes
    v_line := REPLACE (v_line, '"', '');
    --checking the absense of data in the end
    v_last_char:= substr(v_line,length(v_line),1);
    IF v_last_char = CHR(44) THEN
         v_line :=v_line||'-';
    END IF;
    -- Convert each column separated by , into array of data
    v_data_array := wwv_flow_utilities.string_to_table (v_line, ',');
    -- Insert data into target tables
    --SELECT SERVERID into v_serverid FROM REPOS_SERVERS WHERE SERVERNAME=v_data_array(2);
    --SELECT DBID into v_dbid FROM REPOS_DATABASES WHERE DBNAME=v_data_array(1) AND SERVERID=v_serverid;
    --Checking whether the data already exist
    --SELECT COUNT(APPID) INTO v_count FROM REPOS_APPLICATIONS WHERE DBID=v_dbid AND APPNAME=v_data_array(1);
    IF v_count = 0 THEN
    EXECUTE IMMEDIATE 'INSERT INTO
    REPOS_APPLICATIONS (APPID,HOSTNAME,IPADDRESS,ENV_TYPE,ENV_NUM,ENV_NAME,APPLICATION,APPLICATION_COMPONENT,NOTES,CLSTR,LOAD_BALANCED,BUSINESS,ENV_OWNER,CONTROLLED,SSO_ENABLED,ADSI,DISASTER,INTERFACES) VALUES(:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14,:15,:16,:17,:18)'
    USING
    APP_ID_SEQ.NEXTVAL,
    v_data_array(1),
    v_data_array(2),
    v_data_array(3),
    v_data_array(4),
    v_data_array(5),
    v_data_array(6),
    v_data_array(7),
    v_data_array(8),
    v_data_array(9),
    v_data_array(10),
    v_data_array(11),
    v_data_array(12),
    v_data_array(13),
    v_data_array(14),
    v_data_array(15),
    v_data_array(16),
    v_data_array(17);
    END IF;
    -- Clearing out the previous line
    v_line := NULL;
    END IF;
    END LOOP;
    END;
    ============================================================================================================================
    FYI, CREATE TABLE_ is as below:
    CREATE TABLE "REPOS_APPLICATIONS"
    (     "APPID" NUMBER,
         "APPNAME" VARCHAR2(50),
         "APP_PROVIDER" VARCHAR2(50),
         "DBID" NUMBER,
         "CRITICAL" VARCHAR2(3),
         "REMARKS" VARCHAR2(255),
         "LAST_UPDATE_DATE" TIMESTAMP (6) DEFAULT SYSDATE NOT NULL ENABLE,
         "LAST_UPDATE_BY" VARCHAR2(10),
         "SERVERID" NUMBER,
         "HOSTNAME" VARCHAR2(20),
         "IPADDRESS" VARCHAR2(16),
         "ENV_TYPE" VARCHAR2(20),
         "ENV_NUM" VARCHAR2(20),
         "ENV_NAME" VARCHAR2(50),
         "APPLICATION" VARCHAR2(50),
         "APPLICATION_COMPONENT" VARCHAR2(50),
         "NOTES" VARCHAR2(255),
         "CLSTR" VARCHAR2(20),
         "LOAD_BALANCED" VARCHAR2(20),
         "BUSINESS" VARCHAR2(255),
         "ENV_OWNER" VARCHAR2(20),
         "CONTROLLED" VARCHAR2(20),
         "SSO_ENABLED" VARCHAR2(20),
         "ADSI" VARCHAR2(20),
         "DISASTER" VARCHAR2(50),
         "INTERFACES" VARCHAR2(50),
         CONSTRAINT "REPOS_APPLICATIONS_PK" PRIMARY KEY ("APPID") ENABLE
    ALTER TABLE "REPOS_APPLICATIONS" ADD CONSTRAINT "REPOS_APPLICATIONS_R01" FOREIGN KEY ("DBID")
         REFERENCES "REPOS_DATABASES" ("DBID") ENABLE
    ALTER TABLE "REPOS_APPLICATIONS" ADD CONSTRAINT "REPOS_APPLICATIONS_R02" FOREIGN KEY ("SERVERID")
         REFERENCES "REPOS_SERVERS" ("SERVERID") ENABLE
    ==============================================================================================================================
    It would be of great help if someone can help me to resolve this issue with uploading data from CSV.
    Thanks & Regards
    Sharath

    Hi,
    You can see the installed dictionaries and change between them by right-clicking and choosing '''Languages''' inside a live text box eg. the box you are in when replying or right-clicking on the '''Search''' box on the top right corner of this page and choosing '''Check Spelling'''.

  • Iphoto will not work after uploading yosemite

    After uploading the Yosemite upgrade. The iPhoto will not work. I have done what the software recommends. I have deleted the app and reloaded it. I get the same message. The message that i get is:
    your photo library is either in use by another application or has become unreadable.
    shut down and restart your computer and then open iPhoto again. if the problem persists. try rebuilding your photo library. to do this quit iPhoto, and then reopen it while keeping the option and command keys pressed. you can also try restoring your photo library from a backup.
    Any suggestions or help would be greatly appreciated.
    Matt

    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.

  • Template header images not visible after upload

    Thanks in advance. 
    Using Dreamweaver CS5 on a Macbook Pro 10.7.5.  GoDaddy web host.
    DW novice however I am using a book to help me along but am stuck.  
    Because I am new to this, I am using a VERY simple template. 
    Link to my site: http://www.lifeafterpharma.biz
    I did search this site and others for answers
    PROBLEM: 
    My template looks great when I preview it in all of the browsers but after I upload it, pictures within the body of the site do not appear and NONE of the header images appear.   
    I have made certain that I uploaded all of the pictures. 
    It's supposed to look like this:
    Original Template:
    After my modifications and this is the image I see when I use the DW browser preview --
    This is the original template and what the site ACTUALLY looks like in any browser after upload.  When I upload my modified website, my newly added pics will appear but none of the template images appear. 
    Thanks in advance for your help!

    Site Defintion:
    First things first. You must set up a Site Definition in DW or you're going to have more problems than you can handle.The entire program functions off of the idea of Site Defintions working from a centralized folder...
    http://tv.adobe.com/watch/learn-dreamweaver-cs5/gs01-defining-a-new-site/
    Once your site definition is created, and all of your files are within the folder it creates, you can use DW to re-link your images. Once everything is re-linked with correct paths, you can upload all of the files to your server. Your .html pages do not "contain" their images, each image also needs to be uploaded to the server itself.
    Templates:
    In DW, "Templates" are a very specific thing. They have a .dwt file extension and are used to create Child Pages within a Defined Site and have Editable Regions set by you. Everything outside those Editable Regions is identical from page to page, leaving the Editable Region as your area to place content that changes from page to page. To me, it sounds like you are just using a pre-made layout vs an actual DW Template .dwt file. I just wanted to make sure that was the case, because some weird things can happen if you don't use a .dwt correctly.

  • Why do I get window adobe flash' NOT INSTALLED AFTER I HAVE JUST UNINSTALLED AND THEN REINSTALLED IT

    why do I get a "correct version of adobe flash not installed"message after I have uninstalled and reinstalled the program several times.  It worked on this computer for the last six months?

    What is your operating system, version & edition?
    What is your web browser?
    What is your Flash Player version?
    What are you doing when you get that message?
    [topic moved to Flash Player forum]

  • Flash not working on upload

    Hii friends i develop one swf for my site in which i
    hyperlink some pages with images
    swf is working on my pc but when ever i upload it on my site
    it stops working
    My Flash Player version is 9 and Action Script version is 3
    Plz help me out that how it works after uploading on site
    i use this code for hyperlink
    on (release){
    getURL("
    http://www.learnforfun.org/drupalnew/?q=calendar/event","_self");

    Try checking the security options at the "export" window. Try
    both of them: access netowork only and access local files only.
    Can we have a look at the page which causes the
    problem?

  • Esignature option in echosign not available after uploading faxed document

    One of my staff members is unable to esign an Echosign document after she uploaded the faxed document. Typically, in the Echosign console, you can upload a faxed document and, after uploading, you are able to esign but lately, this option has disappeared. Did something change with all of the Echosign updates?

    The audit trail also says this (see below). It looks peculiar. I'm not sure why a signed copy was sent out after it was uploaded.
    Document created by RC ([email protected])
    Mar 16 1:42 pm 
    Sent out for signature to [email protected] Mar 16 1:42 pm 
    Viewed by [email protected]
    Mar 16 2:49 pm 
    A signed copy was uploaded by RC ([email protected]
    Apr 07 11:21 am 
    Sent out for signature to RC ([email protected])
    Apr 07 11:21 am 
    Viewed by RC ([email protected]
    Apr 07 11:22 am 
       Waiting to be signed
    by RC ([email protected])

  • Podcasts 2&3 not playing after upload by FTP to server?

    On G-4, OS Tiger, Web site was created in iWeb 1.1.2 and worked with videos and audio podcast #1. Over internet, Podcasts #2 and #3 will not play- player bar does not show up (Just tiny question mark) after upload by FTP using Transit to Network Solutions server. Moved iWeb file to Mac Pro, OS Leopard, using iWeb '08, I recreated podcast pages and republished entire site: all pages look great, but I still have the same problem! I have tried uploading just podcast related files, uploading the entire site files, both zipped and not zipped. I always get this problem. Web site: www.calaverasgold.tv
    Site media- videos and audio podcasts work fine in Safari browser on my computer, but player is not working one some files when site is accessed via internet. Please help. I need to produce a weekly podcast and I need to have them working. Thank you.

    Yup. I am glad it is working just fine.
    I erased all the files in the server and upload them to a new created folder.
    I think the error was actually coming from the redirect. Somehow when I played around with changing .htaccess code if was able to style my website correctly.
    Thanks everyone for your help.

  • Flash not loading after install...

    Snow Leopard was working perfectly until the most recent update. When I initially upgraded, I updated flash, as we know snow leopard shipped with the previous version of flash. However, after Apple released an update to address flash and other security updates, flash only loads occasionally. I notice more when trying to view youtube videos. The videos don't fully load and I have to constantly try and refresh the page until it eventually loads. Anybody else experiencing this issues or have come up with a solution??
    Thanks.

    Hi,
    *"as we know snow leopard shipped with the previous version of flash"*
    You didn't need to update your flash plugin afer installing SL.
    Go here and follow the instructions to UNinstall Flash Player
    http://kb2.adobe.com/cps/141/tn_14157.html
    Then reinstall Flash player.
    Carolyn

  • Flash video not working after upload

    Hi I have a simple flash site using MX8 pro with a small
    imported medium res video clip. Works fine locally but not via the
    site. I have confirmed its not a cache issue because I can see test
    alterations to text colour. the content is all in the same
    directory as per local content? Please advise! regards Mike

    I have fixed this now, the reason was my host service
    provider had to enable .flv extension in MIME settings on Windows
    Server 2003; you would have expected that with all the automatic
    updates pushed by Microsoft that this would have been sorted. I
    guess it gives internet hosting service providers the choice to
    allow steaming or not, the only problem is that many service
    providers might not be aware of the issue. I got the answer from an
    adobe tech note via google.

  • Adobe Flash Not Useable After Install

    I have Windows 7 Home Premium and IE 11.  Have been using Jackie Lawson greeting card app for years.  Recently, when I try to access a greeting card within this app, it tells me that I need to install Adobe Flash.  After I reinstall Adobe Flash, the same thing happens.  I have tried installing Adobe Flash many times including with IE not running and with another app that uses Adobe Flash terminated during the install.  I have also uninstalled Adobe Flash prior to beginning the process,  but nothing seems to work.  Here is the last entry from FlashInstall.log:
    2014-12-6+22-17-0.231 [error] 1223 1056
    2014-12-9+0-17-0.234 [error] 1223 1056
    2014-12-10+1-17-0.230 [error] 1223 1056
    2014-12-10+1-17-21.8 [error] 1226 1062
    =O====== M/15.0.0.246 2014-12-10+01-17-06.691 ========
    0000 [I] 00000010 FlashPlayerInstaller.exe -install -iv 11
    0001 [I] 00000020 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0002 [I] 00000013
    0003 [I] 00000025 C:\Windows\system32\Macromed\Flash\FlashUtil32_15_0_0_246_ActiveX.exe
    0004 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil32_15_0_0_246_ActiveX.exe
    0005 [I] 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil32_15_0_0_246_ActiveX.dll
    0006 [I] 00000023 C:\Windows\system32\Macromed\Flash\activex.vch
    0007 [I] 00000019 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0008 [W] 00001024 C:\Windows\system32\FlashPlayerCPLApp.cpl 183
    0009 [W] 00001024 C:\Windows\system32\FlashPlayerApp.exe 183
    0010 [I] 00000021 C:\Windows\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0011 [W] 00001106
    0012 [W] 00001106
    0013 [W] 00001024 C:\Windows\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0014 [I] 00000012
    =X====== M/15.0.0.246 2014-12-10+01-17-23.203
    Alex Phillips

    Lynne Phillips     Dec 17, 2014 7:28 PM    (in response to i dont know what to put h)    
    I am the original poster.  Does any one have any idea what I should do next?  BTW - this is an Adobe Flash problem:  Adobe Flash says its installation has completed,  but when the Adobe checker tests for it, it says Adobe Flash is not installed on my PC???

  • SWF File not working after upload to server, but works on local system

    HELP PLEASE.....I have created a Fla and exported a swf file
    from Flash 8 and Export (Flash 6). I can preview the page in
    Dreamweaver just fine, but when i upload it and the html file, it
    isn't showing up. It leaves a blank spot on the page. It is just a
    simple banner with graphic clips and motion tween text, with image
    bgd. All images are jpg.
    I have tried:
    1. Using a full link to the swf file.
    2. Removed drop-shodows in swf file
    3. convert to Flash mx 2004 file
    4. Exported to higher Flash version to see if the flash
    player was an issue.
    5. Exported with no dashes in name
    6. Added Scr file into Dreamweaver
    7. Made a new test file to see if it was something in the
    current html doc, same result.
    8. Tried viewing on a pc, same result. Created on mac.
    Here is the test page if anyone wants to take a look.
    THANKS FOR ANY ADVISE.
    Test
    Page Link

    The link you provided is to the SWF file, not to an HTML
    file, so no one can test your HTML file.
    Have you checked the code for the embedding of the SWF file
    in your HTML file? I don't use Dreamweaver much, but I do know that
    if you start assembling a Dreamweaver file without first saving the
    HTML, embedded graphics and other items are inserted as direct
    links to the files on your computer, rather than as relative paths.
    There is one other possible issue: I note that your swf is
    called CWABanner.swf. Depending on your FTP settings, it is
    possible that your server is forcing all file names to lower case
    (a common practice). Which means the file on your server will be
    cwabanner.swf. Again, depending on how the web server is set up, if
    it is case sensitive, it will treat CWABanner and cwabanner as
    separate files. So if the HTML calls CWABanner.swf, but the FTP
    upload has forced a rename to lower case to cwabanner.swf, the HTML
    file will not find it. Check this out, or to be absolutely certain,
    rename everything to lower case: the file name itself and the
    reference in the HTML file.

  • New created values are not displaying after upload

    Hi
    I have created 2 key figures(Infoobject),4 new nodes and leafs(Hierarchy), to include the new logic at R/3 end as well as BW end.Every thing is fine even after doing full upload(repair).
    When i execute the query the data is not populated in its respective infoobjects and hierarchy nodes and leafs.
    Even 1 infoobject which is used for Counter value is not showing the counting as it's defined as aggregate to the info object Count and that included to ODS which is responsible for counting. after full upload it's not showing the counter values.
    After full upload(Repair) all these entries are not displaying in the report against the data which is present at RSA3 level.
    Can any one tell me how to make them available in the query even after data is uploaded / available in the bw.
    Gaurav Upadhyaya
    Edited by: Gaurav on Aug 26, 2008 10:55 AM

    Hi,
    You can´t see hierarchies in an infoprovider, so this is ok. A hierarchie is a part of an infoobject. But you say  you have 2 new kefigures and they are not filled. I suppose you added both keyfigures to your DSO/Cube and to the datasource (in your source system). Have you extended the transformations between datasource <-> DSO and DSO <-> Cube too? Are the keyfigures correctly connected (in the transformations)? If yes, check your PSA after loading. Are the keyfigures filled here? If no, check the RSA3 in your source system. Are the fields for you keyfigures filled there?
    Pls. check this all and tell us, what the result is.
    Regards

  • Flash not playing once uploaded to website

    Hopefully someone can help. This seems like it should be so
    easy.
    When I test flash video .flv locally on my computer,
    everything looks and works great. Once I upload the html to my
    website, flash no longer plays. Server is Linux but that should not
    matter. I'm using Dreamweaver 8. Test code is below. Does anyone
    have any suggestions? I've included the FLVPlayer_Progressive.swf
    file and other swf in the same directory.
    cheers,
    Todd
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Untitled Document</title>
    <script type="text/javascript">
    function MM_CheckFlashVersion(reqVerStr,msg){
    with(navigator){
    var isIE = (appVersion.indexOf("MSIE") != -1 &&
    userAgent.indexOf("Opera") == -1);
    var isWin = (appVersion.toLowerCase().indexOf("win") != -1);
    if (!isIE || !isWin){
    var flashVer = -1;
    if (plugins && plugins.length > 0){
    var desc = plugins["Shockwave Flash"] ? plugins["Shockwave
    Flash"].description : "";
    desc = plugins["Shockwave Flash 2.0"] ? plugins["Shockwave
    Flash 2.0"].description : desc;
    if (desc == "") flashVer = -1;
    else{
    var descArr = desc.split(" ");
    var tempArrMajor = descArr[2].split(".");
    var verMajor = tempArrMajor[0];
    var tempArrMinor = (descArr[3] != "") ?
    descArr[3].split("r") : descArr[4].split("r");
    var verMinor = (tempArrMinor[1] > 0) ? tempArrMinor[1] :
    0;
    flashVer = parseFloat(verMajor + "." + verMinor);
    // WebTV has Flash Player 4 or lower -- too low for video
    else if (userAgent.toLowerCase().indexOf("webtv") != -1)
    flashVer = 4.0;
    var verArr = reqVerStr.split(",");
    var reqVer = parseFloat(verArr[0] + "." + verArr[2]);
    if (flashVer < reqVer){
    if (confirm(msg))
    window.location = "
    http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash";
    </script>
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    </head>
    <body onload="MM_CheckFlashVersion('8,0,0,0','Content on
    this page requires a newer version of Macromedia Flash Player. Do
    you want to download it now?');">
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','widt h','400','height','300','id','FLVPlayer','src','FLVPlayer_Progressive','flashvars','&MM_Co mponentVersion=1&skinName=Clear_Skin_1&streamName=http://www.motopowervideo.com/downloads/ power_valve_pin&autoPlay=false&autoRewind=false','quality','high','scale','noscale','name' ,'FLVPlayer','salign','lt','pluginspage','http://www.macromedia.com/go/getflashplayer','mo vie','FLVPlayer_Progressive'
    ); //end AC code
    </script><noscript><object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
    width="400" height="300" id="FLVPlayer">
    <param name="movie" value="FLVPlayer_Progressive.swf"
    />
    <param name="salign" value="lt" />
    <param name="quality" value="high" />
    <param name="scale" value="noscale" />
    <param name="FlashVars"
    value="&MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=http://www.motopowervideo. com/downloads/power_valve_pin&autoPlay=false&autoRewind=false"
    />
    <embed src="FLVPlayer_Progressive.swf"
    flashvars="&MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=http://www.motopowervi deo.com/downloads/power_valve_pin&autoPlay=false&autoRewind=false"
    quality="high" scale="noscale" width="400" height="300"
    name="FLVPlayer" salign="LT" type="application/x-shockwave-flash"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    />
    </object></noscript>
    </body>
    </html>

    I found the mime settings and added them to the server.
    Downloaded the AC_FL_RunContent.js and AC_RunActiveContent.js to
    the scripts subdirectory.
    Read a bunch of stuff from Adobe and I'm even more confused.
    Getting Flash to run is a real Pain! If I don't get it soon, I'm
    just going to use links... this is getting ridiculous. This should
    be SIMPLE... embed the video , download to the server and GO.
    Any ideas?
    Thanks,
    Todd

Maybe you are looking for