I need to insert a Java script on my page of muse. What is the best way to do it?

I have a site I built in Muse. I need to add a video (and not via youtube) to my Muse of the site as well as some Java script. I don't know how to do this. I have a Java script to make appointments and planning but it cannot be added to this page of Muse. Any thoughts? Thank you

(1) open your project Muse

(2) add mobile - detect.min.js as file to download

(3) change the path to the script (add assets / to the path):

(4) paste this code in the head of the page or master page

(5) add the remaining code in the page

Tags: Adobe Muse

Similar Questions

  • What is the best way to call the Java method in JSP in weblogic 10.3

    Hello

    What is the best way to call the Java method in JSP in weblogic 10.3?

    Thank you for your help in advance.

    Thank you
    Manu

    Hello Manu,

    If I understand your question, all you need to do is import the Java class you want to create / obtain an instance of it (if you're not calling a static method), then call the method, the entire interior of the JSP. It works the same way in Weblogic that it works in any JSP.

    Kevin

  • Using CS3, I want to insert a picture on the active page of my site folder. What is the best way to do it?

    Using CS3, I want to insert a picture on the active page of my site folder. What is the best way to do it?

    The current folder simply reflects what you have already inserted in your site.

    Save images to your Site Local DW folder from your graphical application or move/copy using the file manager of your operating system (Mac Finder or Win Explorer).

    In DW, use the Insert menu to insert images directly into your web page.

    Nancy O.

  • I'm doing a pdf to a file and I need to get the size of the file to be not more than 10 MB. What is the best way to do

    I'm doing a pdf to a file and I need to get the size of the file to be not more than 10 MB. Even when I save it, the image quality at least the file size is 10.9 MB. What is the best way to do

    Open the PDF in Acrobat Pro. Choose file > save as other > PDF of reduced size or PDF optimized (which gives you more options).

  • What is the best way to deal with the events of Qml-components of java script or C++?

    Hello

    Please suggest which is the best way to treat the Qml-components signal in the manuscript of java or C++.

    can read contacts in javaScript?

    When you want to make things more complex: Yes.
    QT made it much easier for me as a java developer, bb, but you will need to learn some basics.

  • What is the best way to store the RCS for an insert/update in this rec

    Oracle on Win 64 non-conteneur 12.1.0.2

    When a record in one table is inserted or updated, what would be the best way to store the RCS for this record in this folder.

    I thought of a line after trigger, but did not know if this trigger to store the current_scn would still fire that trigger again (recursive trigger).

    Someone at - he a good idea of what the best way is to do?  The devs don't want to store the pk and the SNA in yet another table...

    Yes, row_dependencies would be the best way to go.  But mgmt doesn't recreate all tables for this.

    3rd party applications retrieve data from tables (all data).  We are looking for a way for them to just pull what is new or updated updated since their last sweater.

    I suggest that you try again and give all OF THE REQUIREMENTS.

    You have rejected ANY answer given and he justified using 'hidden' on what knowledge management or the devs want or do not want to. Stop making us guess what are the requirements and constraints. If you want a real answer then tell us ALL the news.

    When a record in one table is inserted or updated, what would be the best way to store the RCS for this record in this folder.

    Solomon answered repeatedly. If you want to add a column to a table to store the then "best" SNA is to let the Oracle to do this for you automatically by using the DEPENDENCY LINE.

    As he says also re-create the table to add this clause will be MUCH MORE EFFECTIVE that everything THAT you can do it manually. It will be also more accurate because Oracle will fill the value ORA_ROWSCN with the SNA at the time the line was committed. You, as long as user, can't fill a column in function when a line is engaged since real VALIDATION belongs to a transaction, not the line or the trigger that you use.

    Yes - there are two drawbacks to this method:

    1. you need to re-create the table

    2. you cannot add an index to this "hidden" column

    The devs don't want to store the pk and the SNA in yet another table...

    Then? Who cares what the devs want to do? You want the BEST solution? Next, you will need to put aside personal preferences and determine what is the 'best' solution. Why it is important that certain dev wants to do this or not?

    OK, the problem of biz is now, 3rd party external users are an all-wheel drive large number of tables in the database via the API that we wrote.  That was obviously interrupted OLTP during the day.  To reduce to the minimum, we want for them just to extract data that has been inserted/updated since their last sweater.

    It is the definition of a "replica" DB Then why don't you consider a real replicated DB? You can use DataGuard and have replicated DB which is read only that can be used to generate reports. Oracle does ALL the work to keep ALL the tables in sync. You and your developers do NOTHING!

    We thought that store the RCS higher their last sweater would allow the API to extract only data with YVERT higher than their last data pull CHN.

    OK - except you keep rejecting solutions actually do. Ask you questions about the SNA stored in the same table, but then reject the solution that does this. And then you add your "devs" don't want to store the info in a new table either.

    Then your solutions must ONLY use the replication or Log Miner. The REDO logs have all changes, if you want to extract yourself. Replication (e.g., DataGuard) will use these logs for you to maintain a replicated database.

    We thought about it, but recreate all tables in production with ROWDEPENDENCIES as well as dealing with CF and other dependencies idea this was shot.

    Well you NEVER mentioned you "thought that" and rejected it. And you NEVER mentioned anything about FKs and other dependencies. What is FKs and other dependencies which prevents this working solution? Tell us! Give us ALL the information.

    Wouldn't a trigger AFTER LINE capture the commit YVERT?  Or is after really not after validation?

    No - a trigger has NOT one commit. A trigger runs as a step in a transaction. Validation applies to the entire transaction. Until you, or Oracle, issues a commit, there is NO "committed SNA" to be stored as ORA_ROWSCN.

    You can easily see that for yourself. Create a simple table with dependencies of the line and then update two different sessions.

    create the table emp_scn rowdependencies in select * from emp where rownum<>

    Select empno, emp_scn ora_rowscn

    Update emp_scn set work = 'b' where empno = 7499

    commit;

    The first SELECT statement will show you that each row has the same SNA.

    EMPNO, ORA_ROWSCN

    7369,70622201

    7499,70622201

    7521,70622201

    Now, do the update (but no commit), then SELECT it

    EMPNO, ORA_ROWSCN

    7369,70622201

    7499,

    7521,70622201

    Where is the value of 7499? This session will NOT see a value for the changed lines in the current transaction. Other sessions will still see the old value.

    Now do the validation, then SELECT

    EMPNO, ORA_ROWSCN

    7369,70622201

    7499,70622301

    7521,70622201

    7499 now has a new and different value than the other lines. It will not be this new value until the validation occurs.

    Yes, row_dependencies would be the best way to go.  But mgmt doesn't recreate all tables for this.

    Well, you got the answer you want. You ask the best way. Now, you say that you were told the best way. But now you don't like the answer.

    How is it our fault? Your question has been answered wasn't she?

    Here are the facts:

    1 oracle creates a history of changes - the REDO log files

    2. you can use Log Miner to extract these changes

    3. you can create your own change log by adding a log file of MV to your table.

    4. you can then write a custom code to use this MV log file to determine which rows to "reproduce".

    So far reject you all THE POSSIBLE solutions.

    Accept it or change the requirements to allow one of the solutions proposed to be used.

    Personally, if I HAD to use a customized solution, I would use a MV journal to record the ROWID of the lines that have changed (for tables ROWID cannot be changed). I would then extract the appropriate lines by pulling on the lines corresponding to these row ID.

    Even that has problems since a line can be changed several times and children lines can also be amended several times - these questions FK you mentioned.

    I suggest you read this entire thread on AskTom a dozen years ago. It addresses ALL these issues.

    https://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:16998677475837

    Then in your next reply on this topic give us a summary of where some things with your question and what help you further expect.

  • I just bought a LG chromebase desktop computer and I need Windows what is the best way to get

    I just buy it all in one computer and didn't know that it doesn't have windows. now I need to get windows but I can't afford windows 10 right now. can I get another program windows for it and how?

    Hello

    They are for

    Operating system
    Operating system Google Chrome

    http://www.TechRadar.com/au/reviews/PC-Mac/PC-Mac-desktops/LG-chromebase-1211679/review#

    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

    FOR INFO:

    If you need to buy Windows for any other machine:

    10 windows on the least expensive Windows operating system available, and is sold by Microsoft.

    To buy other systems operating previous try amazon.com because they do not come for free.

    And make sure your machine meets the system requirements for them and also the computer manufacturer provides support and drivers for the particular operating system.

    See you soon.

  • Urgent.What is the best way to insert '-'.

    Hi all, I have a table with a column col1 and these test values:

    col1
    ABC MANILA
    ABC CEBU
    ABC DAVAO

    The desired output must be
    col1_formatted
    ABC - MANILA
    ABC - CEBU
    ABC - DAVAO

    I use this code:
    SELECT    SUBSTR (col1, 1, INSTR (col1, ' '))
           || '-'
           || SUBSTR (col1, INSTR (col1, ' '))
      FROM test
    I just want to know if there is a better way. Help, please. Thank you

    Hello

    Try this and let us know.

    SELECT    replace(col1,' ',' - ')
      FROM test
    

    See you soon
    Kanchana

  • Java Script to perform a different Action based on the Orientation of the Image

    I need help creating a Java Script to perform a different action based on image orientation landscape vs. portrait. Can someone help me in this task.

    Thank you

    The Wookiee

    That should do it.

    docRef = app.activeDocument;

    If (docRef.width > docRef.height) doAction ("Action of landscape", "action group '");

    another action ('Portrait Action', 'Action Group');

  • Need some advice on the best way to do specialized source distribution

    I need to give a customer a labview block, they can use our material in their own labview code that will read the (encrypted) data net senor off the coast and the flow of data in a form usable output.  I built a vi that can be used in a loop, a bit similar to the block of canned labview data acquisition that can be used to acquire data from products OR.

    There are many sophisticated (and secret) algorithms going on in the background which make sense data and translate them into a usable data table, but also configure the hardware itself. Accordingly the only final vi I prepared to distribute the client makes use of Subvi about 20. Almost none of these subvis could be ideally be reconverted in plain code in main vi, nor what I want to do this.

    The rules of the game is the following: I want to give him the block I created to use its own code, without him to see what's happening inside the vi.  I can deny him access to the block diagram/s, no problem, but I don't want to give him access to the subvis, to use, or even to know their names - preference they would be hidden or otherwise pre-compiled. Preferably I would just give him the main block only, perhaps with some support files that would be entirely opaque to him.

    Looking for advice on the best way to go. There is an elegant solution to this problem? For example, it would be better to compile the block as a .dll file, and then write a wrapper vi any?

    Have you thought of creating a packed library? You can also password protect your code. You can delete the distributed code block diagrams. You can use a combination of the above as well.

  • Hello.  I need to buy 20 stock images for use on my site of companies.  I may be future needs, but for now, these 20 images will do.  What is the best to purchase option for me?

    Hello.  I need to buy 20 stocks usable images on my company's Web site.  I may be future needs, but for now, these 20 images will do.  What is the best to purchase option for me?

    Subscribe to the subscription to get ten free then buy the ten next to the subscriber rate. Then cancel.

  • I need two programs... Cc and cc pro Premier Photoshop this package do I need to choose? OBV the best way to do it? Pay monthly

    I need two programs... Cc and cc pro Premier Photoshop this package do I need to choose? OBV the best way to do it? Pay monthly

    Hi Mike,.

    You can subscribe on the plans of the unique app for the two apps separately, or else you can combine Premiere Pro single app plan with the plan of photography.

    Pricing plans and creative Cloud membership | Adobe Creative Cloud

    Kind regards

    Sheena

  • Can you help me to insert a JAVA script into an Adobe PDF form I created.

    I have never programmed in Java and need a Java script to insert in a calculation field in an Adobe PDF form that I created using Adobe Acrobat Pro DC.  This form will be the one that can be filled on the PC or printed and filled out manually.  The calculated field will display a zero unwanted when printing and I want it to be empty.  Another field will be a calculated percentage and displays an error when there is no divider; a similar problem, I want to be a Virgin and the person filing the form manually to calculate the field and write.  I don't have time to learn

    The Excel formula would be: If (Cell_1A = "", "", Cell_1A + Cell_1B)

    What would be the JAVA script in a dialog box "Simplified field Notation" or "custom calculation Script?

    Both of these things require a custom calculation. For the script of the division, you can use something like this:

    var a = Number(this.getField("Field A").value);
    var b = Number(this.getField("Field B").value);
    if (b==0) event.value = "";
    else event.value = a/b;
    

    For the conditional script, you can use this:

    var a = this.getField("Cell_1A").valueAsString;
    var b = this.getField("Cell_1B").valueAsString;
    if (a=="") event.value = "";
    else event.value = Number(a)+Number(b);
    
  • the best way to build a layer Anno... Anchored objects... Script?

    I did some research on this problem for a while and decided that a script may be what I need...

    I have a 100% manual. The next step is to add an Anno ("annotation" or "teacher) layer on the student text, to create the version of the book, which will be sent to teachers. This layer must be able to be easily toggled so that we can keep a Master file for the SE (Student Edition) and (teacher YOU Edition).

    The text of Anno is 100% Magenta inside a white box 90 per cent of fill with a light shade. The easiest way would be to just a layer separated from Anno above all. BUT... in the future when changes are made which change the length of the line, the Anno layer must be changed manually to match the text editing. We try to avoid this.

    It would be great if I could place the Annos as objects anchored in text and then move the objects anchored to their own layer... but I can't do it. I know objects can have turned on/turned off visibility in the layers palette, but it is heavy to turn many individual objects one at a time on many different pasta spread. (It is a book of 500 pages).

    Is there a way to create these anchored objects - many Anno objects through many differences - and in some sort link them together so that they can be turned on/off at the same time, or somehow that it would be easy to the toggle the tag?

    Other suggestions?

    Screen Shot 2015-05-13 at 12.34.31 PM.png

    Anno boxes can go anywhere on the page, even on the existing text.

    Screen Shot 2015-05-13 at 12.34.43 PM.pngScreen Shot 2015-05-13 at 12.34.57 PM.png

    better yet, you can use the conditional text in indesign feature, which was created specifically for this problem (I think that used official documentation actually editing teacher vs student of a document to illustrate how to use)
    https://helpx.Adobe.com/InDesign/using/editing-text.html#use_conditional_text

  • I need to... and what is the best - battery option MBPro 2010

    Hi, I bought 2nd hand a MBP 7.1

    MacBook Pro "Core 2 Duo" 2.4 13 "mid-2010

    Used for maybe 2 years without battery problem.  Recently showing "Battery of Service" in the menu of the power.

    (A) I imagine things or not / can the device run more hot if the battery begins to deterioriate?  It seems

    to get much more hot - very hot - for continuous moderate use lately.

    (B) what is the final consensus on the best options - price + quality - (first prize) out there if I want to replace this

    myself (I have no problem with doing the replacement - just overwhelmed by conflicting data on the numerous AMZ and)

    Options of EBay alternative out there.  Someone at - it a definitive overview of best in class (and Yes, I know Apple

    exclusive of the costs, but for another 200 I can almost buy another used good MBPro 2010-12... Prefer under $ 100 for

    a battery, as it should be in my humble OPINION.  Thank you

    Mike

    You will need to replace the battery. Of course it will run hot because the charging circuit runs probably 100% of the time with a defective battery.

    I have had excellent experience with Anker computer in several of my MacBook Pro.

    http://www.Amazon.com/Anker-replacement-battery-4200mAh-warranty/DP/B006ZGCH18/r ef = sr_1_2? ie = UTF8 & qid = 1461526800 & sr = 8-2 & keywords = a1278 & refinements = p_89% 3AAnker

    Q http://www.Amazon.com/Anker-Replacement-Battery-Li-Polymer-Warranty/DP/B00D780NN/ref = sr_1_1? ie = UTF8 & qid = 1461526800 & sr = 8...

Maybe you are looking for