Creating a scene without the use of Application

Hi all. I would like to start a JavaFX application without using the Application class. I have this:
import javafx.application.Platform;
import javafx.stage.Stage;

public class TestLaunch {
    public static void main(String[] args) {
        Platform.runLater(new Runnable() {
            public void run() {
                Stage stage = new Stage();
                stage.show();
            }
        });
    }
}
But when I run it I get this:

Exception in thread "main" java.lang.IllegalStateException: Toolbox not initialized
at com.sun.javafx.application.PlatformImpl.runLater(PlatformImpl.java:121)
at com.sun.javafx.application.PlatformImpl.runLater(PlatformImpl.java:116)
at javafx.application.Platform.runLater(Platform.java:52)
at nickdarcy.javafx.TestLaunch.main(TestLaunch.java:9)
at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120)

How to start without using the Application class?

Thank you, Nick.

P.S. It's using the latest version on OSX.

The Application class is not optional, you will have to use it.

What you try will not work because there is no thread of JavaFX to run something later, when there is no active Application.

Tags: Java

Similar Questions

  • Get the size of the screen without the use of DIsplay()

    Hello

    Is it possible to get screen width (or indeed any dimesion) without the use of Display.getWidth ()?

    I am trying to create a demo application that doesn't require code signing.

    I know that the code is now free to sign, but this is not the point in this case...

    Thank you!

    I managed to solve my problem by using:

    Graphics.getScreenWidth)

    and ignoring the notification "deprecated code" in Eclipse.

    Your link in combination with this post helped me to find a solution.

    Thanks for your help Simon!

  • without the use of union or union of all the

    Hello experts

    I have the following data below

    create the table t_me

    (

    first_one varchar (1000).

    second_one varchar (1000).

    third_one varchar (1000).

    week_needed varchar (1000)

    );

    insert into t_me values ('A', 'B', 'C', ' week 1 "');

    insert into t_me values ('A', 'B', 'C', ' week 1 "');

    insert into t_me values ('B', 'B', 'C', ' week 1 "');

    insert into t_me values ('C', 'A', 'C', ' week 2 "");

    insert into t_me values ('C', 'A', 'C', "3 week");

    insert into values of t_me ('B', 'C', 'B', "3 week");

    output desired without the use of union

    the characters first_one, second_one, third_one week_needed

    Week 1             A:                2               0              0

    Week 1             B:               1               3              0

    Week 1             C:               0                0              3

    Week 2             A:               0                1              0

    Week 2             C:               1                0              1

    Week 3             A:               0                 1             0

    Week 3             B:               1                 1              0

    Week 3             C:               1                 0              2

    Any help is appreciated. Thank you

    Hello

    If you want something that works in your version, you should tell what version it is, especially if this version is 12 years old.

    Here's a way to make the unpivot operator and rotate in Oracle 9:

    WITH cntr AS

    (

    SELECT LEVEL AS col_num

    OF the double

    CONNECT BY LEVEL<=>

    )

    unpivoted_data AS

    (

    SELECT week_needed

    col_num

    CASE col_num

    WHEN 1 THEN first_one

    WHEN 2 THEN second_one

    WHEN 3 THEN third_one

    AS END characters

    OF t_me

    CROSS JOIN cntr

    )

    SELECT week_needed, characters

    , COUNT (CASE WHEN col_num = 1, 1 END) AS first_one

    , COUNT (CASE WHEN col_num = END 2 THEN 1) AS second_one

    , COUNT (CASE WHEN col_num = END of the 3 THEN 1) AS third_one

    Of unpivoted_data

    GROUP BY week_needed, characters

    ORDER BY week_needed, characters

    ;

  • without the use of grouping sets

    Dear expert;


    I need help in the creation of this report without the use of the grouping sets. Any help is appreciated

    Week                                                          hours

    John                                                            24

    Tim                                                             1

    Mark                                                           16

    Adam                                                          10

    Subtotal (30/06/2013-06/07/2013) 66

    Adam                                                           7

    Subtotal (07/07/2013-08/07/2013) 7

    Month Total                                                   73

    Any help is appreciated. Thank you.

    see examples of data below. Thank you

    create table info_mech
    (
    
    req_name varchar(1000),
    beginwork_date date,
    endwork_date date
    );
    
    insert into info_mech values ('John', to_date('07/01/2013 08:00:00', 'MM-DD-YYYY HH24:MI:SS'), to_date('07/01/2013 15:00:00', 'MM-DD-YYYY HH24:MI:SS'));
    
    insert into info_mech values ('John', to_date('07/02/2013 10:00:00', 'MM-DD-YYYY HH24:MI:SS'), to_date('07/02/2013 19:00:00', 'MM-DD-YYYY HH24:MI:SS'));
    
    insert into info_mech values ('John', to_date('07/05/2013 11:00:00', 'MM-DD-YYYY HH24:MI:SS'), to_date('07/05/2013 21:00:00', 'MM-DD-YYYY HH24:MI:SS'));
    
    insert into info_mech values ('Tim', to_date('07/02/2013 08:00:00', 'MM-DD-YYYY HH24:MI:SS'), to_date('07/02/2013 15:00:00', 'MM-DD-YYYY HH24:MI:SS'));
    
    insert into info_mech values ('Tim', to_date('07/04/2013 09:00:00', 'MM-DD-YYYY HH24:MI:SS'), to_date('07/04/2013 18:00:00', 'MM-DD-YYYY HH24:MI:SS'));
    
    
    insert into info_mech values ('Mark', to_date('07/01/2013 08:00:00', 'MM-DD-YYYY HH24:MI:SS'), to_date('07/01/2013 15:00:00', 'MM-DD-YYYY HH24:MI:SS'));
    
    insert into info_mech values ('Mark', to_date('07/02/2013 10:00:00', 'MM-DD-YYYY HH24:MI:SS'), to_date('07/02/2013 19:00:00', 'MM-DD-YYYY HH24:MI:SS'));
    
    insert into info_mech values ('Adam', to_date('07/05/2013 11:00:00', 'MM-DD-YYYY HH24:MI:SS'), to_date('07/05/2013 21:00:00', 'MM-DD-YYYY HH24:MI:SS'));
    
    insert into info_mech values ('Adam', to_date('07/08/2013 08:00:00', 'MM-DD-YYYY HH24:MI:SS'), to_date('07/05/2013 15:00:00', 'MM-DD-YYYY HH24:MI:SS'));
    
    
    
    
    

    Hello

    It's a good start.  Is this really what you want to GROUP BY?

    Group of (next_day (beginwork_date, 'Sunday') - 7 - next_day (beginwork_date, "Saturday))

    Looks like always, which evaluates to-6 or - 13, according to was looking for beginwork_date is a Saturday or not.  If you want something which returns a different value for each week?  I would like to use

    TRUNC (beginwork_date + 1, 'IW')

    which returns the Monday of the week even as beginwork_date.  (Always ISO weeks start on Mondays.  The 'magic number' 1 in the above expression reflects the fact that your startw week 1 day earlier, on Sunday.)

    UNION, you try will work.  Finally, you want 3 different levels of rollup, so eventually you will need a Union of 3 tracks, each with a GROUP BY clause to different.  Here's a different approach, which gets 3 copies of the same data and totals in a single GROUP BY:

    WITH cntr AS

    (

    SELECT LEVEL AS grouping_level

    OF the double

    CONNECT BY LEVEL<=>

    )

    unaggregated_data AS

    (

    SELECT THE CHECK BOX

    WHEN c.grouping_level<=>

    THEN TRUNC (i.beginwork_date + 1, 'IW')

    Week END AS

    CASE

    WHEN c.grouping_level = 1

    THEN i.req_name

    END AS req_name

    24 * (i.endwork_date - i.beginwork_date)

    As schedules

    c.grouping_level

    Info_mech I have

    CROSS JOIN cntr c

    WHERE i.beginwork_date > = DATE ' 01-07-2013'

    AND i.endwork_date<  date="">

    )

    SELECT CASE grouping_level

    WHEN 1

    THEN req_name

    WHEN 2

    THEN "subtotal (' |)" To_char (week - 1, ' MM/DD/YYYY' -)

    || To_char (week + 6, MM/DD/YYYY")')

    ANOTHER "Grand Total".

    END AS name_or_week

    The amount (in hours) AS total_hours

    Of unaggregated_data

    GROUP BY week

    grouping_level

    req_name

    ORDER a week

    grouping_level

    req_name

    ;

    This assumes that, on a given line of the table, beginwork_date is in the same week as endwork_date.  The sample data you posted include 1 row when this was not true:

    insert into info_mech values ('Adam', to_date (July 8, 2013 08:00 ',' ' DD-MM-YYYY HH24:MI:SS), to_date (July 5, 2013 15:00 ',' ' DD-MM-YYYY HH24:MI:SS));))

    Not only are the two dates in different weeks, but beginwork_date is later than endwork_date.  I assumed that was a typo and changed endwork_date to July 8.  With this change, the result I got is:

    NAME_OR_WEEK TOTAL_HOURS

    ------------------------------------ -----------

    Adam                                          10

    John                                          26

    Mark                                          16

    Tim                                           16

    Subtotal (30/06/2013-07/07/2013) 68

    Adam                                           7

    Subtotal (07/07/2013-14/07/2013) 7

    Grand Total 75

    The last line is the total of all hours for all dates included.  In the query above, this means that the month of July 2013, because I've hardcoded the dates in the WHERE clause.  You can climatiqueLes WHERE clause for what you want, or omitted completely.

    Note how much more complicated the query above is that of the solution of GROUPING SETS below:

    WITH got_week AS

    (

    SELECT req_name

    TRUNC (beginwork_date + 1, 'IW') AS the week

    24 * (endwork_date - beginwork_date) AS hours

    Of info_mech

    WHERE beginwork_date > = DATE ' 01-07-2013'

    AND endwork_date<  date="">

    )

    SELECT THE CHECK BOX

    WHEN you GROUP (req_name) = 0

    THEN req_name

    WHEN you GROUP (week) = 0

    THEN "subtotal (' |)" To_char (week - 1, ' MM/DD/YYYY' -)

    || To_char (week + 6, MM/DD/YYYY")')

    ANOTHER "Grand Total".

    END AS name_or_week

    The amount (in hours) AS total_hours

    OF got_week

    GROUP BY GROUPING SETS ((semaine, req_name))

    (week)

    , ()

    )

    ORDER a week

    req_name

    ;

    GROUPING SETS will also be more effective.

  • Is there a way in which I can download iBooks content directly to iCloud by car through my device (iPhone or iPad) without the use of a Mac? If it isn't, I suggest and ask for an update which includes my needs inside. Thank you

    Is there a way in which I can download iBooks content directly to iCloud drive through my device (iPhone or iPad),without the use of a Mac?

    Otherwise, I suggest and ask for an update which includes my needs inside. Thank you

    See synchronize ePub, Books author iBooks and PDFs with iBooks and iCloud - Apple Support.

    TT2

  • OfficeJet Pro x476dw: wireless without the use of a router direct printing

    Is it possible to print directly to the printer without the use of a router?

    Hi Brad,

    Welcome to the Community Forum of HP.

    OFFICEJET PRO X 476 AND X 576 SERIES MFP User Guide said yes

    See Page 118

    Reference:

    All-in-one HP Officejet Pro X476dw

    Click on the thumbs-up Kudos to say thank you!

    And... Click on accept as Solution when my answer provides a fix or a workaround!

    I am happy to provide assistance on behalf of HP. I do not work for HP.

  • I am facing problem in the use of applications of windows8. I am not able to use even a single App. What shoulg do. ?

    I am facing problem in the use of applications of windows8. I am not able to use even a single App. What shoulg do. ?

    Hi Shubham,

    You receive an error message when you try to use the Apps in Windows 8?

    Exactly how have you connected to the computer (Microsoft Account or Local account)?

    follow these steps to solve the app suggested you nuisance.

    Method 1:

    Run applications troubleshooting

    I suggest you to download and run the troubleshooter modern UI App.

    http://download.Microsoft.com/download/F/2/4/F24D0C03-4181-4E5B-A23B-5C3A6B5974E3/apps.diagcab

    Method 2:

    I suggest you follow the steps in the article. Here is the link for your reference.

    What to do if you have problems with a soft

    http://Windows.Microsoft.com/en-GB/Windows-8/what-troubleshoot-problems-app

    Method 3:

    I suggest that you check the proxy settings because if you use the Proxy Server, then the Apps in Windows 8 will not work.

     

    a. click on thegear box in the upper right corner in Internet Explorer.

    b. click onTools and then click Internet Options.

    c. click on theConnections tab, and then click LAN settings.

    d. Uncheckuse a proxy server for your LAN .

    e. clickOk.

    Hope the helps of information provided.

  • I would like to know how to download and install a trial version of the stand-alone version of Lightroom, without the use of the cloud.

    I would like to know how to download and install a trial version of the stand-alone version of Lightroom, without the use of the cloud.

    For some reason, since I work for most of my time in the areas where it is very difficult if not impossible to have access to the internet, I would like to have a standalone version of Lightroom to work on a photo library on my Mac HARD drive.

    The only option that I find on the Adobe site, try first to install CC.

    I'll be grateful for any help.

    Gianluigi

    Kindly try to Install Photoshop Lightroom from here.

  • What is the best way to correct the registry errors without the use of a registry cleaner in XP?

    I am sorry to raise this issue that so many people who have asked me.  I read pages and pages of discussions on the MS forum on this subject, and without exception, all the experts said Microsoft registry cleaners are completely unnecessary and that junk in the registers has no performance impact at all.  Instead, they say, to do x, y and z.  I am running Windows XP on my desk for five years, and gradually, he got so slow it's almost unbearable.  It takes 10-15 minutes just to start, and sometimes it takes 2 minutes or more just to open a window of browser (IE8) or go to the previous page by using the arrow to the left.  Before you tell me all the things it could be, please let me say that:

    1. my PC has not always been this slow!  It is getting worse.

    2. all my Windows software is up to date.  I have automatic updates on.

    3. I have a lot of disk space, almost 75% of free space on a hard drive of 80 GB.

    4. my PC is free of viruses, spyware and Trojans.  I have McAfee antivirus running and I also sometimes run Malwarebytes and Trojan Killer, because they always find things that don't have McAfee.

    5. I defragment my hard drive on a regular basis.

    6. I regularly delete all my temporary files by using the Windows Disk Cleanup utility.

    7. I have very little, if any "Add-ons".  No toolbar Yahoo or Google (or Bing!).

    8. I removed nearly every program that I start, so that they are not running in the background.

    9. I uninstalled all the programs that I don't use.

    However, I still have a slow ever-more computer.  Sometimes, when I see ads on TV to increase the speed of my PC, I download the 'free' software, and they claim to find hundreds or thousands of "registry errors.  When I look at the newspapers, I see many entries in registry for 'Netscape' and 'Google Earth', which I uninstalled years ago, as well as entries for the videos that I downloaded, seen once, and deleted a long time ago.

    So, what's the problem?  If it's not related to my registry (which Trojan Killer says has more 6 000 entries!), what else could be?  I would appreciate greatly any advice you can give, because there are dozens of companies on their touting their registry cleaners and the uninstall (for a price) programs, and after reading reviews of the MS MVPs, I'm skeptical of their claims.  Thank you.  :)

    I can't disagree with a lot of things have already been said.

    I'm willing to accept that your machine does actually takes 10 to 15 minutes on the clock. It's completely absurd.

    Some people call your "Windows Rot" problem. Becomes just the slower windows over time. It is a collection of things that are happening in the background. Yes I believe that the register contributes. Using a registry cleaner is not a "magic" solution But it can help a little.

    The PC care program/process you described is above average.  I suggest you add CCleaner. Disk Cleanup is not bad, CCleaner is better, cleaning of other stuff which does not resemble the DC. It won't be a significant difference because disk space is not your problem, but it will help a little.

    'Play' with the registry is VERY risky. If you decide to go ahead, I would say that first make you a copy of the full image backup using a utility that can be started and run from a CD/DVD. Just in case the registry cleaner breaks of your machine.

    Registry cleaners is that they take a "best estimate" to what is no longer necessary. Sometimes they think wrong. And each vacuum cleaner will clean slightly different sets of places.  If the tool does not provide a way to back up the registry before you start cleaning, do not use it. He is not careful enough.

    If vacuuming offer 'levels' of cleaning, enjoy. Open for more aggressive cleaning, with resetting and long series of normal use between cleanings.

    You are looking for a tool which also makes registry "defragmentation". The registry is a database that get disorganized by additions and deletions. Defragmentation will be re - organize and get rid of a 'lost' space, making it the smallest file, afterwards faster to read.  It is not something you need to do frequently, but since you've never done it in 5 years, it would help, after cleaning registry.

    Another place to find CPU and RAM wasted resources is Windows Services. These are small programs that start at boot time. They run in the background and provide support services to all applications or specific applications.  Many applications services are running even though you don't really need them. You can find information on which you can set by Googling for 'Windows XP hardening'. There are a lot of sites with good information. They call it hardening because by disabling unnecessary stuff, you leave less possible openings for the "bad guys" to the attack.

    Ultimately, I think your best bet will simply bite the bullet and re - install windows and all your applications. It's the best way to restore your computer to almost any performance fees factory. (It is not exactly factory fresh because you need to add a ton of Windows updates).

    Before you re-install, do copy image 1 or more full backups. At least one must be done using a tool that will easily allow you to extract the files. You data backup files separately to make it easier to restore the reinstallation. IE, copy it to a USB key.

    Many "experts" actually expect to, and do, re - install windows every 6-12 months!  I think it's a bit exaggerated, but they swear by it.

    Once you do your re - install, create a copy of the magnified image
    Install a firewall application (before the windows updates)
    Once you do all updates of windows, create a copy of the magnified image
    After that you re-install all your apps, create another copy of the complete picture.

    In this way, in the future, you have more current points to restore your computer to. It will reduce the time you spend to get back to the current configuration.

    On a 5 year old XP machine, you have probably 512 MB - 1 GB of RAM. You might also consider taking in the shop (or DIY) and bump the RAM up to at least 2 GB or better still max out.  The current versions of the applications use much more memory than they did 5 years ago. Even XP will be since he has been seriously corrected since then.

  • How to create a scene of snow using PSE10

    There are many solutions on YouTube using PHOTOSHOP. but there is no available in post-secondary studies

    There are solutions to create "falling snow" on the EPS.

    I would like to replace a scene from summer to winter scene, with lying snow, in PhotoShop ELEMENTS 10. Example (only one) on YouTube, with the House, is quite unrealistic.

    Can someone point me in the right direction.

    Thank you

    J

    How to add snow to the Photos in Photoshop Elements

  • How downgrade CC license to enable the use of applications CS6?

    Hi all

    We had 4 MAC Pro to our marketing service company (every 2 years and more). We use Adobe CS6 application version, we have 4 licenses of it on each of them.

    Our marketing recently hired new teammember so we had to buy additional Mac of course marketing to purchse it with all the required applications Adobe (Creative Suite 6 Std). Unfortunatelly in the meantime since the purchase of the last MAC Adobe has changed the license to the SA model. OK, then what? Is not serious. -Have you thought I bought the creative cloud composition and installed on the Mac.

    But the head of the marketing began to claim that the CC of the application version is not compatible with the format of the CS6 files and that they can't use it as a file/project is mainly created, processed and modified by several members of the team using CS6.

    So the question now is:

    HOW CAN I USE THE CC LICENSE APPLICATIONS TO INSTALL AND USE CS6?

    Just for accuracy it further - I don't want to use both versions in parallel at the same time. I don't want to use them in parallel. I'm happy to pay the monthly subscription of CC but want to use only the CS6 (which isn't officially be purchased as a product, at least in EU).

    Thanks for any advice.

    Previous through Cloud http://helpx.adobe.com/creative-cloud/help/install-apps.html#previous

    - and if you have Cloud application manager 2015 https://forums.adobe.com/thread/1906752 of difference

  • AE CC14 creates a composition without the sequence first inside!

    There, hell

    Since the next generation of Adobe out our hole Creative Suite is to ventilate for no rational reasons...

    However, we work with a whole group with many parallel projects and would not be updated until we have finished our real projects because of the same issue, there was last year. Open files with new version caused you were not able to open the file with an older version... (speaking of the first).

    My question:

    I'm still working with first CC 2014 and after effects CC 2014. I import my first sequence in my AE project. Now, I want to create a demo of my sequence in it. There are many ways to do it. So there are for example the icon of the model, or you can do it with the menu bar.

    It creates the composition but without the sequence in it. I do not use anything. Not all fonts and even no animation. Import of simple dynamic links (not import itself, it is imported, but it does not appear in the model. Cannot move a drop, can't do anything with it).

    Bildschirmfoto 2015-06-19 um 10.00.02.png

    What's wrong? He worked for more than a year.

    Now the update is online, and because of these 'new' problems in CC14 you're forcing the user to udate to CC15! It's the feeling I get when suddenly the day of the liberation of CC15 my entire deparquement Suite CC14 is crush every 20 minutes just without reason... without giving me an option for an error report.

    On my Mac:

    iMac 2012

    3.4 GHz Intel Core i7

    16 GB 1600 MHz DDR3

    NVIDIA GeForce GTX 680MX 2048 MB

    OS X 10.9.4 (13E28)

    Would be nice, if there is a rational solution for this.

    I had this problem again. And because all members of the support team supports so favorable, here's a way you can fool AE.

    Create a solid. Then right-click on the solid and select "replace images.

  • Creating simple shapes without the wizard

    Hi all.

    I've been hitting my head against the proverbial wall for days trying to find a way to do something that is probably very simple.

    First of all, my features. I work in Acrobat X on a Windows 7 PC. My forms were created in InDesign CS5.5.

    I'm working on the creation of a couple of forms for our sales team to deliver to our customers. We would like to see the forms digitally to fill, recordable and printable for users with reader. I know it's all doable with extended rights. No biggie.

    My problem is I want to use the submission tools automatically integrated in the Acrobat forms Wizard. I'm not at all a "submit" button. Our workflow desired is that our customers complete the form and then either print sign and deliver via mail or by fax (a form requires a signature, and our customers aren't saavy enough to use digital signatures) or for forms that do not require signatures, fill, save, and email back to us manually. All is well with the form design process, except that as soon as I use the forms tools in Acrobat to fine-tune my form, it adds functionality to submit the form to my PDF (the dreaded purple bar). I don't even have to distribute the form for this purpose. It seems to be applied as soon as I use all forms of editing tools.

    So my question is how can I change my form so that it is functional without the button submit the form applied? I did several searches on these forums and related issues found, but have not found a solution that will help me here. I have LC and am ready to dive in there, if that's what is required, but it would take a bit of research on my part because I've never used.

    Any thoughts would be appreciated.

    Michelle

    I see what you're saying. Note the Send button in the document message bar purple forms should appear for a form not distributed when you image previewed in form editing mode. It will appear not for users who fill out your form, or when you exit the form editing mode.

  • Selection of data with or without the use of cursors in procedures

    Hello

    If we are able to access the data without using a cursor as shown below in a way:


    CREATE OR REPLACE PROCEDURE tmr_exception
    IS
    x LINK_STATUS. COUNTRY_CODE % TYPE;

    BEGIN
    SELECT COUNTRY_CODE LINK_STATUS x;

    EXCEPTION
    WHEN TOO_MANY_ROWS THEN
    dbms_output.put_line (' too many lines).
    WHILE OTHERS THEN
    dbms_output.put_line ("' another problem");

    END tmr_exception;
    */*

    So what is useful in the use of explicit cursors?

    (1) SELECT... Return exactly 1 row. If you try to deal with several rows of data, you will need another construction.

    (2) A SELECT... INTO opens a cursor. He has simply done implicitly. Just like

    BEGIN
      FOR emp_cur IN (SELECT * FROM emp)
      LOOP
        <>
      END LOOP;
    END;
    

    Opens an implicit cursor.

    (3) no implicit and explicit cursors these days are generally useful when you do treatment in bulk and you want to extract the data in a local collection.

    Justin

    Published by: Justin Cave on October 9, 2010 20:17

    (4) oh and you would never have in real code catch an exception and do nothing else than calling DBMS_OUTPUT. It's a quick way to produce a totally unmanageable code.

  • Adobe Captivate 7 - How to create a custom without the function table of contents table of contents?

    Hello

    I want to create a table of contents in my E-Learning-project because the automatically generated TOC of Adobe Captivate 7 includes all the features I need to check for example chapters which are the groups in the film strip.


    I use master slides in my project.
    The table of contents, I need must be designed and programmed as follows:

    1 intro / title slides

    9 chapters

    The progress of the work - 3 status - all chapters should be moved by symbols in the table of contents

    Symbol 1: chapter has not yet begun (just an empty box)

    Side 2: chapter is work in progress (a square with a green triangle inside)
    Side 3: chapter is finished that means that all of the slides in this chapter are read (the square is filled with a green square)

    All the chapters and Points to the table of contents must be clickable (links) maybe with a mouse over effect (change in colour of mouse) and should start to the first slide of this chapter.

    The chapter which is open must be written in bold with one blue color, others who are not open to be written in the normal font with a black color

    I think it's a little complex, but solutionable.

    I think I need to create three symbols of the buttons form, advanced actions that tend to fade and fade out named symbols.

    Is there someone who can describe the process of creation? Where should I place all the functions, actions and so on? On the slide master?

    Thank you for the answers!

    The only thing I can say about it is that I build it in Flash, so it could be dynamic and reusable.

    If you take the time to build a PC inside it only works for one project. Certainly you would have a base to work from, but for a another edition project wouldn't be fun.

    If you need HTML5, I think it would be much more difficult to build a dynamic table of contents.

Maybe you are looking for

  • Satellite A660 - Photos of backlit keyboard

    You need a backlit keyboard in his A660? Please post some pictures. I'm looking for this keyboard, but it is almost impossible to get one in Europe.

  • Optimus and Blackscreen before Windows

    Everyone knows the same problem? With Optimus or active Quadro, my system is hanging around 15-20 s after the windows on the screen, on a gray loading screen. It is really slowing down my boot time I got an SSD for my system. Boot times are fine and

  • Dell Poweredge 2950

    Buonasera, few need di UN supporto fuori co sul server in oggetto. It SN e 35R3S3J, he di message error, rilevato dai log della macchina e Pile on the controller 0 (no God of health) A chi can rivolgerci? Grazie

  • CSQ or SKILL information in IP phone Agent

    Hello I use IPCC Express Enhanced 4.0.4 CSQ 9 and 10 skills Is possible to see agent what the CSQ or skills has been chosen by the appellant using the IP with ADC 6.1.4 phone Agent you I want to have the same information displayed in Figure 5. Cisco

  • AAA? locks on console

    I play with lock and key on a 3750 EA1 IOS 12.1 (19). The console works fine (and there is no AAA or ACL on the switch) until I have add the following commands: ! AAA new-model AAA authentication login TestLK group Ganymede + local AAA authorization