How can I insert a swf interactive quiz file in a muse website page?

I have a number of swf quizzes published with Wondershare Quiz Creator and I need to place them on my Muse-created website. If I use the "Place" command from the file menu, I can place the swf file on my webpage. However, when I go to the page, the quiz stops loading at 90%. How can I put this file on my website so that students can take the quiz(zes)?
I can send a copy of  the swf file if that is necessary to show me how to place it on my website. Thanks in advance for any help, as I've already spent hours trying to find a solution to this problem.

I have a number of swf quizzes published with Wondershare Quiz Creator and I need to place them on my Muse-created website. If I use the "Place" command from the file menu, I can place the swf file on my webpage. However, when I go to the page, the quiz stops loading at 90%. How can I put this file on my website so that students can take the quiz(zes)?
I can send a copy of  the swf file if that is necessary to show me how to place it on my website. Thanks in advance for any help, as I've already spent hours trying to find a solution to this problem.

Similar Messages

  • How can i insert more than one record a time in a JSP page?

    Hi experts,
    I'm working with JDeveloper version 3.2 application server 9i.
    I want to insert more than 1 record using a jsp page and then perform a commit at the end.
    do you can help me with this problem/challenge?
    Thank you,
    Regards,
    Mario

    statement.executeBatch() maybe?

  • How can I upload a 360° Panorama Review on my Adobe Muse Website?

    Hey guys
    I need your help, because nobody knows, how I can upload a 360° Panorama Review on my Website. First I loaded the whole file folder (picture 1) with all the data files (images, index, tiles and so on) in the document root on the server (pic 2 + 3).
    After that I went back to my website and clicked on data - place and placed only the SWF file on my homepage and then I upload it as FTP Host to the server. And now it looks so: www.gardendreams.com
    But it should look like this: Gartenpflege & Gartengestaltung Limmattal Zürich | Natursteinarbeiten, Wasseranlagen, Garten Neugestaltung, Pflanzberatu…
    What did I do wrong? Thank you very much for your help.
    P.s. I work with Windows 7 Professional 64bit

    Hello Sanjit
    Thanks for your answer. I need a little bit more help, I tried it, but I don't know how it works...
    I found the html file and clicked on object to insert the html file, and then I took this code (see picture):
    when I go to site preview I see this:
    what must I do, step by step to upload this panorama? It would be great if you could help me. Thanks

  • How can I display photos from a facebook group in my Muse website?

    I am creating a website for a client, using Muse, and she wants to be able to upload photos into her website, and allow her users to do this as well.
    As an option, I was thinking of maybe adding a facebook plugin that will post photos that users add to her fb group.
    Is that possible to do?
    If not, can you recommend a way for me to set up a feature on her actual website that will allow her users to upload photos and display them on her site??
    Thanks!

    Hi,
    You will have to get the code from the http://developers.facebook.com which you can insert as HTML on the pages designed from Muse.
    Regards,
    Abhishek Maurya

  • How can I insert values from table object into a regular table

    I have a table named "ITEM", an object "T_ITEM_OBJ", a table object "ITEM_TBL" and a stored procedure as below.
    CREATE TABLE ITEM
    ITEMID VARCHAR2(10) NOT NULL,
    PRODUCTID VARCHAR2(10) NOT NULL,
    LISTPRICE NUMBER(10,2),
    UNITCOST NUMBER(10,2),
    SUPPLIER INTEGER,
    STATUS VARCHAR2(2),
    ATTR1 VARCHAR2(80),
    ATTR2 VARCHAR2(80),
    ATTR3 VARCHAR2(80),
    ATTR4 VARCHAR2(80),
    ATTR5 VARCHAR2(80)
    TYPE T_ITEM_OBJ AS OBJECT
    ITEMID VARCHAR2(10),
    PRODUCTID VARCHAR2(10),
    LISTPRICE NUMBER(10,2),
    UNITCOST NUMBER(10,2),
    SUPPLIER INTEGER,
    STATUS VARCHAR2(2),
    ATTR1 VARCHAR2(80),
    ATTR2 VARCHAR2(80),
    ATTR3 VARCHAR2(80),
    ATTR4 VARCHAR2(80),
    ATTR5 VARCHAR2(80)
    TYPE ITEM_TBL AS TABLE OF T_ITEM_OBJ;
    PROCEDURE InsertItemByObj(p_item_tbl IN ITEM_TBL, p_Count OUT PLS_INTEGER);
    When I pass values from my java code through JDBC to this store procedure, how can I insert values from the "p_item_tbl" table object into ITEM table?
    In the stored procedure, I wrote the code as below but it doesn't work at all even I can see values if I use something like p_item_tbl(1).itemid. How can I fix the problem?
    INSERT INTO ITEM
    ITEMID,
    PRODUCTID,
    LISTPRICE,
    UNITCOST,
    STATUS,
    SUPPLIER,
    ATTR1
    ) SELECT ITEMID, PRODUCTID, LISTPRICE,
    UNITCOST, STATUS, SUPPLIER, ATTR1
    FROM TABLE( CAST(p_item_tbl AS ITEM_TBL) ) it
    WHERE it.ITEMID != NULL;
    COMMIT;
    Also, how can I count the number of objects in the table object p_item_tbl? and how can I use whole-loop or for-loop to retrieve values from the table object?
    Thanks.

    Sigh. I answered this in your other How can I convert table object into table record format?.
    Please do not open multiple threads. It just confuses people and makes the trreads hard to follow. Also, please remember we are not Oracle employees, we are all volunteers here. We answer questions if we can, when we can. There is no SLA so please be patient.
    Thank you for your future co-operation.
    Cheers, APC

  • HOW can I make a .SWF default load after its first load?

    When you have the SAME parent API on every page of an (X)HTML website, can a .SWF tell itself to load from a default position when a website user navigates to different HTML pages?
    Here's my parent API as it stands:
    http://www.playingthepoet.com/
    HOW can you tell the .SWF to load from a default position once the .SWF has loaded a first time? AND from any page of the website, not just the Home page? This is an advanced .SWF networking issue. And I'm not sure if the best solution is a Javascript of if there's a direct AS3 programming solution.
    The blurs and fade-ins are a bunch of timer variables and timer event methods timer event listeners. I want that intro ONLY ONCE. And NOT every time a user changes HTML pages. Please help, and MANY thanks for your time!!
    NT

    Hi ,
    You can set a variable say "count" on stage composition ready -
    sym.setVariable("count" , 0);
    On stage click , you keep checking the value of this variable -
    if(sym.getVariable("count") == 5)
      sym.$("Symbol_2").show();
    //Here "Symbol_2" is the next button that you want to appear on screen(which is initially invisible) when the symbol_1 is clicked say 5 times.
    Now, on click of a button , you keep updating the variable count -
    var countnew = sym.getVariable("count");
    countnew = countnew+1;
    sym.setVariable("count" , countnew);
    Attaching the sample for reference.
    Thanks and Regards,
    Sudeshna Sarkar

  • How can I insert data into the standard CRM tables ?

    Hi Experts,
    Scenario----
    I need to download few attributes (fields) from SAP MDM to SAP CRM via SAP XI. I'm using the 'COMT_PRODUCT_MAINTAIN_API' API for it.
    The attributes(fields) that are present in the strucutres of API are downloaded into CRM system (by executing the Inbound proxy that is created based on the Message Interface created on XI) by calling the functions present in the API.
    And for those fields that are not present in CRM, but need to be downloaded into CRM, I'm creating the Set Type attributes in CRM, which get appended to the API.
    My query is:
    There are fields in CRM into which I need to insert the values. But they are not listed in the API. So, how can I insert(/download) the values into these standard fields?
    Regret the long description. Intended to be clear.
    TIA. Points will be awarded.
    Regards,
    Kris
    Edited by: Kris on Jul 21, 2008 8:00 AM

    he INSERT program throws exception???
    can any one help me how to insert data into tabel.I have never used the jdbc driver to access, but what do you think that the flag READONLY=true means? An insert is not a read.
    Kaj

  • How can I Insert data into my msaccess Database table

    Hello all,
    I am new to Java programming and I have problem that how can i insert name into my database table.
    The code which i have written is following:
    String filename = "d:/test.mdb";
    String database = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=";
    database+= filename.trim() + ";DriverID=22;READONLY=true}";
    Connection con = DriverManager.getConnection(database,"","");
    String s = String.valueOf(text.getText());
    int k =10;
    Statement st = con.createStatement();
    st.execute("create table Test123(name text)");
    st.execute("INSERT INTO Test123 values" +s);
    on the INSERT program throws exception???
    can any one help me how to insert data into tabel.
    Thanks

    he INSERT program throws exception???
    can any one help me how to insert data into tabel.I have never used the jdbc driver to access, but what do you think that the flag READONLY=true means? An insert is not a read.
    Kaj

  • In ADF how can i insert data in multiple table if they have foreign key

    I have started working on ADF and can anybody inform me in ADF how can i insert data in multiple table if they have foreign key,please?
    Thnak you very much.

    Hello,
    Still no luck.I am surely doing silly mistakes.Anyway,Here are my workings-
    1> student_mst (id(pk),studentname) and student_guard_mst(id(fk),guardianname)
    2> created EO from both of the tables,made id in both EO as DBSequence and an association was also generated.
    3> i made that association composite by clicking the checkbox
    4> i created 2 VO from 2 EO.
    5> put those VO in Application Module.
    6> dragged and dropped 2 VO on my jspx page and dropped them as ADF Form.
    Now what to do please?

  • How can I insert text in a photo?

    How can I insert text onto a photo?  Before Lion used Command T. Have not installed Page or Numbers. Have Microsoft for Mac.

    Open the photo with Preview and select ⌃⌘T.
    (Also, take a look at: Skitch)

  • How can I insert furigana in Japanese script?

    How can I insert furigana (small phonetic characters above the line) in Japanese script? Thanks!

    Note that, as described in a forum thread from August, you can use the Japanese CC version with English-language menus.  For ID versions CS5 through CS6, the same thread includes a link to Harbs' World Tools Pro, which adds many CJK features to western-language versions.
    David

  • How can I Insert pictures in the text? Is there another way besides attaching a file?

    How can I insert a picture in the text email instead attaching file?

    The feature to add images in tables is gone, ike about another 90 features that exists in Pages 09.

  • How can I insert Query in a Workbook

    Hi,
    I am new in BI 7.0. I am trying to insert a query in a workbook. but the tools button is not giving me the option to insert query like 3.X
    How can i insert query in 7.0
    Can anybody please give me the step by step instruction.
    Thanks in Advance

    1. Open BEx ANalyzer.
    2. Create new excel workbook by hitting the "New" icon in Excel.
    3. Logon to a backend BI system.
    4. Click the design mode icon.
    5. Put your mouse on a cell and insert a table.
    6. Assign a dataprovider to this table.
    7. Switch off design mode.
    Hope it Helps
    Chetan
    @CP..

  • How can I insert chapters in my idvd slideshow?

    I am making a slideshow for a family event, marking different times in my couin's life.  How can I insert chapters marking different pictures from various milestones? (i.e. birth, growing up, etc.)  Is it even possible to do that?

    Are you building this slidesshow from still photos in iDVD or in another app and exporting it into iDVD?
    If you're building the slideshow in iDVD from stills each still is a chapter and you can't have just the few chapters you'd like.
    If you build the slideshow in iMovie you can add chapter markers at the milestone photos.
    As Bengt mentioned iMovie HD 6 is best for end quality.  When you get the movie exactly as you want it all you need to do is close iMovie and drag the project file into iDVD as shown in the video screenshot below:
    Click to play video screenshot
    That will avoid iMovie encoding the movie and then iDVD reecoding it which will lessen the quality.
    If you add your chapter markers in the current iMovie version and export to Media Browser or to a folder inside your Movie folder you can drag it into iDVD from the Media Browser (which, I learned from Bengt, gives the highest qualtiy) and it will bring with it the chapters.
    If you export the movie not to the Media Browser but to the Movie folder the movie must be located in a subfolder of the Movie folder for the Media Browser to recognize it.
    As long as you have chapters added to your video file and iDVD's preferences are set to include chapters all you need to do is drag the video file into iDVD and it will automatically create a Scene Selection menu with the chapters.
    OT

  • I`d like to know how can i insert documents, xls/doc/pdf into iCloud and have them in my iPhone and my iPad. I just found one way, through ibooks, but i think it isn't a practical option.

    I`d like to know how can i insert documents, xls/doc/pdf into iCloud and have them in my iPhone and my iPad. I just found one way, through ibooks, but i think it isn't a practical option.

    Just use Drop Box instead.

Maybe you are looking for

  • R3D playback & Mac Pro 3,1 (2008 Model)

    Dear Premiere Pro users, I am in need of some technical insight, I am in a situation where I cannot afford a Red Rocket or Red Rocket X neither am I in a position to buy a new Mac Pro (as the new one isn't out yet nor can I afford it immediately). Bu

  • Fiscal year version 0 error

    Hi All, I am working in sandbox. While creating standard sales order, after entering material no. and quantity, I am getting error as version 0 is not maintained in fiscal year 2009. Please guide. Regards,

  • Parsing failed: TypeError: Cannot call method "replace"

    Hi, when i troubleshooting my collector, sentinel GUI message prompt following: Parsing failed: TypeError: Cannot call method "replace" of undefined; input: my release.js is following: Collector.prototype.initialize = function() { this.PARSER.getOffs

  • ORABPEL-04041

    Hello people I'm having a problem while trying Oracle BPEL 2.1.2 (JBoss Win32) is trying to insert delivery message. If I try with a delivery message smaller it works. Can anyone have the solution for this problem? The Database Version is Oracle 9i.

  • Get number of copies from print dialog

    Hi All, I am using javax.print API to display the print dialog, I am also able to successfuly print a document. My questions is how can get number of copies from the print dialog. I did log of googling, but no sucess...I have been trying from 1 day.