Retrieve text from sprite at specific marker

Is there a way to retrieve text from a spriteMember at a
specific marker when you are not located at that marker?
I have an presentation that uses small graphics at the bottom
to jump to it's corresponding marker based on the markerList. I
would like to retrieve the text in sprite(6) from the corresponding
marker location and display it in a text sprite on the stage at the
current location. Without jumping to that location.
I'm trying to avoid making a list or naming the members with
the corresponding marker.
Thanks.
Wally

>>Is there a way to retrieve text from a spriteMember
at a specific marker
>>when you are not located at that marker?
Short answer... no.
Can you get the text of the member?
If that won't work you can use the updateLock property of
score recording.
You can do something like this: set updateLock to true, go
the frame you
want, get the text of the member of the sprite, then return
to the frame you
were at and turn updateLock back to false.
on test
_movie.updateLock = true
go "spriteFrame"
put sprite(6).member.text
go "normalFrame:
_movie.updateLock = false
end
If you place that as a handler in a movie script, you can
enter test from
the message window and see what happens - you will see the
text of the
sprite displayed, but the play head won't move...
HTH
Dave -
Adobe Community Expert
www.blurredistinction.com
http://www.adobe.com/communities/experts/

Similar Messages

  • HT201210 how can i retrieve texts from an earlier back up without changing all the other settings on my iphone?

    how can i retrieve texts from an earlier back up without changing all the other settings on my iphone?

    You can't. Restoring from a backup is all or none.
    You can use a utility such as this one to extract the messages from the backup on your computer but you can't re-transfer the messages to the Messages app on your iPhone.
    http://msb.macsupport-pr.com/

  • Retrieve TEXTS from Vendor

    Hello All,
    We generally maintain some vendor information TEXTS . (XK1/2/3  --> Extras --> Texts ).
    How do we programatically retrieve the text maintained here.I want to know the table . F1 info. shows the structure name as usual.If thru standard texts what should be the Text Id ? I tried to check in all vendor related tables LF* but left clueless.
    Please help.
    Regards,
    Ramdass.

    Try this piece of Code
    DATA : it_lines_sh TYPE STANDARD TABLE OF tline.
    data : m_key type thead-tdname.
    M_KEY = '0000305240'.  "Vendor"
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
        client                  = sy-mandt
        id                      = '0001'
        language                = sy-langu
        name                    = m_key
        object                  = 'LFA1'
      TABLES
        lines                   = it_lines_sh
      EXCEPTIONS
        id                      = 1
        language                = 2
        name                    = 3
        not_found               = 4
        object                  = 5
        reference_check         = 6
        wrong_access_to_archive = 7
        OTHERS                  = 8.
    This will extract the Accounting note text from Vendor Text.
    Regards
    Vinod

  • Retrieving text from Vendor Master data

    Hi All,
    Please go through the navigation and query next to that...
    Vendor Master Change/ Display(XK02/XK03) --> Provide any Vendor number already created --->
    select the General Data ---> select Payment Transactions --> press enter to view the data -->
    Goto Menu Extras --> select texts  --> a window will pop up giving 2 rows for entering text as mentioned below.
    Accounting note
    Purchasing memo         
    We can enter the text beside the provision 1st line  else we can double click any one of them so that we will enter into a window to enter the long text or anything necessary.
    Now that in this concern my requirement is that i want to retrieve the text entered under the 1st line  or in the window which comes after double clicking Accounting note or Purchasing memo option basing on Vendor number or any other parameter or if any table where this data gets stored.
    Is there any program required to retrieve this text or any Function Module which retrieves this text or any coding avaliable please do send me as it is a very urgent requirement ....
    regards
    PSNG

    Could you please let me know, How to check through that FM as the parameters are confusing me when i went through them?
    regards
    PSNG

  • Need help...retrieving text from html

    i have successfully convert my text into html... however, i have problem restoring the html back to text...
    below is my html:
    <html>
    <head>
    <style> <!-- p.default { italic:; size:3; bold:normal; family:Times New Roman; foreground:#000000; } --> </style>
    </head>
    <body> <p class=default>
    <span style="color: #000000; font-size: 72pt; font-family: Times New Roman"> <u><i><b>HELLO WORLD</b></i></u>
    </span>
    </p>
    </body>
    </html>
    this is the method i used to restore the text:
    String htmlInString=CustomPanel.getHTML();
    JTextPane p=new JTextPane(new HTMLDocument());
    p.setContentType("text/html");
    jPanel4.add(p);
    p.setText(htmlInString);
    the problem is, when i restore the text, i can only get the text,its bold,underline and italic... my font and font size are unable to be restored...
    for example, based on the html i provided above, it should come up with "HELLO WORLD", bold, underline and italic with the font size 72... but when i restored, my font size and font are not as it is stated in the html... why is this so????

    Try this ..
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTextPane;
    import javax.swing.text.BadLocationException;
    import javax.swing.text.html.HTMLEditorKit;
    public class HtmlText extends JFrame {
         JTextPane m_area;
         public HtmlText(){
         m_area = new JTextPane();
         HTMLEditorKit kit = new HTMLEditorKit();
         m_area.setEditorKit(kit);
         JButton m_btn = new JButton("Show Text");      
         m_btn.addActionListener(new ActionListener(){
         public void actionPerformed(ActionEvent e){
              System.out.println("Html :-");
              System.out.println(m_area.getText());                                    
              System.out.println("Text :-");
              try{
              System.out.println(m_area.getDocument().getText(0,m_area.getDocument().getLength()));
              }catch (BadLocationException ee){
                   System.out.println("Exception " + ee.toString());
              JScrollPane m_scrollPane = new JScrollPane();
              m_scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
         m_scrollPane.getViewport().add( m_area );
              getContentPane().add( m_scrollPane, BorderLayout.CENTER );
              getContentPane().add( m_btn, BorderLayout.SOUTH );                    
         public static void main(String[] args) {
              HtmlText ht = new HtmlText();
              ht.setBounds(30,30,400,400);
              ht.setTitle("Html Text");
              ht.show();          

  • How do I concatenate text from a date?

    In excel I have the following formula:
    =CONCATENATE("Ref: RVG ",TEXT(J4,"ddmmyy"))
    I found in the Numbers Help that T() should retrieve text from a cell, but whether I try T(J4) or T(J4,"ddmmyy") etc it either gives an error or is blank (J4 contains a date).
    Any ideas whether or how this can be done in Numbers?

    Here's a visual showing the problem. T(Date) returns nothing.
    How about this?
    Regards,

  • I cant use the highlight, underline, or strikethrough function in a specific pdf file. The file isnt locked. I used to highlight texts from that file before the latest update. The problem occurs only with that file. Urgent need. Please help. Thanks!

    i cant use the highlight, underline, or strikethrough function in a specific pdf file. The file isnt locked. I used to highlight texts from that file before the latest update. The problem occurs only with that file. Urgent need. Please help. Thanks!

    Chester31,
    Thank you very much for sharing your file with us!  Now that we are able to reproduce the problem at our end, you may stop sharing the file on Acrobat.com.
    Do you know when this problem (for not being able to add new highlight/strikeout/underline) has started?  Did you update your iOS from 7.x to 8.0 recently?
    We will continue investigating the problem and let you know what we find.
    Thank you again for your help.

  • SQLException while trying to retrieve data from text file DB

    This was originally posted in the Java Fundamentals forum,
    http://forum.java.sun.com/thread.jspa?threadID=733857&tstart=10
    thought I might have a better chance of getting help here.
    I'm just beginning to learn JDBC stuff. I have a text file acting as my DB. So far I've been able to add rows to the table, but when I try and retrieve something from the table I get the following exception.
    java.sql.SQLException: [Microsoft][ODBC Text Driver] The Microsoft Jet database engine cannot open the file '(unknown)'.  It is already opened exclusively by another user, or you need permission to view its data.That '(unknown)' bit seems suspicious, but I don't how I would correct it. My file is set up similar to the sun tutorial I'm going through, and it doesn't specifiy the file name anywhere but the SQL statement.
    All the permissions seem to be correct from what I can tell. The file isn't opened or in use anywhere else that I can see.
    I've tried googling parts of the error message, but most of the reponses are dealing with MS Access or aren't java related and so far I haven't found anything helpful.
    Below is my sample code.
    * Created on May 4, 2006
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    public class DBProcessor {
         static Connection con;
         public static void main(String[] args) {
              HandiAppDBProcessor app = new HandiAppDBProcessor();
    //          insertNamesIntoDB("John", "Doe", "Good");
              retrieveNamesFromDB();
         public HandiAppDBProcessor() {
              super();
         public static void establishDBConnection() {
              try {
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   String url ="jdbc:odbc:TextDB";
                   con = DriverManager.getConnection(url,"myLogin", "myPassword");
              } catch (ClassNotFoundException excptn) {
                   System.out.println("***** ClassNotFoundException thrown");
                   excptn.printStackTrace();
              } catch(SQLException excptn) {
                   System.out.println("***** SQLException - Connection Failed");
                   excptn.printStackTrace();
         public static void insertNamesIntoDB(String firstNameIn, String lastNameIn, String standingIn) {
              try {
                   establishDBConnection();
                   String firstName = firstNameIn;
                   String lastName = lastNameIn;
                   String standing = standingIn;
                   Statement stmt = con.createStatement();
                   String query = "insert into CONTACTS values ('" + firstName +
                                       "', '" + lastName +
                                       "', '" + standing + "');";
                   stmt.execute(query);
              } catch(SQLException excptn) {
                   System.out.println("***** SQLException - Connection Failed");
                   excptn.printStackTrace();
         public static void retrieveNamesFromDB() {
              try {
                   establishDBConnection();
                   Statement stmt = con.createStatement();
                   String courseQuery = "SELECT FIRST_NAME FROM CONTACTS";
                   ResultSet rs = stmt.executeQuery(courseQuery);
                   while (rs.next()) {
                        String courseName = rs.getString("FIRST_NAME");
                        System.out.println("firstName = " + firstName);
              } catch(SQLException excptn) {
                   System.out.println("***** SQLException - Connection Failed");
                   excptn.printStackTrace();
    }Of course you won't be able to run it unless you take the time to create a text file and set it up as a data source, which I don't expect anyone to do. I was just hoping someone more experienced than I had seen this before or could spot something in my code.
    Any help in any way would be appreciated.
    Thanks

    When you were setting up your ODBC data source for
    the Text driver, did you click on the "Options"
    button? There's a lot of options in there that I
    didn't understand at first glance.Yes I clicked on the options button, but the only thing there is dealing with file extensions. I left it set to the default.
    I have since tried closing my connection after I insert a record, I then try executeQuery, but still no luck. Seems strange that I can write to the file but not read from it. If any thing I'd expect the opposite problem.
    I have also tried using the class "JoltReport" from the sun tutorial instead of my own with the same result.
    Message was edited by:
    Hentay

  • How do I read text from specific rows and columns in a tree structure?

    How do I read text from specific rows and columns in a tree structure? In a table you can specify the cell to read from but I have not been able to figure out how to do this with a tree structure.

    You need to set two properties to activate the correct cell and then you can read it's string property.
    The positioning properties are the "ActiveItemTag" and
    "ActiveColNum" properties. With them you select the tree item by it's tag and the active column. The string can then be read from the "Cell String" property.
    MTO

  • Need help to retrieve text msgs from an unbacked up 3GS

    My daughter upgraded her iPhone from a 3GS to a 4S. She didn't back up the 3GS and needs to retrieve text messages from the old phone. Is that possible? What if we had the carrier switch her number back to the 3GS, would that give her access to the texts?

    Unfortunately she never backed up the phone. Wouldn't the old texts still be on the old 3GS but not displayed because the 3GS isn't associated with that particular phone number? If they are stored on the 3GS would simply transfering the old phone number back to the 3GS solve the dilemma? Then I could do a backup of the old phone and put the texts on the 4S. Let me know what you think.

  • TS2755 is there a way to block texts from specific numbers to imessage with out turning imessage off?

    is there any way to block text from specific numbers to imessage without turning imessage off?

    Go to Settings > Messages > Send & Receive > You can be reached by iMessage at:
    Select the right facing arrow in a blue circle next to the email address this girl is sending iMessage to and select Remove This Email.
    If she has your cell phone number, she can switch to sending iMessage to that and there will be nothing you can do, but removing the email address will prevent you from receiving an iMessage addressed to that email address.

  • Anyone know how I can retrieve text messages from 9 months ago?

    anyone know how I can retrieve text messages online (if possible) from 9-10 months ago from my iphone 5?

    are these texts that were on this same phone 9 months ago? If so, you may see if you have any itunes backups from that long ago, and restore your phone from one of them

  • HT1766 How do I retrieve deleted texts from my iphone

    I accidentally deleted a text from my iphone on July 11th. I need to retrieve that message, and I have no back up of it. Thanks!

    With no backup, you'll have to use Google & search for one of the many paid programs that "claim" to be able to retrieve deleted SMS's from an iPhone.
    Whether any work or not, I have no idea.

  • How do I retrieve text messages from a iPhone 4S that doesn't work anymore?

    How do I retrieve text messages from a iPhone 4S that doesn't work anymore?

    If the phone isn't working, you can't.  If you have a backup on your computer, you may be able to extract them from the backup using 3rd party software such as iPhone Backup Extractor (see http://www.iphonebackupextractor.com).

  • How to retrieve the item text from VL03 transaction .

    How to retrieve the item text from VL03 transaction .
    The requirement is like this, the item text thus retrieved should be printed in the script under the item.

    Jagadieshwar,
    Use <b>READ_TEXT</b> function module to get the proper item text of Delivery.
    <b>ID</b>: Probably you want 0002 (Item Note), but it depends which text you want Item Note, Material Sales Text ,etc..
    <b>NAME</b>: CONCATENATE Delivery Doc. Number + Delivery Item Number (e.g. 0080001729000010)
    <b>OBJECT</b>: VBBP
    <b>
    LANGUAGE</b>: sy-langu or whatever you want.

Maybe you are looking for