How can I link to a certain scene in another project?

Hi,
I would like to make a add an advanced action to a button that links to a cetain scene in another project.
as an example:
On the last scene of project B I want to link back to project A scene 3. This is back to where the initial selection to open project B was made.
I would highly appreciate your Help!!!
Thanks in advance,
Stephanie

Hi Lilybiri,
no I am not used to Storyline!!!!
I just dislike talking about a slide, as we are not working with PPT!!!
An e-Learning module with interactivity should not be compared to slides as in PPT, I think as there is much more to it!!!
Thanks for your hint to the article. I think this will help!!!
I will know in a couple of days
Stephanie

Similar Messages

  • How can I link from one flash document to another with buttons?

    Hi,
    From the question above, you can tell that I'm very new to flash, especially with scripting. Total noob.
    I watched my instructor's videos and I'm still stumped. He didn't explain it very well.
    For starters, I am using Flash CS6, but I clicked on AS1.0 and AS2.0 from the drop down mention in the actionscript window for the script below, since that is what my instructor used.
    What I have now are various pages I've already created in flash that are different pages in my website, including a splash page with an enter button.
    For example, I want the enter button to link to another .swf or .html file when it is clicked. This file will be the main page.
    I tried using this script that my instructor mentioned in the video on the button layer:
    on (release); {
        getURL("page1.swf");
    the "page1.swf" file is already in the same folder in my computer as my splash page and I even imported it to the library of my splash page.
    From my instructor's video demo, that should be apparently all that is needed.
    But I cannot get this to work.
    I tested the file and this is what flash comes up with:
    In the output tab:
    ReferenceError: Error #1065: Variable TCMText is not defined.
    In the compiler errors tab:
    Scene 1, Layer 'Layer 28', Frame 1, Line 1
    1180: Call to a possibly undefined method on.
    Scene 1, Layer 'Layer 28', Frame 1, Line 1
    1120: Access of undefined property release.
    Scene 1, Layer 'Layer 28', Frame 1, Line 2
    1180: Call to a possibly undefined method getURL.
    Any thoughts? My instructor also recommended that I embed the .swf into an .html, but he obviously didn't tell us how to do that!
    Also, why doesn't script assist work with AS3?
    Thank you so much!

    Okay so I changed it to AS1/AS2.
    Now it says this:
    Scene=Scene 1, layer=Layer 28, frame=1, Line 1
    Mouse events are permitted only for button instances
    Scene=Scene 1, layer=Layer 28, frame=1, Line 4
    Syntax error.
    I am very confused.
    Also, since all my other pages are in AS3, is there some way I can use another script in AS3 that accomplishes the same task?
    Can someone please provide me with the correct script to use?
    Thank you so much! I feel that people here are much more responsive than my instructor is! Thank God for this forum!

  • How can I link a web app item to another via Next link

    I would like to add a next link and previous link on a web app detail layout. Then people can scroll through the detail layout items without going back to the list view.
    I'm creating a portfolio with a description of the project details and links to external websites. There is no tag for that purpose.
    Any suggestions? I'm a bit new at custom web apps and editing the layouts with css.

    Hi,
    you would have to create 2 additional custom fields as text (string) field types and name them something like, "next item url" and "prev item url". Then you would have to enter the next and previous item url manually for each individual web app item. You can include the new tags in the detail view, something like <a href="{tag_prev item url}">Prev</a> and <a href="{tag_next item url}">Next</a>.
    Hope that helps.
    Nicole - BC Gurus

  • How can I link to a jsp page from another jsp page within websphere portal?

    Afternoon all,
    I have a websphere portlet which displays a jsp page. I want to put a hyperlink on the jsp page which when clicked will open another jsp page.
    Does anyone know how to do this?
    Thanks,
    Alex

    The anchor tag is the correct one for generating clickable links.
    <jsp:forward> is for transferring control at the server end. Its when you decide to change which page you want to show the user. ie check user is logged in. If not then forward them to login page, else display current page.
    I tried that. It does open the jsp page
    but the place and page links in the portal theme get screwed up.Whats mucked up about them? Do they point where they shouldn't?
    You might try using a <base> tag to set where relative links are resolved from.
    Cheers,
    evnafets

  • How can I link 1 movie file with several logic projects?

    Hi all,
    I've been  working on the music for a film with a colleague of mine and are sharing logic files via dropbox. 72 cues had to be altered for logisitical reason to work in someone else's studio for the final mix. Since I had a copy of the movie on my machine and my colleague had a copy on his we thought that if we put our movie into the root directory of our logic project's folder then the movie would automatically load up with the projects after we shared them via dropbox. We checked to make sure that both movies had the same filename. Unfortunately this did not work and we had to then reassociate 72 cues individually with each logic project. With such limited time to prepare the cues for the final mix this really took too much time.
    Is there any way in logic (9.1.8) to associate 1 movie file with a number of logic projects quickly, without having to open up the project and select open movie?
    kind regards
    /mischa

    Seems to me that if you both had the movie file in the same location on both of your drives (eg on Macintosh HD at root level, in no other folder) then all the project files would search for this common path and find the file.
    The problem arises when there is even a small difference between path names.
    Unfortunately, this won't help you at this point as all the project files already are associated with unique file paths for the movie. By now, you've probably already done it one by one - but maybe for next time....?
    There's no bulk or quick way to do this.

  • How can I link EntityClass properties to GUI compoments?

    Contact.java
    package pub.lne.entidades;
    import java.io.Serializable;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    import javax.persistence.GeneratedValue;
    import javax.persistence.GenerationType;
    import javax.persistence.Id;
    import javax.persistence.Table;
    @Entity
    @Table(name = "CONTACT")
    public class Contact implements Serializable {
        private static final long serialVersionUID = 1L;
        @Id
        @GeneratedValue(strategy = GenerationType.IDENTITY)
        private Long id;
        @Column(name = "NAME")
        private String name;
        @Column(name = "PHONE")
        private String phone;
        @Column(name = "EMAIL")
        private String email;
        public Long getId() {
            return id;
        public void setId(Long id) {
            this.id = id;
        public String getName() {
            return name;
        public void setName(String name) {
            this.name = name;
        public String getPhone() {
            return phone;
        public void setPhone(String phone) {
            this.phone = phone;
        public String getEmail() {
            return email;
        public void setEmail(String email) {
            this.email = email;
    ContactView.fxml
    <?xml version="1.0" encoding="UTF-8"?>
    <?import java.lang.*?>
    <?import java.util.*?>
    <?import javafx.scene.*?>
    <?import javafx.scene.control.*?>
    <?import javafx.scene.layout.*?>
    <AnchorPane id="AnchorPane" prefHeight="308.0" prefWidth="433.0" xmlns:fx="http://javafx.com/fxml" fx:controller="pub.pre.vistas.ContactViewController">
      <children>
        <TextField fx:id="txtName" layoutX="121.0" layoutY="102.0" prefWidth="200.0" />
        <TextField fx:id="txtPhone" layoutX="121.0" layoutY="133.0" prefWidth="114.0" />
        <TextField fx:id="txtEmail" layoutX="121.0" layoutY="162.0" prefWidth="200.0" />
        <Label layoutX="69.0" layoutY="105.0" text="Name" />
        <Label layoutX="69.0" layoutY="136.0" text="Phone" />
        <Label layoutX="69.0" layoutY="168.0" text="Email" />
        <Button fx:id="btnSaveContact" layoutX="122.0" layoutY="218.0" mnemonicParsing="false" onAction="#btnSaveContactAction" text="Save Contact" />
      </children>
    </AnchorPane>
    ContactViewController
    package pub.pre.vistas;
    import java.net.URL;
    import java.util.ResourceBundle;
    import javafx.event.ActionEvent;
    import javafx.fxml.FXML;
    import javafx.fxml.Initializable;
    import javafx.scene.control.Button;
    import javafx.scene.control.TextField;
    import javax.persistence.EntityManager;
    import javax.persistence.EntityManagerFactory;
    import javax.persistence.Persistence;
    import pub.lne.entidades.Contact;
    public class ContactViewController implements Initializable {
        @FXML
        private ResourceBundle resources;
        @FXML
        private URL location;
        @FXML
        private Button btnSaveContact;
        @FXML
        private TextField txtEmail;
        @FXML
        private TextField txtName;
        @FXML
        private TextField txtPhone;
        private Contact contact;
        @FXML
        void btnSaveContactAction(ActionEvent event) {
            //setting values
            contact.setName(txtName.getText());
            contact.setPhone(txtPhone.getText());
            contact.setEmail(txtEmail.getText());
            //saving
            EntityManagerFactory emf = Persistence.createEntityManagerFactory("PersistenceUnit");
            EntityManager em = emf.createEntityManager();
            em.getTransaction().begin();
            em.persist(contact);
            em.getTransaction().commit();
        @Override
        public void initialize(URL url, ResourceBundle rb) {
            contact = new Contact();
    The Question
    How can I link the Contact.java properties to the ContactViewController.java components (In this case the textfields). In order to automatically update the Contact properties or viceversa.
    I dont want do this:
    contact.setName(txtName.getText());
    and
    txtName.setText(contact.getName());There is any way to do it automatically ?
    If yes, please correct my example in this post with the best way.
    Edited by: m_ilio on Jun 5, 2013 8:44 AM

    Have a look at all the JavaBean***Property classes.
    You have to wrap you entity class and for each usual getter/setter you will have to provide an additional property in the JavaFX style with the help of the builder class.
    http://docs.oracle.com/javafx/2/api/javafx/beans/property/adapter/JavaBeanStringPropertyBuilder.html
    Then you can do (bidirectional) binding.
    For bidirectional binding, also notice this from the docs:
    If the Java Bean property is bound (i.e. it supports PropertyChangeListeners), this JavaBeanStringProperty will be aware of changes in the Java Bean. Otherwise it can be notified about changes by calling fireValueChangedEvent().

  • I just bought a 2gb shuffle and i have more music than it can hold in my itunes acct. How can i sync only the certain playlists on the shuffle?

    I just bought a 2 gb shuffle and I have more music in my itunes than it can hold.  How can i sync only the certain playlists on the shuffle?

    Yes. Configure your Shuffle to sync only selected playlists from under its Music tab.  This article should be able to assist you with this.
    http://support.apple.com/kb/ht1719
    B-rock

  • How can i link my E-mail with my iPad in a way that i can delete my messages from my email inbox server not from my iPad inbox only?

    How can i link my E-mail with my iPad in a way that i can delete my messages from my email inbox server also not from my iPad inbox only?
    Because when i delete emails from my iPad inbox, it will be deleted on my iPad only but when i check my email inbox server from the browser its not deleted!
    So how can i set up this link so when i delete any email from my iPad it will be deleted from my email inbox server also?

    Hi Pierrot10,
    Insert your backup disc (or plug your external hd), then open Mail.
    In the File menu, click *Import Mailboxes* and follow the steps for a *Mail for Mac OS X* transfer.
    Navigate to your CD/DVD's or external HD's backup and hit "OK".
    This should create a new "Imported" folder in Mail with all your old messages in it, that you can then rearrange as you wish, creating new mailboxes etc.
    Axel

  • Hi my name Abukar I had an old apple ID and I had problem with signing it so I decided to make a new apple ID with a new email address, so how can I link with two apple IDs and how can I get back all my previous apps that I purchased before, I cloud stuff

    Hi my name Abukar I had an old apple ID and I had problem with signing it so I decided to make a new apple ID with a new email address, so how can I link with two apple IDs and how can I get back all my previous apps that I purchased before, I cloud stuff

    It is not possible to do that.
    Allan

  • How can I link contacts (e.g.. Facebook and Exchange) in Mountain Lions Contact App

    After I installed ML and setted everthing up, everthing is fine. On my iPhone and iPad as well as on the Mac the contacts are there. Alle contacts with same Name / Email are linked. But some, where name is not 100% matching are not. On iPhone and iPad i can link them manually but this linking is not synced between the devices. Well anyway, this is not a problem. Then i tried to link the respective contacts in Contact App on the Mac. There seems to be no option to do that. How can I link contacts on the Mac?
    Thx
    Jan

    Do you think it's acceptable if I simply put the contact email address without a link so users can just look at it and then copy and paste into their own web client/browser?
    You have to be a masochist to consciously publish an email address on a site anymore.   In a matter of weeks or months, you will get hit with so much spam mail, you won't want to open your inbox.
    Use a form-to-email-processing script in PHP, ASP or whatever programming language your server supports.  Find one that hides your email address and has good spam prevention built-in.  It may take you an entire day to set-up your first contact form but it's worth it.  Otherwise, use a service. See links below:
    Form-mailer.php script from DB Masters
    http://dbmasters.net/index.php?id=4
    Forms to Go from Bebosoft (script generating software)
    http://www.bebosoft.com/products/formstogo/overview/
    Wufoo.com (on-line form service)
    http://wufoo.com/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web-design.blogspot.com/

  • How can I link to a chapter in iBooks Author? I just want a link to the chapter, not to a bookmark

    How can I link to a chapter in iBooks Author? I just want a link to the chapter, not to a bookmark.
    But something like: "This was explained in Chapter 5." Where "Chapter 5" is a clickable hyperlink.
    Also, when I add a new chapter before chapter 5 this should automatically change to:
    "This was explained in Chapter 6."
    I could use a bookmark (e.g. to the first word in Chapter 5) but this would be not right.
    Gerriet.

    Use "Link to: A file" in the link inspector.

  • How can i link a video to a text file on iPad2

    how can i link a video to a text file on iPad2

    Alrite mate,cheers for replying....You are right,my mistake,,It is Frame and not Panel...therefore Frame 1 is home and Frame 2 is Add User. Frame 1 has a button called Add User,which if i press it should run and open up my Frame 2. I can run Frame 1 and 2 seprately and it works fine,but Now i want to link them. So When i run Frame 1 at first i only get Frame 1,but then when i press Add User button my program should start Frame 2.Resuting in 2 Frames opened. I dont know how to link them.

  • How can I link .svg files in the .html code?

    How can I link .svg files in the .html code?

    I use the FileBrowser app by Stratospherix to do this.  I can watch / stream my movies on my iPhone / iPad from my hard drive connected to my Airport Extreme.  I can access all the files on that hard drive as well. 

  • How can I link specific cells in two different speadsheets so the data from a specific cell in spreadsheet A automatically updates in a specific cell in spreadsheet B. It works in Xcel- Any ideas?

    How can I link specific cells in two different tables so the data from a specific cell in table A automatically updates in a specific cell in table B? It works in Xcel- Any ideas?

    (1) your title ask the way to link different spreadsheets.
    In Numberland, a spreadsheet is an entire document.
    There is no way to link different documents.
    (2) in the message, you ask the way to link different tables.
    This feature is available and is described in iWork Formulas and Functions User Guide (which is available for free from the Help menu).
    Getting the info just requires a simple search in this available resource !
    Yvan KOENIG (VALLAURIS, France) 14 mai 2011 10:37:50

  • How can I link table KONV with table VBRP and VBRK using KSCHL field?

    Hi experts,
    How can I link table KONV with table VBRP/VBRK using KSCHL field so that items are fully filtered?
    Thanks,

    Hi,
    If you do not want to specify it as hard code, then define a variable for it if you want to pass the value for it from the selection screen so that it will be dynamic. Code will be as follows.
    select-options: x_KSCHL for T685l-KSCHL.
    select kwert
               kbetr
               knumv
               kposn
               kschl
          from konv
          into CORRESPONDING FIELDS OF TABLE it_konv
          FOR ALL ENTRIES IN it_all
          where knumv = it_all-knumv
          and   kposn = it_all-b_posnr
          and   kschl in x_KSCHL. "Dynamic Selection as per the selection screen input
      endif.
    Hope this helps.
    Regards,
    Chandravadan

Maybe you are looking for

  • Spatial Query not using Spatial Index

    Hi All, I have a query which uses the SDO_WITHIN_DISTANCE operator, but is taking far too long to complete. SELECT                RT.*,RD.RPD_NODE_ID, RD.RPD_XCOORD,RD.RPD_YCOORD           FROM                railplan_data RD                LEFT JOIN

  • Query Cannot be Parsed Within Builder

    Hi, I'm trying to parse different Oracle database connections so users can do a search by database. I am setting this up in the HTML DB and have set up the appropriate Item which is P"(_HUB and within this I have set up the List Of Values. However, I

  • How can I design Load Balancing for distant Datacenters? without single point of failure

    Dear Experts, We are using the following very old and passive method of redundancy for our cload SaaS but it's time to make it approperiate. Can youplease advise: Current issues: 1. No load balancing. IP selection is based on primary and secondary IP

  • Objects to Strings

    Hi All Am having a Vector containing collections of Objects I want to retrieve that and convert in to String(using Enumeration too) I tried this String name=(String)E.nextElement(); but this is not working Give me Solution... Or else tell me whether

  • I can't compile but everything seems fine

    I have NO luck with Xcode. I am using Xcode 4.1 (This also occured in 4.0.2) and I started my project from the normal cocoa app document based template. It compiled fine the first few times but now it won't compile anymore. See the pic below: It clai