ImmutableArrayList default for Map Long, Collection String

Hi,
There are a few topics out there about the com.tangosol.util.ImmutableArrayList default, but the actual fix still seems a bit unclear to me.
In my example there is a Map with each entry containing a Collection of Strings (i.e. Map<Long, Collection<String>>). Objects will be placed in the Map as ArrayLists, but they seem to come out as ImmutableArrayLists.
The Oracle site mentions wrapping the Collection (http://extranet.tangosol.com/display/COH35UG/Best+Practices+for+Coherence+Extend).
There is another Oracle forum post that suggests using more general classes (List instead of ArrayList). (Serialize an ArrayList<ArrayList>
It seems like you have to make a new collection anytime you wish to reserialize the object. Is there a better way?
Thanks for taking the time,
Mike

This problem comes up for us when persisting documents. We are torn between saving as XML vice saving a normalized object model or something else: like your database solution.
Since you have already designed the database, then you can reverse out the TopLink class from that database design in the mapping workbench. You then have to perform a transform in the middle tier to extract your business model.
Alternatively, if you want your business model to map via ORM to the data model, then you would have a database design that more closely maps the business model design then you get three tables:
TopLevel
Integer primaryKey; //This table may just have the PK
SetMap theSets;
SetMap
TopLevel parent; //FK to the Parent table
Long primaryKey; //Assumes the Longs are globally unique. If not, the PK will include the parent
SetList theSet;
SetList
SepMap parent; //Part of PK. This can get complicated if the PK migrates all the way from TopLevel. We insert a surrogate key at this point.
String setMember; //Rest of PK
The database constraints ensure that the SetList is unique. The equivalent string may exist in different SetMaps, but may not be duplicated for a particular parent.

Similar Messages

  • The back button no longer works. I have disabled all add-ons, rebooted & reset the defaults for the browser and nothing has changed. This happens on all webpages.How do I get the back button to light up again?

    the back button no longer works. I have disabled all add-ons,rebooted & reset the defaults for the browser and nothing has changed. This happens on all webpages.How do I get the back button to light up again?

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    *Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    Another possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.com/kb/Bookmarks+not+saved#w_places-database-file

  • Configuring Kodo default implementation for field of Collection type

    If I am not mistaken default implementation for field of Collection type in
    Kodo is
    LinkedList based proxy. It would be great if it were possible to configure
    Kodo to use a proxy of my choosing
    I did some tests and it seems to me that ArrayList is much more efficient
    than Linked list (see below)
    Is there any specific reason I am not aware of that makes LinkedList better
    than array list
    In my applications all collections a relatively small (or at least most of
    my collections are definitely small)
    and since I use Collection interface there is no inserts into middle of my
    collections - only appends (which ArrayList handles very well)
    So my question is can I make Kodo to use ArrayListProxy for fields of
    Collection type
    (except of course using ArrayList field instead of Collection which I do not
    want to do)
    below is some statistics on collection performance (populating and iterating
    collections)
    the same test against 3 collections implementations (JDK 1.4.1)
    Not only ArrayList by far the fastest and memory friendly it also garbage
    collected much sooner and better -
    I show here max memory consumption and last to would not be garbage
    collected till all memory is in use (old generation GC)
    and ArrayList seems to be collected by young gen GC because it was collected
    very quickly between test cycles why other only when all memory was used
    So please make ArrayList your default collection implementation :-)
    Small collection size (40)
    time(ms) memory(kb)
    ArrayList 5,218 62,154
    LinkedList 14,125 240,066
    HashSet 27,000 311,825
    the same but using using random inserts - append(index, object) rather than
    append(object):
    ArrayList 8937, 53591
    LinkedList 15047, 240066
    Larger collection size (200)
    ArrayList 4860, 47709
    LinkedList 18468, 290704
    HashSet 34391, 422282
    the same but using using random inserts - append(index, object) rather than
    append(object):
    ArrayList 11844, 47709
    LinkedList 25766, 290704

    You should be able to accomplish this fairly easily by extending
    SimpleProxyManager:
    http://solarmetric.com/Software/Documentation/2.4.3/docs/javadoc/com/solarmetric/kodo/util/SimpleProxyManager.html
    and overriding the appropriate methods (getCollectionCopy and
    getCollectionProxy).
    On Mon, 12 May 2003 12:26:21 -0400, Alex Roytman wrote:
    If I am not mistaken default implementation for field of Collection type in
    Kodo is
    LinkedList based proxy. It would be great if it were possible to configure
    Kodo to use a proxy of my choosing
    I did some tests and it seems to me that ArrayList is much more efficient
    than Linked list (see below)
    Is there any specific reason I am not aware of that makes LinkedList better
    than array list
    In my applications all collections a relatively small (or at least most of
    my collections are definitely small)
    and since I use Collection interface there is no inserts into middle of my
    collections - only appends (which ArrayList handles very well)
    So my question is can I make Kodo to use ArrayListProxy for fields of
    Collection type
    (except of course using ArrayList field instead of Collection which I do not
    want to do)
    below is some statistics on collection performance (populating and iterating
    collections)
    the same test against 3 collections implementations (JDK 1.4.1)
    Not only ArrayList by far the fastest and memory friendly it also garbage
    collected much sooner and better -
    I show here max memory consumption and last to would not be garbage
    collected till all memory is in use (old generation GC)
    and ArrayList seems to be collected by young gen GC because it was collected
    very quickly between test cycles why other only when all memory was used
    So please make ArrayList your default collection implementation :-)
    Small collection size (40)
    time(ms) memory(kb)
    ArrayList 5,218 62,154
    LinkedList 14,125 240,066
    HashSet 27,000 311,825
    the same but using using random inserts - append(index, object) rather than
    append(object):
    ArrayList 8937, 53591
    LinkedList 15047, 240066
    Larger collection size (200)
    ArrayList 4860, 47709
    LinkedList 18468, 290704
    HashSet 34391, 422282
    the same but using using random inserts - append(index, object) rather than
    append(object):
    ArrayList 11844, 47709
    LinkedList 25766, 290704

  • APS Collections Refresh Snapshot Thread running for very long

    Hi,
    Program "APS Collections Refresh Snapshot Thread" for "BOM_INV_COMPS_SN" snapshot is running for very long time.
    Can we cancel it?
    It's running in FAST refresh mode.
    Thanks.

    Hi,
    Count the records in the mlog tables of these MVs. If the record count is more than do a complete refresh.
    Thanks,
    Abhishek Sharma

  • Freehand MX no longer collects for output

    I need help! Freehand MX (11.0.2) no longer collects for
    output. I have tried deleting preferences, restarting, repairing
    permissions but I still can't get Freehand to collect for output.
    It was working just fine until today so I don't know where the
    problem is coming from. I have noticed that little by little menu
    options have stopped working. I updated to 11.0.2 but it continues
    to be very "buggy". The guides also won't hide. The menu shortcut
    does not work. If anyone has any suggestions, please please let me
    know.
    Thanks!

    ariasj wrote:
    > I need help! Freehand MX (11.0.2) no longer collects for
    output.
    It works here for me, saving to the local hard drive. You do
    have to save
    the report first and the rest of the items will then write to
    the same
    location.
    Check the fonts used in the document. FH must be able to find
    the correct
    fonts.
    > The guides also won't hide. The menu shortcut does not
    work.
    This is 'broken' under Mac OS Tiger. I have been able to set
    a custom
    keyboard shortcut for Show/Hide Guides. Cmd+Opt+; works for
    me. Change it
    under
    Edit>Keyboard Shortcuts>View>Guides
    You can also show and hide guides using the checkmark for the
    Guides layer
    in the Layers panel.
    You will also find that under Tiger the Show/Hide Grid toggle
    needs a custom
    keyboard shortcut. I use the F6 button.
    Judy Arndt

  • SCOM 2012 R2 Error The connector the module is configured for no longer exists

    Hi All,
    The Microsoft Operations Manager Connector Framework Alert Forwarding module failed to mark an alert for forwarding because the connector the module is configured for no longer exists. 
    Connector Id: 57a14deb-a74b-520e-ac32-ba8d340d112d

    Hi Mark,
    You can try the following steps, 
    This is because we have deleted a connector that still had a live subscription associated with it.  We need to go and delete that subscription to clean this up.  The problem is – the connector is gone, so the subscription is no longer available
    in the UI.
    Therefore – we will have to delete it manually.  This subscription (as all subscriptions) is kept in the “Notifications Internal Library” MP.  You need to export that MP to XML.  FIRST MAKE A BACKUP COPY OF THIS FILE IN CASE YOU MESS UP, then
    open it for editing in Notepad, or your XML editor of choice.
    All subscriptions in this MP are kept in the <Monitoring> <Rules> section.  To identify which connector subscription RULE is causing the problem – you can search for the connector ID, from the event 11502 above.  In my example – my connector
    ID from this event is:  b7a64deb-f7ff-440e-bc30-d08d340dfe8d.
    So – I search the XML for that string – and find b7a64deb-f7ff-440e-bc30-d08d340dfe8d in the <WriteActions> section of a specific <Rule>:
    <WriteActions> 
      <WriteAction ID="WA" TypeID="SystemCenter!Microsoft.SystemCenter.ConnectorFrameworkAlertWriteAction"> 
        <ConnectorId>{b7a64deb-f7ff-440e-bc30-d08d340dfe8d}</ConnectorId> 
      </WriteAction> 
    </WriteActions>
    Good – I have identified the problem.  Now – I need to do two things:
    Find the rule ID – to identify the display string associated with it… then delete that display string.
    Delete the orphaned subscription rule.
    So – I move up in the XML section of this rule – and I find my Rule ID.  (here is mine:)
    <Rule ID="ProductConnectorSubscription2850f8e3_afe7_4c36_84d2_ee258bd086eb"
    I then search for the part above which I bolded in blue (yours will be different – search for your string)
    What this finds – is the display string section of the XML – which maps this GUID ID to the common name that you gave the subscription.  (here is mine:)
    <DisplayString ElementID="ProductConnectorSubscription2850f8e3_afe7_4c36_84d2_ee258bd086eb"> 
      <Name>Process All New Alerts</Name> 
    </DisplayString>
    So – I need to DELETE this section from the XML…. just the section above, from my very specific <DisplayString ElementID="ProductConnectorSubscription2850f8e3<GUID> line, to the very next </DisplayString>.
    Next – I need to delete the entire <rule> which contains the subscription we want to remove.  Mine will be from:
    <Rule ID="ProductConnectorSubscription<GUID> line to the very next </Rule>
    When you are happy – you can import this XML MP back into the management group.  It should import with no errors.  If you get an error – you made a mistake when editing the XML.  You can look on the RMS event log for the specific problem – there
    will be a critical event there if it fails to import.
     second part for this link
    http://blogs.technet.com/b/kevinholman/archive/2009/09/10/removing-an-old-product-connector.aspx
    Regards, Ibrahim Hamdy

  • Using default application date format substitution string

    I'd like to reference something like ":app_default_date_format" to set date formats in sql statements.
    Does a substitution string exist that returns the default application date format?
    Thanks,
    -Ken

    Hello Ken,
    >> I'd like to reference something like ":app_default_date_format" to set date formats in sql statements.
    Isn’t the whole point of defining an application date format to avoid the need to specifically reference date formats?
    >> Does a substitution string exist that returns the default application date format?
    I’m not familiar with an official substitution string for the application date format but you can use wwv_flow.g_date_format .
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Author of Oracle Application Express 3.2 – The Essentials and More

  • Searching for objects in collection

    I have a employee data base with 4 attributes
    empid, ename,yearofjoining,deptnumber
    i want to create a program/data structure, where by i can esily retrive
    1) number of employees joining in a given year
    2) number of employees joining in a given department in a given year
    Please suggest

    relaxedgalaxy wrote:
    What i am looking for is which collection should i use, Set/List/Map etc..Well.
    Does your data structure allow duplicate entries (i.e. is it meaningful if one element is contained twice in there?)
    Does the order of elements in your data structure matter?
    Is your data structure something that maps some key to some value?
    which one of these are most efficient in terms searching timeDoes that matter? Is that part of the assignment?
    And just because:
    class Employee {
      int empId
      String name
      int yearOfJoining
      int departmentNumber
      String toString() {
        String.format("Employee #%d: %s (%d, dept. %d)", empId, name, yearOfJoining, departmentNumber);
    def emps = [
      new Employee(empId: 1, name:"Foo", yearOfJoining:1980, departmentNumber: 1),
      new Employee(empId: 2, name:"Bar", yearOfJoining:1979, departmentNumber: 1),
      new Employee(empId: 3, name:"Baz", yearOfJoining:1980, departmentNumber: 2),
    println emps
    println emps.findAll({ it.yearOfJoining == 1980 }).size()
    println emps.findAll({ it.yearOfJoining == 1980 && it.departmentNumber == 1}).size()(I always wondered why there is no Collection.count(Closure) in Groovy. .findAll(Closure).size() seems so .... un-groovy)

  • Map of collection

    Hi,
    has someone an example for a persistent map with a string as key and a
    collection of strings as values?
    Is it necessary to build a persistent class to hold the collection? Can
    this be optimized?
    Cheers,
    Andreas

    Kodo has no standard mapping for this. In Kodo 3, you could handle it
    efficiently by writing a small Kodo externalizer, but in 2.5 you don't
    have many options other than a BLOB mapping or modelling it as a
    persistent class.

  • Map long to long.

    Hi all,
    I trying to crosstrain myself from C# to java and i got stuck here. For a certain algorithm i need to store answers from previous calls to speed things up. So for instance the answer to 10 is 50. (it's not really that simple but for the question it should work.) So i want to store previous calls and see if i can look them up (or a similar case)
    So i tried HashMap<long, long> divisors = new HashMap<long, long>();
    and all kinds of variations but it keeps telling me that it found a long where it expect a reference.
    What collection can i use to map long to long? In C# i could just use SortedList<long, long>.
    Any ideas?
    Regards,
    Gert-Jan

    In Java, long is a primitive type. Generics (that's the <> stuff) cannot be used with primitives. So you either have to use a Map<Long, Long> or maybe have a look at http://trove4j.sourceforge.net/
    And please make sure you understand the difference between C#'s templates and Java Generics :)

  • JPA2 Question: Is it possible to map a Map(enum, List String ) in JPA2?

    Is it possible to map a Map(enum, List<String>) in JPA2? Or do I have to create a separate Entity class that maps each List<String> collections for each possible value in the enum?
    Edited by: user7976113 on Jan 22, 2010 7:51 PM
    Edited by: user7976113 on Jan 22, 2010 7:51 PM

    No, JPA does not support this or any nested collection type of mappings directly.
    The best solution is to create an Entity or Embeddable to contain the collection data.
    See,
    http://en.wikibooks.org/wiki/Java_Persistence/Relationships#Nested_Collections.2C_Maps_and_Matrices
    James : http://www.eclipselink.org

  • Slave instance can not synchronized with the master for a long time

    Hi,
    Slave instance can not synchronized with the master for a long time, and the gap of LSNs between slave and master are more and more larger. The transfer bytes per second between master and slave is 118MB/s , upper limit to the ethernet card. Why???
    ENVIRONMENT:
    1. A network program which we called mcdb is based on BDB 4.8.30. It is used to accept get/set requests and then query data from bdb or save data to bdb.
    2. mcdb implements replication with bdb replication manager api. The default start replication policy is DB_REP_ELECTION, rep ack policy is DB_REPMGR_ACKS_ONE_PEER and rep priority is 100.
    3. The bdb data files, bdb log files, region files and rep files are all in the same home directory.
    4. There are two instances of the mcdb are separately on two standalone servers which has no other programs. These two instances are in one replication group which can elect a master automatically.
    5. The master instance is online, which has lots of requests (get, set, delete).
    ACTIONS:
    1. Start two mcdb instances on two servers and the two instance make a replication group. Slave has already synchronized with the master.
    2. Stop the slave for a long time (more than 20 hours).
    3. Start the slave instance to synchronize data with master.
    RESULT:
    1. the gap of LSNs between slave and master are more and more larger.
    2. db_stat of master and slave:
    master db_stat:
    467170     Number of PERM messages not acknowledged
    9245     Number of messages queued due to network delay
    172415     Number of messages discarded due to queue length
    25880     Number of existing connections dropped
    3407     Number of failed new connection attempts
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    DB_REPMGR site information:
    10.67.15.146 (eid: 0, port: 30011)
    Environment configured as a replication master
    331726/3574994     Next LSN to be used
    0/0     Not waiting for any missed log records
    328872/466092     Maximum permanent LSN
    0     Next page number expected
    0     Not waiting for any missed pages
    0     Number of duplicate master conditions originally detected at this site
    2147M     Current environment ID (2147483647)
    100     Current environment priority
    49     Current generation number
    50     Election generation number for the current or next election
    2323     Number of duplicate log records received
    0     Number of log records currently queued
    6768     Maximum number of log records ever queued at once
    55284     Total number of log records queued
    120M     Number of log records received and appended to the log (120475988)
    111     Number of log records missed and requested
    2147M     Current master ID (2147483647)
    2     Number of times the master has changed
    0     Number of messages received with a bad generation number
    8505306     Number of messages received and processed
    12     Number of messages ignored due to pending recovery
    471869     Number of failed message sends
    12M     Number of messages sent (12959945)
    0     Number of new site messages received
    1     Number of environments believed to be in the replication group
    990543     Transmission limited
    0     Number of outdated conditions detected
    0     Number of duplicate page records received
    0     Number of page records received and added to databases
    0     Number of page records missed and requested
    Startup complete
    6244678     Number of transactions applied
    0     Number of startsync messages delayed
    1     Number of elections held
    1     Number of elections won
    No election in progress
    0.057097     Duration of last election (seconds)
    8944103     Number of bulk buffer sends triggered by full buffer
    0     Number of single records exceeding bulk buffer size
    5273M     Number of records added to a bulk buffer (5273592170)
    10M     Number of bulk buffers sent (10490865)
    0     Number of re-request messages received
    0     Number of request messages this client failed to process
    0     Number of request messages received by this client
    slave db_stat:
    0     Number of PERM messages not acknowledged
    0     Number of messages queued due to network delay
    0     Number of messages discarded due to queue length
    1454     Number of existing connections dropped
    0     Number of failed new connection attempts
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    DB_REPMGR site information:
    10.67.15.147 (eid: 0, port: 30011)
    Environment configured as a replication client
    329544/2916048     Next LSN expected
    330433/2013808     LSN of first log record we have after missed log records
    329543/5500501     Maximum permanent LSN
    0     Next page number expected
    0     Not waiting for any missed pages
    0     Number of duplicate master conditions originally detected at this site
    2147M     Current environment ID (2147483647)
    100     Current environment priority
    49     Current generation number
    50     Election generation number for the current or next election
    5256M     Number of duplicate log records received (5256599432)
    3925284     Number of log records currently queued
    3925285     Maximum number of log records ever queued at once
    4880561     Total number of log records queued
    3578038     Number of log records received and appended to the log
    1912297     Number of log records missed and requested
    0     Current master ID
    1     Number of times the master has changed
    0     Number of messages received with a bad generation number
    12M     Number of messages received and processed (12980442)
    2     Number of messages ignored due to pending recovery
    0     Number of failed message sends
    1912307     Number of messages sent
    0     Number of new site messages received
    0     Number of environments believed to be in the replication group
    0     Transmission limited
    0     Number of outdated conditions detected
    0     Number of duplicate page records received
    0     Number of page records received and added to databases
    0     Number of page records missed and requested
    Startup incomplete
    110568     Number of transactions applied
    80     Number of startsync messages delayed
    0     Number of elections held
    0     Number of elections won
    No election in progress
    0     Number of bulk buffer sends triggered by full buffer
    0     Number of single records exceeding bulk buffer size
    0     Number of records added to a bulk buffer
    0     Number of bulk buffers sent
    0     Number of re-request messages received
    0     Number of request messages this client failed to process
    0     Number of request messages received by this client
    Edited by: 899585 on 2013-1-4 下午10:54
    Edited by: 899585 on 2013-1-4 下午10:55

    Hi,
    Unfortunately, this issue is beyond the level of what is supported over the forum. Performance related issues are extremely complex and require an in-depth understanding of your environment and dedicated support. In a generic sense, you can look at this as a basic queueing problem. You have a server that went down and work is still coming in. When the server gets started it is possible that it may never catch up depending on new work coming in and the rate at processing the old work.
    So what would you do in this case --- one thing would be to reduce the new work coming in. In HA terms this would be slowing the master down and you can increase DB_REP_ACK_TIMEOUT for this. Another thing you could do is add fresh servers to help reduce the workload. In HA terms, this would be the equivalent of restarting the client and give it a fresh look at everything. Another thing you could do is replan the system and load balance. In HA terms, it would mean something like take a hot backup of the master and reinit a client from scratch.
    If you are interested in getting a dedicated support person working on this concern, please let me know and we can move forward down that path. Just respond to the thread with your email address and I will get in contact with you so we can pursue that approach.
    thanks
    mike

  • How to display  LONG TEXT STRING in Module Pool Screen ?

    Hi Experts,
    I want to display long text string, on screen designed through module pool(SE51). I tried to display through input/output field , but it displays it in SINGLE LINE and i have to scroll all through to view all string.
    I want to display it in rectangular format . It doesnt allow me to set HEIGHT of component.
    Please provide solution.
    Thanks in advance.
    Regards
    Deepak

    This is the program where u can get the WA_THEAD from other program like report and trying to display and modifying that text. U can do instead of WA_THEAD u can generate here itself and use also
    *& Module pool       ZMP_LTEXT                                         *
    PROGRAM  ZMP_LTEXT                               .
    TABLES: STXL.
    *&      Module  STATUS_9000  OUTPUT
    MODULE STATUS_9000 OUTPUT.
    CONSTANTS:line_length type i value 132.
    DATA:g_editor type ref to cl_gui_textedit,
         g_editor_container type ref to cl_gui_custom_container,
         CONT1 type scrfname value 'CONT1',
         g_repid like sy-repid,
         g_ok_code like sy-ucomm,
         g_mytable(132) type c occurs 0,
         g_mycontainer(30) type c ,
         v_result(256) type c,
         g_head like thead,
         it_line type table of tline with header line,
         wa_stxl type stxl.
    DATA : BEGIN OF IT_THEAD1,
           ICON TYPE ICON-ID.
           INCLUDE STRUCTURE STXL.
    DATA : END OF IT_THEAD1.
    DATA : IT_THEAD LIKE TABLE OF IT_THEAD1,
           WA_THEAD LIKE LINE OF IT_THEAD.
    IMPORT WA_THEAD FROM MEMORY ID 'ABCD'.
    select SINGLE * from STXL into wa_stxl
                     where tdname = '00006000156500000002'.
    SELECT SINGLE * from STXL into wa_stxl
                      where tdname = WA_THEAD-TDNAME
                      AND TDID = WA_THEAD-TDID
                      AND TDOBJECT = WA_THEAD-TDOBJECT
                      AND TDSPRAS = WA_THEAD-TDSPRAS.
    IF SY-SUBRC NE 0.
    MESSAGE 'NO RECORD EXIST' TYPE 'E'.
    ENDIF.
    MOVE-CORRESPONDING WA_STXL TO G_HEAD.
    SET PF-STATUS 'STATUS'.
    SET TITLEBAR '001'.
      if g_editor is initial.
         CREATE OBJECT G_EDITOR_CONTAINER
           EXPORTING
            PARENT                      =
             CONTAINER_NAME              = CONT1
            STYLE                       =
            LIFETIME                    = lifetime_default
            REPID                       =
            DYNNR                       =
            NO_AUTODEF_PROGID_DYNNR     =
           EXCEPTIONS
            CNTL_ERROR                  = 1
            CNTL_SYSTEM_ERROR           = 2
            CREATE_ERROR                = 3
            LIFETIME_ERROR              = 4
            LIFETIME_DYNPRO_DYNPRO_LINK = 5
             others                      = 6.
         IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         ENDIF.
         CREATE OBJECT G_EDITOR
           EXPORTING
            MAX_NUMBER_CHARS       =
            STYLE                  = 0
       WORDWRAP_MODE          = cl_gui_textedit=>wordwrap_at_fixed_position
    for to fix number of characters in row to 132 characers
             WORDWRAP_POSITION      = line_length
             WORDWRAP_TO_LINEBREAK_MODE = cl_gui_textedit=>true
    for the word to break to next line if it don’t fit in line
            FILEDROP_MODE          = DROPFILE_EVENT_OFF
             PARENT                 = G_EDITOR_CONTAINER
            LIFETIME               =
            NAME                   =
           EXCEPTIONS
            ERROR_CNTL_CREATE      = 1
            ERROR_CNTL_INIT        = 2
            ERROR_CNTL_LINK        = 3
            ERROR_DP_CREATE        = 4
            GUI_TYPE_NOT_SUPPORTED = 5
             others                 = 6  .
         IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         ENDIF.
      REFRESH g_mytable.
         MOVE: WA_THEAD-TDNAME TO STXL-TDNAME,
               WA_THEAD-TDID TO STXL-TDID,
               WA_THEAD-TDOBJECT TO STXL-TDOBJECT,
               WA_THEAD-TDSPRAS TO STXL-TDSPRAS.
        CALL FUNCTION 'READ_TEXT'
        EXPORTING
        CLIENT                        = SY-MANDT
          ID                            = wa_stxl-tdid
          LANGUAGE                      = wa_stxl-tdspras
          NAME                          = wa_stxl-tdname
          OBJECT                        = wa_stxl-tdobject
        ARCHIVE_HANDLE                = 0
        LOCAL_CAT                     = ' '
      IMPORTING
        HEADER                        =
        TABLES
          LINES                         = it_line
      EXCEPTIONS
        ID                            = 1
        LANGUAGE                      = 2
        NAME                          = 3
        NOT_FOUND                     = 4
        OBJECT                        = 5
        REFERENCE_CHECK               = 6
        WRONG_ACCESS_TO_ARCHIVE       = 7
        OTHERS                        = 8
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    LOOP AT IT_LINE INTO V_RESULT.
       APPEND V_RESULT TO G_MYTABLE.
    ENDLOOP.
    CALL METHOD G_EDITOR->SET_TEXT_AS_R3TABLE
       EXPORTING
         TABLE           = G_MYTABLE
       EXCEPTIONS
         ERROR_DP        = 1
         ERROR_DP_CREATE = 2
         others          = 3.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
       endif.
    ENDMODULE.                 " STATUS_9000  OUTPUT
    *&      Module  USER_COMMAND_9000  INPUT
    MODULE USER_COMMAND_9000 INPUT.
    CASE SY-UCOMM.
    REFRESH G_MYTABLE[].
    REFRESH IT_LINE[].
    CLEAR V_RESULT.
      WHEN 'SAVE'.
         CALL METHOD G_EDITOR->GET_TEXT_AS_R3TABLE
          EXPORTING
            ONLY_WHEN_MODIFIED     = FALSE
            IMPORTING
              TABLE                  = G_MYTABLE
            IS_MODIFIED            =
          EXCEPTIONS
            ERROR_DP               = 1
            ERROR_CNTL_CALL_METHOD = 2
            ERROR_DP_CREATE        = 3
            POTENTIAL_DATA_LOSS    = 4
            others                 = 5
         IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         ENDIF.
    LOOP AT G_MYTABLE INTO V_RESULT.
       APPEND V_RESULT TO IT_LINE.
    ENDLOOP.
    CLEAR V_RESULT.
        CALL FUNCTION 'SAVE_TEXT'
          EXPORTING
            CLIENT                = SY-MANDT
            HEADER                = G_HEAD
            INSERT                = ' '
            SAVEMODE_DIRECT       = 'X'
          OWNER_SPECIFIED       = ' '
          LOCAL_CAT             = ' '
        IMPORTING
          FUNCTION              =
          NEWHEADER             =
          TABLES
            LINES                 = IT_LINE
        EXCEPTIONS
          ID                    = 1
          LANGUAGE              = 2
          NAME                  = 3
          OBJECT                = 4
          OTHERS                = 5
       IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ENDIF.
    REFRESH G_MYTABLE[].
    REFRESH IT_LINE[].
    CLEAR V_RESULT.
    WHEN 'BACK' OR 'CANCEL' OR 'EXIT'.
    LEAVE TO SCREEN '0'.
    *CALL SCREEN '0'.
    WHEN OTHERS.
    ENDCASE.
    *G_OK_CODE = SY-UCOMM.
    *CLEAR SY-UCOMM.
    ENDMODULE.                 " USER_COMMAND_9000  INPUT

  • A script in file EditingUtils.js has been running for a long time

    Hello Everyone.   I just downloaded Dreamweaver CS 5.5 Trial version (Win 7), and I have been working on my home page.  I've created a wonderful image map with spry widget tooltips (about 60 tooltips), and I'm really happy with the results....until this error started to pop-up.  I have re-started the computer, deleted winfilecache****, and updated Dreamweaver through the help window.   I have googled this error, and found it existed in CS3 and CS4, and even in CS5, but no information as to why it's happening in CS 5.5.    I really want to buy this software, but am unsure as to why I would spend this amount of money on something that's going to give me a headache.  I am a layman, and work on my site recreationally.  I'm new to CSS and Spry so if i missed the obvious I apologize for that.   I inserted the spry widgets in the CODE screen by highlighting my hotspot CODE and clicking INSERT>SPRY>SPRYTOOLTIP.  Each tooltip is checked to "follow on mouse" and "hide on mouse out" and horizontally moved -400.
    So now every time I open this page in Dreamweaver this error "A script in file EditingUtils.js has been running for a long time.  Do you wish to continue?" pops up, and whenever i try to edit the spry tooltip properties.  Apologies if this has been answered elsewhere.  thanks for your help and time.  Part of the code looks like this: //
    <area shape="poly" coords="89,180,68,203,60,213,65,232,96,225,103,201,101,188" href="#" id="sprytrigger57" />
    <div class="tooltipContent" id="sprytooltip57">
    <p><img src="images/Constellations/Corvus.jpg" width="199" height="170" alt="Corvus" />CORVUS (The Crow, or Raven).</p>
    <p> Birds of prey devouring him.</p>
    </div>
          var sprytooltip57 = new Spry.Widget.Tooltip("sprytooltip57", "#sprytrigger57", {offsetX:-403, closeOnTooltipLeave:true, useEffect:"fade", followMouse:true});
    </script>
    Hope I included most everything needed to diagnose, let me know what I forgot.  Thanks again.

    oops i tried to copy the code here but it didn't work. Is this better?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>TestRun</title>
    <style type="text/css">
    body {
    background-image: url(images/bg.jpg);
    background-repeat: repeat-x;
    background-color: #000025;
    .img_class {
    height: 514px;
    width: 499px;
    </style>
    <link href="CSS/layout.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryTooltip.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryTooltip.css" rel="stylesheet" type="text/css" />
    </head> <body>
    <div id="wrapper">
    <div id="logo"><a href="TestRun.html"><img src="images/Argo_Ship_logo.gif" width="797" height="248" alt="Bible Voyages" longdesc="http://www.biblevoyages.com" /></a></div>
    <div id="navigation">HOME | ABOUT US | BIBLE STUDIES | FORUM | LIBRARY | RESEARCH LINKS </div>
    <Div id="headerImg"></Div>
    <div id="bodyArea">
    <div id="left">
    <div>
    <div class="img_class"><img src="images/Zodiac Pie Animate.gif" alt="Zodiac" width="499" height="514" border="0" usemap="#Map" />
    <map name="Map" id="Map">
    <area shape="poly" coords="114,255,151,233,156,189,192,165,154,145,108,174,103,214,101,244" href="#" alt="Virgo" id="sprytrigger1" />
    <area shape="poly" coords="159,204,195,211,194,258,163,264,158,248" href="#" alt="Coma" id="sprytrigger2" />
    <area shape="poly" coords="71,39,7,84,7,172,103,149,143,95,95,95,81,39,62,39,60,86,47,121,17,95,9,79,10,71,9 ,86" href="#" id="sprytrigger3" />
    <area shape="poly" coords="160,198,196,172,228,200,231,229,208,235,199,205" href="#" id="sprytrigger4" />
    <area shape="poly" coords="160,103,195,85,229,105,220,141,191,156,153,134,151,120" href="#" id="sprytrigger5" />
    <area shape="poly" coords="52,89,36,102,25,78,36,69" href="#" id="sprytrigger6" />
    <area shape="poly" coords="116,84,157,99,198,84,140,47,107,51,103,84,156,99" href="#" id="sprytrigger7" />
    <area shape="poly" coords="244,180,242,198,227,196,222,181,238,176" href="#" id="sprytrigger8" />
    <area shape="circle" coords="46,183,14" href="#" id="sprytrigger9" />
    <area shape="circle" coords="97,65,11" href="#" id="sprytrigger10" />
    <area shape="circle" coords="261,51,11" href="#" alt="Number 3" id="sprytrigger11" />
    <area shape="poly" coords="236,119,285,94,288,61,308,56,322,64,319,80,338,81,336,53,313,35,279,41,264,66,247 ,60,244,38,200,73" href="#" id="sprytrigger12" />
    <area shape="poly" coords="271,151,281,159,281,172,298,170,308,149,323,149,307,131,288,125,268,125,247,136" href="#" id="sprytrigger13" />
    <area shape="poly" coords="223,178,237,173,239,138,266,126,287,123,317,134,328,158,337,170,348,163,321,120,2 99,110,269,108,249,119,228,132,208,157" href="#" id="sprytrigger14" />
    <area shape="poly" coords="258,224,289,223,305,197,325,190,315,162,290,176,273,168,276,160,249,144,244,169,2 48,201,236,204,241,223" href="#" id="sprytrigger15" />
    <area shape="circle" coords="398,86,13" href="#" alt="chapter4" id="sprytrigger16" />
    <area shape="poly" coords="389,103,381,76,345,90,343,130,397,179,425,173,470,118,450,85,427,67,413,102" href="#" id="sprytrigger17" />
    <area shape="poly" coords="305,234,324,228,328,203,308,200,297,214" href="#" id="sprytrigger18" />
    <area shape="rect" coords="338,5,380,57" href="#" alt="Lyra" id="sprytrigger19" />
    <area shape="poly" coords="279,280,299,254" href="#" />
    <area shape="poly" coords="245,252,269,276,288,281,298,255,295,227,256,227,224,250,214,267,220,306,231,271,2 34,256" href="#" id="sprytrigger20" />
    <area shape="circle" coords="477,195,13" href="#" alt="Chapter 5" id="sprytrigger21" />
    <area shape="poly" coords="396,181,461,167,465,214,465,254,438,249,438,231,424,224" href="#" alt="Capricornus" id="sprytrigger22" />
    <area shape="poly" coords="378,246,400,227,377,188,352,155,347,172,325,179,328,197,355,237" href="#" id="sprytrigger23" />
    <area shape="circle" coords="479,296,15" href="#" id="sprytrigger24" />
    <area shape="poly" coords="467,239,494,243,486,256,492,283,479,279,467,286,465,270" href="#" id="sprytrigger25" />
    <area shape="poly" coords="438,250,436,234,425,227,414,218,412,226,422,247,403,252,406,268,419,281,433,345,4 50,371,477,365,494,318,475,317,462,297,463,259" href="#" id="sprytrigger26" />
    <area shape="poly" coords="421,298,414,279,400,254,390,263,384,292,372,254,365,256,371,280,346,280,367,337,3 79,364" href="#" id="sprytrigger27" />
    <area shape="poly" coords="332,209,351,234,366,253,369,275,346,265,331,278,311,261,298,268,302,243,321,234" href="#" id="sprytrigger28" />
    <area shape="circle" coords="475,402,16" href="#" id="sprytrigger29" />
    <area shape="poly" coords="351,429,391,394,400,375,425,334,422,309,400,337,370,383,352,361,338,362,336,381,3 53,398,359,410" href="#" id="sprytrigger30" />
    <area shape="poly" coords="341,360,365,368,371,352,345,324,312,345,305,347,305,381,331,379" href="#" id="sprytrigger31" />
    <area shape="poly" coords="290,314,322,320,324,273,303,269,291,282,267,279,266,296,271,310" href="#" id="sprytrigger32" />
    <area shape="circle" coords="394,492,16" href="#" id="sprytrigger33" />
    <area shape="poly" coords="333,386,354,405,347,423,323,425,304,430,295,425,300,406" href="#" id="sprytrigger34" />
    <area shape="poly" coords="286,338,324,337,324,326,282,316" href="#" id="sprytrigger35" />
    <area shape="poly" coords="365,427,411,374,440,366,465,385,457,403,465,418,442,444,339,501,325,471,304,450,3 14,431" href="#" id="sprytrigger36" />
    <area shape="poly" coords="315,340,282,341,258,357,258,382,271,399,287,397,303,354" href="#" id="sprytrigger37" />
    <area shape="circle" coords="257,499,15" href="#" id="sprytrigger38" />
    <area shape="poly" coords="310,437,298,450,301,460,271,458,264,443,226,415,235,401,256,406,269,401,292,401,2 93,394,310,398,293,411,295,429" href="#" id="sprytrigger39" />
    <area shape="poly" coords="231,411,223,407,197,420,195,440,195,467,205,477,233,472,257,455" href="#" id="sprytrigger40" />
    <area shape="poly" coords="259,455,278,464,315,472,342,506,289,508,265,478,237,490,225,480" href="#" id="sprytrigger41" />
    <area shape="poly" coords="229,406,238,399,255,401,254,357,225,355,213,384" href="#" id="sprytrigger42" />
    <area shape="circle" coords="130,498,20" href="#" id="sprytrigger43" />
    <area shape="poly" coords="194,420,219,407,211,384,217,371,190,357,165,376,169,400,183,415" href="#" id="sprytrigger44" />
    <area shape="poly" coords="206,479,222,479,228,508,183,510,176,469" href="#" id="sprytrigger45" />
    <area shape="poly" coords="111,509,109,488,120,479,135,477,155,488,164,470,147,436,79,468,73,489" href="#" id="sprytrigger46" />
    <area shape="poly" coords="164,392,173,427,136,415,138,388" href="#" id="sprytrigger47" />
    <area shape="circle" coords="46,399,19" href="#" id="sprytrigger48" />
    <area shape="poly" coords="145,387,179,356,166,329,131,342,118,351,135,385" href="#" id="sprytrigger49" />
    <area shape="poly" coords="265,280,245,259,235,267,239,305,265,306" href="#" id="sprytrigger50" />
    <area shape="poly" coords="211,274,223,246,201,237,195,266,153,274,180,335,226,334" href="#" id="sprytrigger51" />
    <area shape="poly" coords="52,420,67,407,63,386,48,377,85,357,107,373,127,426,69,474,18,448,6,384,32,416" href="#" id="sprytrigger52" />
    <area shape="circle" coords="18,299,21" href="#" id="sprytrigger53" />
    <area shape="poly" coords="114,346,161,329,148,250,132,248,117,259,93,252,90,265,105,338" href="#" id="sprytrigger54" />
    <area shape="poly" coords="119,395,134,387,111,350,88,329,68,287,46,280,39,255,46,237,55,214,77,184,146,120, 146,107,112,138,83,159,65,184,45,208,28,233,38,285,76,354,96,355" href="#" id="sprytrigger55" />
    <area shape="poly" coords="49,278,65,284,90,270,65,235,43,255" href="#" id="sprytrigger56" />
    <area shape="poly" coords="89,180,68,203,60,213,65,232,96,225,103,201,101,188" href="#" id="sprytrigger57" />
    </map>
    </div>
    </div>
    </div>
    <div id="right">
    <p>Ps 19:1-6<br />
    1 The heavens declare the glory of God; and the firmament sheweth his handywork.</p>
    <p> 2 Day unto day uttereth speech, and night unto night sheweth knowledge.</p>
    <p> 3 There is no speech nor language, where their voice is not heard.</p>
    <p> 4 Their line is gone out through all the earth, and their words to the end of the world. In them hath he set a tabernacle for the sun,</p>
    <p> 5 Which is as a bridegroom coming out of his chamber, and rejoiceth as a strong man to run a race.<br />
    Stars a STORY-book.<br />
    6 His going forth is from the end of the heaven, and his circuit unto the ends of it: and there is nothing hid from the heat thereof.</p>
    <p>Ps 19:7-14<br />
    7 The law of the LORD is perfect, converting the soul: the testimony of the LORD is sure, making wise the simple.</p>
    <p> 8 The statutes of the LORD are right,  rejoicing the heart: the commandment of the LORD is pure, enlightening the eyes.</p>
    <p> 9 The fear of the LORD is clean, enduring for ever: the judgments of the LORD are true and righteous altogether.</p>
    <p> 10 More to be desired are they than gold, yea, than much fine gold: sweeter also than honey and the honeycomb.</p>
    <p> 11 Moreover by them is thy servant warned: and in keeping of them there is great reward.</p>
    <p> 12 Who can understand his errors? cleanse thou me from secret faults.</p>
    <p> 13 Keep back thy servant also from presumptuous sins; let them not have dominion over me: then shall I be upright, and I shall be innocent from the great transgression.</p>
    <p> 14 Let the words of my mouth, and the meditation of my heart, be acceptable in thy sight, O LORD, my strength, and my redeemer.<br />
    KJV</p>
    <p><br />
    </p>
    </div>
    <div id="Footer">Site updated June 2011</div>
    </div>
    </div>
    <div class="tooltipContent" id="sprytooltip57">
    <p><img src="images/Constellations/Corvus.jpg" width="199" height="170" alt="Corvus" />CORVUS (The Crow, or Raven).</p>
    <p> Birds of prey devouring him.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip56">
    <p><img src="images/Constellations/Crater.jpg" width="180" height="196" alt="Crater" /></p>
    <p>CRATER (The Cup). </p>
    <p>The cup of Divine wrath poured out upon him.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip55">
    <p><img src="images/Constellations/Hydra.jpg" width="184" height="142" alt="Hydra" /></p>
    <p>HYDRA (The Serpent). That old Serpent— Devil, destroyed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip54">
    <p><img src="images/Constellations/Leo.jpg" width="198" height="130" alt="Leo" /></p>
    <p>LEO (The Lion). </p>
    <p>The Lion of the Tribe of Judah aroused for the rending of the Enemy.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip53">
    <p>Chapter IV - TWELFTH -</p>
    <p> Messiah's Consummated Triumph      LEO (The Lion). The Lion of the Tribe of Judah aroused for the rending of the Enemy.           </p>
    <p>1. HYDRA (The Serpent). That old Serpent— Devil, destroyed.     </p>
    <p>2. CRATER (The Cup). The cup of Divine wrath poured out upon him.     </p>
    <p>3. CORVUS (The Crow, or Raven). Birds of prey devouring him.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip52">
    <p><img src="images/Constellations/Argo.jpg" width="200" height="199" alt="Argo" />ARGO (The Ship).</p>
    <p> The redeemed pilgrims safe at home..</p>
    </div>
    <div class="tooltipContent" id="sprytooltip51">
    <p><img src="images/Constellations/UrsaMajor.jpg" width="200" height="150" alt="Ursa Major" />URSA MAJOR (The Great Bear).</p>
    <p> The fold and the flock.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip50">
    <p><img src="images/Constellations/UrsaMinor.jpg" width="185" height="133" alt="Ursa Minor" /></p>
    <p>URSA MINOR (The Lesser Bear). </p>
    <p>The lesser sheepfold.</p>
    <p> The 7,000...? -</p>
    <p>This star was called by the Greeks the "Cynosure." Aratus seems to apply this term to the whole of the seven stars of the Lesser Bear. Mr. Robert Brown, Jr., shows that this word . . . transliterates An-nas-sur-ra, and renders it, "as it literally means, high in rising, i.e., in heavenly position.". Is not this the primitve truth of the Revelation? Will not this Lesser Fold be high, yea, the highest in heavenly position?</p>
    </div>
    <div class="tooltipContent" id="sprytooltip49">
    <p><img src="images/Constellations/Cancer.jpg" width="183" height="200" alt="Cancer" />CANCER (The Crab).</p>
    <p> The possession held fast.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip48">
    <p>Chapter III ELEVENTH -</p>
    <p> Messiah's Redeemed Possessions      </p>
    <p>CANCER (The Crab). The possession held fast.          </p>
    <p>1. URSA MINOR (The Lesser Bear). </p>
    <p>The lesser sheepfold.          7,000 - This star was called by the Greeks the "Cynosure." Aratus seems to apply this term to the whole of the seven stars of the Lesser Bear. Mr. Robert Brown, Jr., shows that this word . . . transliterates An-nas-sur-ra, and renders it, "as it literally means, high in rising, i.e., in heavenly position.". Is not this the primitve truth of the Revelation? Will not this Lesser Fold be high, yea, the highest in heavenly position?</p>
    <p> 2. URSA MAJOR (The Great Bear). The fold and the flock.
    3. ARGO (The Ship). The redeemed pilgrims safe at home..</p>
    </div>
    <div class="tooltipContent" id="sprytooltip47">
    <p><img src="images/Constellations/CanisMinor.jpg" width="170" height="123" alt="CanisMinor" /></p>
    <p>CANIS MINOR (The Second Dog), or PROCYON, the exalted Redeemer.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip46"><img src="images/Constellations/CanisMajor.jpg" width="193" height="228" alt="CanisMajor" />CANIS MAJOR (The Dog), or SIRIUS, the coming glorious Prince of Princes.</div>
    <div class="tooltipContent" id="sprytooltip45">
    <p><img src="images/Constellations/Lepus.jpg" width="198" height="196" alt="Lepus" />LEPUS (The Hare), or</p>
    <p> THE ENEMY trodden under foot.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip44">
    <p><img src="images/Constellations/Gemini.jpg" width="197" height="228" alt="Gemini" />GEMINI (The Twins). </p>
    <p>The twofold nature of the King.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip43">
    <p>Chapter II - TENTH  - </p>
    <p>Messiah's Reign as Prince of Peace      GEMINI (The Twins). The twofold nature of the King.</p>
    <p> 1. LEPUS (The Hare), or THE ENEMY trodden under foot.<br />
    2. CANIS MAJOR (The Dog), or SIRIUS, the coming glorious Prince of Princes.<br />
    3. CANIS MINOR (The Second Dog), or PROCYON, the exalted Redeemer.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip42">
    <p><img src="images/Constellations/Auriga.jpg" width="197" height="289" alt="Auriga" />AURIGA (The Shepherd). </p>
    <p>Safety for the Redeemed in the day of that wrath.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip41">
    <p><img src="images/Constellations/Eridanus.jpg" width="198" height="86" alt="Eridanus" />ERIDANUS (The River of the Judge). </p>
    <p>Wrath breaking forth for His enemies.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip40">
    <p><img src="images/Constellations/Orion.jpg" width="185" height="262" alt="Orion" /></p>
    <p>ORION,  </p>
    <p>Light breaking forth in the person of the Redeemer.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip39">
    <p><img src="images/Constellations/Taurus.jpg" width="200" height="165" alt="Taurus" />TAURUS (The Bull). </p>
    <p>Messiah coming to rule.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip38">
    <p>Chapter I - NINTH - </p>
    <p>Messiah, The Coming Judge of All the Earth      
    TAURUS (The Bull).</p>
    <p> Messiah coming to rule.           </p>
    <p>1. ORION,  Light breaking forth in the person of the Redeemer.</p>
    <p> 2. ERIDANUS (The River of the Judge). Wrath breaking forth for His enemies.</p>
    <p> 3. AURIGA (The Shepherd). Safety for the Redeemed in the day of that wrath.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip37">
    <p><img src="images/Constellations/Perseus.jpg" width="167" height="257" alt="Perseus" /></p>
    <p>PERSEUS (The Breaker).</p>
    <p> Delivering His redeemed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip36">
    <p><img src="images/Constellations/Cetus.jpg" width="198" height="93" alt="Cetus" />CETUS (The Sea Monster). </p>
    <p>The great enemy bound.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip35">
    <p><img src="images/Constellations/Cassiopeia.jpg" width="128" height="196" alt="Cassiopeia" /></p>
    <p>CASSIOPEIA (The Enthroned Woman).</p>
    <p> The captive delivered, and preparing for her husband, the Redeemer.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip34">
    <p><img src="images/Constellations/Aries.jpg" width="200" height="165" alt="Aries" />ARIES (The Ram or Lamb). </p>
    <p>The Lamb that was slain, prepared for the victory.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip33">
    <p>Chapter IV - EIGHTH - </p>
    <p>Their Blessings Consummated and Enjoyed      ARIES (The Ram or Lamb).</p>
    <p> The Lamb that was slain, prepared for the victory.</p>
    <p> 1. CASSIOPEIA (The Enthroned Woman). </p>
    <p>The captive delivered, and preparing for her husband, the Redeemer.</p>
    <p> 2. CETUS (The Sea Monster).</p>
    <p> The great enemy bound.</p>
    <p> 3. PERSEUS (The Breaker). </p>
    <p>Delivering His redeemed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip32">
    <p><img src="images/Constellations/Cephus.jpg" width="144" height="164" alt="Cephus" /></p>
    <p>CEPHEUS (The King).</p>
    <p> Their Redeemer coming to rule.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip31">
    <p><img src="images/Constellations/Andromeda.jpg" width="181" height="189" alt="Andromeda" />ANDROMEDA (The Chained Woman).</p>
    <p> The Redeemed in their bondage and affliction.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip30">
    <p><img src="images/Constellations/Pisces.jpg" width="198" height="94" alt="Pisces" />PISCES (The Fishes). </p>
    <p>The Redeemed blessed though bound.</p>
    <p> </p>
    <p> THE BAND—, but binding their great enemy Cetus, the sea monster.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip29">
    <p>Chapter III - SEVENTH - </p>
    <p>Their Blessings in Abeyance      PISCES</p>
    <p> (The Fishes). </p>
    <p>The Redeemed blessed though bound.           </p>
    <p>1. THE BAND—,</p>
    <p> but binding their great enemy Cetus, the sea monster.</p>
    <p> 2. ANDROMEDA (The Chained Woman).</p>
    <p> The Redeemed in their bondage and affliction.
    3. CEPHEUS (The King).</p>
    <p> Their Redeemer coming to rule.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip28">
    <p><img src="images/Constellations/Cygnus.jpg" width="198" height="224" alt="Cygnus" />CYGNUS (The Swan). </p>
    <p>The Blesser surely returning.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip27">
    <p><img src="images/Constellations/Pegasus.jpg" width="201" height="130" alt="Pegasus" />PEGASUS (The Winged Horse).</p>
    <p> The blessings quickly coming.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip26">
    <p><img src="images/Constellations/Aquarius.jpg" width="198" height="109" alt="Aquarius" />AQUARIUS (The Water-Bearer).</p>
    <p> The living waters of blessing poured forth for the Redeemed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip25">
    <p><img src="images/Constellations/PicisAustralis.jpg" width="198" height="63" alt="Piscis Australis" />PISCIS AUSTRALIS (The Southern Fish).</p>
    <p> The blessings bestowed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip24">
    <p>Chapter II - SIXTH  -</p>
    <p>Their Blessings Ensured      AQUARIUS </p>
    <p>(The Water-Bearer). </p>
    <p>The living waters of blessing poured forth for the Redeemed.</p>
    <p> 1. PISCIS AUSTRALIS (The Southern Fish). The blessings bestowed.     </p>
    <p>2. PEGASUS (The Winged Horse). The blessings quickly coming.</p>
    <p> 3. CYGNUS (The Swan). The Blesser surely returning.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip23">
    <p><img src="images/Constellations/Trio.jpg" width="198" height="133" alt="Trio" />1. SAGITTA (The Arrow). </p>
    <p>The arrow of God sent forth.</p>
    <p> 2. AQUILA (The Eagle). </p>
    <p>The smitten One falling.</p>
    <p> 3. DELPHINUS (The Dolphin). </p>
    <p>The dead One rising again.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip22"><img src="images/Constellations/Capricornus.jpg" width="199" height="145" alt="Capricornus" />CAPRICORNUS (The fish-goat). The goat of Atonement slain for the Redeemed.</div>
    <div class="tooltipContent" id="sprytooltip21">
    <p>Chapter I - FIFTH -</p>
    <p> Their Blessings Procured      
    CAPRICORNUS (The fish-goat). </p>
    <p>The goat of Atonement slain for the Redeemed.           
    1. SAGITTA (The Arrow).</p>
    <p> The arrow of God sent forth.</p>
    <p> 2. AQUILA (The Eagle).</p>
    <p> The smitten One falling.</p>
    <p> 3. DELPHINUS (The Dolphin).</p>
    <p> The dead One rising again.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip20"><img src="images/Constellations/DracoMap.jpg" width="200" height="161" alt="Draco" />DRACO (The Dragon). The Old Serpent— Devil, cast down from heaven.</div>
    <div class="tooltipContent" id="sprytooltip19">
    <p><img src="images/Constellations/Ara.jpg" width="143" height="142" alt="Ara" /></p>
    <p>ARA (The Altar). Consuming fire prepared for His enemies.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip18">
    <p><img src="images/Constellations/Lyra.jpg" width="139" height="117" alt="Lyra" />. </p>
    <p>LYRA (The Harp).</p>
    <p> Praise prepared for the Conqueror.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip17"><img src="images/Constellations/Safittarius.jpg" width="198" height="213" alt="Sagittarius" />SAGITTARIUS (The Archer). The two-natured Conqueror going forth "Conquering and to conquer."</div>
    <div class="tooltipContent" id="sprytooltip16">
    <p>Chapter IV -</p>
    <p> The Redeemer's Triumph      
    SAGITTARIUS (The Archer). The two-natured Conqueror going forth "Conquering and to conquer."</p>
    <p>           
    1. LYRA (The Harp). Praise prepared for the Conqueror.</p>
    <p> 2. ARA (The Altar). Consuming fire prepared for His enemies.    </p>
    <p>3. DRACO (The Dragon). The Old Serpent— Devil, cast down from heaven.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip15"> <img src="images/Constellations/Hercules.jpg" width="198" height="190" alt="Hercules" />HERCULES (The mighty man. A man kneeling on one knee, humbled in the conflict, but holding aloft the tokens of victory, with his foot on the head of the Dragon). The mighty Vanquisher seeming to sink in the conflict.</div>
    <div class="tooltipContent" id="sprytooltip14"><img src="images/Constellations/Serpens.jpg" width="199" height="152" alt="Serpens" />SERPENS (The Serpent struggling with the man).</div>
    <div class="tooltipContent" id="sprytooltip13">
    <p><img src="images/Constellations/Ophiuchus.jpg" width="199" height="227" alt="Ophiuchus" /></p>
    <p>O-PHI-U-CHUS (The man grasping the serpent). The struggle with the enemy.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip12"><img src="images/Constellations/Scorpio.jpg" width="198" height="186" alt="Scorpio" />SCORPIO (The Scorpion) seeking to wound, but itself trodden under foot.</div>
    <div class="tooltipContent" id="sprytooltip11">Chapter III - THIRD  - The Redeemer's Conflict SCORPIO (The Scorpion) seeking to wound, but itself trodden under foot.      <br />
    1. SERPENS (The Serpent struggling with the man). <br />
    <br />
    2. O-PHI-U-CHUS (The man grasping the serpent). The struggle with the enemy. <br />
    <br />
    3. HERCULES (The mighty man. A man kneeling on one knee, humbled in the conflict, but holding aloft the tokens of victory, with his foot on the head of the Dragon). The mighty Vanquisher seeming to sink in the conflict.</div>
    <div class="tooltipContent" id="sprytooltip10">
    <p>Chapter II - SECOND -  The Redeemer's Atoning Work</p>
    <p> LIBRA (The Scales). The price deficient balanced by the price which covers. <br />
    1. CRUX,  The Cross endured. <br />
    <br />
    2. LUPUS, or VICTIMA, The Victim slain. <br />
    <br />
    3. CORONA, The Crown bestowed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip9">
    <p>Chapter I -FIRST -  The Prophecy of the Promised Seed of the Woman</p>
    <p><br />
    VIRGO (The Virgin. A woman bearing a branch in her right hand and an ear of corn in her left). The Promised Seed of the woman. <br />
    1. COMA (The Desired. The woman and child). The Desired of all nations. <br />
    <br />
    2. CENTAURUS (The Centaur with two natures, holding a spear piercing a victim). The despised sin offering. <br />
    <br />
    3. BOOTES (a man walking bearing a branch called ARCTURUS, meaning the same). He cometh.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip8">
    <p><img src="images/Constellations/CoronaBorealis.jpg" width="69" height="55" alt="CoronaBorealis" /></p>
    <p>CORONA, The Crown bestowed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip7"> <img src="images/Constellations/LupusOrTheVictim.jpg" width="197" height="191" alt="Lupus" />LUPUS, or VICTIMA, The Victim slain.</div>
    <div class="tooltipContent" id="sprytooltip6">
    <p><img src="images/Constellations/Crux.jpg" width="67" height="100" alt="Crux" /></p>
    <p>CRUX,  The Cross endured.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip5">
    <p><img src="images/Constellations/Libra.jpg" width="185" height="176" alt="Libra" /></p>
    <p>LIBRA (The Scales). The price deficient balanced by the price which covers.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip4">
    <p><img src="images/Constellations/Bootes.jpg" width="162" height="191" alt="Bootes" /></p>
    <p>BOOTES (a man walking bearing a branch called ARCTURUS, meaning the same). He cometh!</p>
    </div>
    <div class="tooltipContent" id="sprytooltip3"><img src="images/Constellations/Centaurus.jpg" width="198" height="123" alt="Centaurus Pic" />Centaurus -(The Centaur with two natures, holding a spear piercing a victim). The despised sin offering.</div>
    <div class="tooltipContent" id="sprytooltip2">
    <p><img src="images/Constellations/Coma.jpg" width="156" height="161" alt="Coma" /></p>
    <p>Coma (The Desired. The woman and child). The Desired of all nations.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip1"><img src="images/Constellations/Virgo.jpg" width="199" height="364" alt="Virgo Pic" />Virgo VIRGO (The Virgin. A woman bearing a branch in her right hand and an ear of corn in her left). The Promised Seed of the woman.</div>
    <script type="text/javascript">
    var sprytooltip1 = new Spry.Widget.Tooltip("sprytooltip1", "#sprytrigger1", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip2 = new Spry.Widget.Tooltip("sprytooltip2", "#sprytrigger2", {offsetX:-450, closeOnTooltipLeave:true, useEffect:"fade", followMouse:true});
    var sprytooltip3 = new Spry.Widget.Tooltip("sprytooltip3", "#sprytrigger3", {useEffect:"fade", closeOnTooltipLeave:true, offsetX:-400, followMouse:true});
    var sprytooltip4 = new Spry.Widget.Tooltip("sprytooltip4", "#sprytrigger4", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip5 = new Spry.Widget.Tooltip("sprytooltip5", "#sprytrigger5", {useEffect:"fade", offsetX:-470, closeOnTooltipLeave:true});
    var sprytooltip6 = new Spry.Widget.Tooltip("sprytooltip6", "#sprytrigger6", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip7 = new Spry.Widget.Tooltip("sprytooltip7", "#sprytrigger7", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip8 = new Spry.Widget.Tooltip("sprytooltip8", "#sprytrigger8", {offsetX:-500, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip9 = new Spry.Widget.Tooltip("sprytooltip9", "#sprytrigger9", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip10 = new Spry.Widget.Tooltip("sprytooltip10", "#sprytrigger10", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip11 = new Spry.Widget.Tooltip("sprytooltip11", "#sprytrigger11", {offsetX:-500, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip12 = new Spry.Widget.Tooltip("sprytooltip12", "#sprytrigger12", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip13 = new Spry.Widget.Tooltip("sprytooltip13", "#sprytrigger13", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip14 = new Spry.Widget.Tooltip("sprytooltip14", "#sprytrigger14", {offsetX:-800, closeOnTooltipLeave:true, useEffect:"fade", followMouse:true});
    var sprytooltip15 = new Spry.Widget.Tooltip("sprytooltip15", "#sprytrigger15", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip16 = new Spry.Widget.Tooltip("sprytooltip16", "#sprytrigger16", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip17 = new Spry.Widget.Tooltip("sprytooltip17", "#sprytrigger17", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip18 = new Spry.Widget.Tooltip("sprytooltip18", "#sprytrigger18", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip19 = new Spry.Widget.Tooltip("sprytooltip19", "#sprytrigger19", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip20 = new Spry.Widget.Tooltip("sprytooltip20", "#sprytrigger20", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip21 = new Spry.Widget.Tooltip("sprytooltip21", "#sprytrigger21", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip22 = new Spry.Widget.Tooltip("sprytooltip22", "#sprytrigger22", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip23 = new Spry.Widget.Tooltip("sprytooltip23", "#sprytrigger23", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip24 = new Spry.Widget.Tooltip("sprytooltip24", "#sprytrigger24", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip25 = new Spry.Widget.Tooltip("sprytooltip25", "#sprytrigger25", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip26 = new Spry.Widget.Tooltip("sprytooltip26", "#sprytrigger26", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true});
    var sprytooltip27 = new Spry.Widget.Tooltip("sprytooltip27", "#sprytrigger27", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true});
    var sprytooltip28 = new Spry.Widget.Tooltip("sprytooltip28", "#sprytrigger28", {useEffect:"fade", offsetX:-800, closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip29 = new Spry.Widget.Tooltip("sprytooltip29", "#sprytrigger29", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip30 = new Spry.Widget.Tooltip("sprytooltip30", "#sprytrigger30", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip31 = new Spry.Widget.Tooltip("sprytooltip31", "#sprytrigger31", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip32 = new Spry.Widget.Tooltip("sprytooltip32", "#sprytrigger32", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip33 = new Spry.Widget.Tooltip("sprytooltip33", "#sprytrigger33", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip34 = new Spry.Widget.Tooltip("sprytooltip34", "#sprytrigger34", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip35 = new Spry.Widget.Tooltip("sprytooltip35", "#sprytrigger35", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip36 = new Spry.Widget.Tooltip("sprytooltip36", "#sprytrigger36", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip37 = new Spry.Widget.Tooltip("sprytooltip37", "#sprytrigger37", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip38 = new Spry.Widget.Tooltip("sprytooltip38", "#sprytrigger38", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip39 = new Spry.Widget.Tooltip("sprytooltip39", "#sprytrigger39", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip40 = new Spry.Widget.Tooltip("sprytooltip40", "#sprytrigger40", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip41 = new Spry.Widget.Tooltip("sprytooltip41", "#sprytrigger41", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip42 = new Spry.Widget.Tooltip("sprytooltip42", "#sprytrigger42", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip43 = new Spry.Widget.Tooltip("sprytooltip43", "#sprytrigger43", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip44 = new Spry.Widget.Tooltip("sprytooltip44", "#sprytrigger44", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip45 = new Spry.Widget.Tooltip("sprytooltip45", "#sprytrigger45", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip46 = new Spry.Widget.Tooltip("sprytooltip46", "#sprytrigger46", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip47 = new Spry.Widget.Tooltip("sprytooltip47", "#sprytrigger47", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip48 = new Spry.Widget.Tooltip("sprytooltip48", "#sprytrigger48", {offsetX:-400, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip49 = new Spry.Widget.Tooltip("sprytooltip49", "#sprytrigger49", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip50 = new Spry.Widget.Tooltip("sprytooltip50", "#sprytrigger50", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip51 = new Spry.Widget.Tooltip("sprytooltip51", "#sprytrigger51", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip52 = new Spry.Widget.Tooltip("sprytooltip52", "#sprytrigger52", {offsetX:-400, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip53 = new Spry.Widget.Tooltip("sprytooltip53", "#sprytrigger53", {offsetX:-400, followMouse:true, closeOnTooltipLeave:true, useEffect:"fade"});
    var sprytooltip54 = new Spry.Widget.Tooltip("sprytooltip54", "#sprytrigger54", {offsetX:-400, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip55 = new Spry.Widget.Tooltip("sprytooltip55", "#sprytrigger55", {offsetX:-400, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip56 = new Spry.Widget.Tooltip("sprytooltip56", "#sprytrigger56", {offsetX:-400, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip57 = new Spry.Widget.Tooltip("sprytooltip57", "#sprytrigger57", {offsetX:-403, closeOnTooltipLeave:true, useEffect:"fade", followMouse:true});
    </script>
    </body>
    </html> 

  • How to restore a default email map

    How to restore a deleted default email map (Archives) in icloud?

    Hi electropleb. I have had the same problem. I for one would be very interested if someone could find a solution. I have four different accounts setup in Mail where the usage of each one is very context sensitive.
    It used to be really simple in Snow Leopard (I had it enabled), but in Lion it seems that a new email will be sent from whichever mailbox you are browsing at the time.

Maybe you are looking for

  • Lost pictures and videos

    I downloaded the new OS5 on my iphone 4 and lost all of my photos and videos, how do I get them back?

  • Bookmarks from Safari to chrome

    Hi, I downloaded chrome and wanted to sync my bookmarks from Safari to Chrome, can you tell me how to do that, thanks.

  • Flash Action Happening Too Early

    I'm attempting to have a flash video file play before loading a web site. The way I'm doing it is to import an FLV video that I created in AE, into Flash, set the frame rate of the Flash to that of the (video 24fps) and add an action at frame 241 whi

  • Include an HTML file that needs parameters??

    I have a JSP that includes an HTML file template. Lets say I don't know all the contents of the HTML at the time. How do I add it? Simple Example: myHTML.html <HTML> <HEAD>   <TITLE>myVariablePassedFromJSP</TITLE> </HEAD> <BODY></BODY> <HTML>myJSP.js

  • Trigger mail for cancelled background jobs scheduled using SM37

    Dear Experts, My requirement is to trigger email whenever a job gets cancelled in background. For this I have already tried creating a workflow using BO BPJOB for event ABORTED. But for some reason the event is never getting triggered. I tested execu