Imminent Release of new GeoRaptor Version

Folks,
I am pleased to announce, after 4 months of development and testing, that a new release of GeoRaptor should be released hopefully before
the 2011 Oracle Spatial User Conference in Washington DC this Thursday 19th.
The release manager will make that release but firstly we have to work out how to handle support for SQL Developer 2.1 (which a lot of you
use) and 3.0 (which has recently been released). The reason for this is that the SQL Developer team changed some API calls such that
we have to make separate compilations. We are not sure how to support these within the SQL Developer extensions distribution framework.
It may be that we support download of the 3.0 version via the Oracle extension publication mechanism and the 2.1 version via direct download
from our Sourceforge website. We will inform you when this has been resolved.
No release notes have been compiled as the principal developer (oops, that's me!) will be leaving Australia tomorrow to attend the DC User Conference.
More extensive notes (with images) will be compiled when I get back.
We are still looking for people to:
1. Provide translations of the English dialog menus etc.
2. Write more extensive user documentation. If you use a particular part of GeoRaptor a lot and think you have found out all its functionality and quirks, contact
us and offer to write a few pages of documentation on it. (Open Office or Microsoft Word is fine.)
Here are the things that are in the next release.
New functionality:
Overhaul of Validation Functionality.
1. User can specify own validation SELECT SQL as long as it returns three required columns. The SQL is thus totally editable.
2. Validation update code now allows user to associate a PL/SQL function with an error number which is applied in the UPDATE SQL.
3. UPDATE SQL can use WHERE clause of validation SELECT SQL (1) to update specific errors.
   NOTE: The generated UPDATE statement can be manually edited. It is NEVER run by GeoRaptor. To run any UPDATE, copy the statement
   to the clipboard and run in an appropriate SQL Worksheet session within SQL Developer.
4. Main validation table allows:
   a. Sorting (click on column header) and
   b. Filtering.
   c. Copying to Clipboard via right mouse click sub menu of:
      - Geometry's SDO_ELEM_INFO array constructor.
      - SDO_GEOMETRY constructor
      - Error + validation string.
   d. Access to Draw/Zoom functions which were previously buttons.
   e. Added a new right mouse click menu "Show Feature's Individual Errors" that gathers up all the errors
      it can process - along with the ring / element that is host to the error (if it can) - and displays
      them in the Attribute/Geometry tabs at the bottom of the Map Window (where "Identify" places its results).
      The power of this will be evident to all those who have wanted a way of stepping through errors in a geometry.
   f. Selected rows can now be deleted (select rows: press <DELETE> key or right mouse click>Delete).
   g. Table now has only one primary key column, and has a separate error column holding the actual error code.
   h. Right mouse click men added to table menu to display description of error in the new column (drawn from Oracle documentation)
   i. Optimisations added to improve performance for large error lists.
5. Functionality now has its own validation layer that is automatically added to the correct view.
   Access to layer properties via button on validation dialog or via normal right mouse click in view/layer tree.
Improved Rendering Options.
1. Linestring colour can now be random or drawn from column in database (as per Fill and Point colouring)
2. Marking of SDO_GEOMETRY objects overhauled.
   - Ability to mark or LABEL vertices/points of all SDO_GEOMETRY types with coordinate identifier and
     option {X,Y} location. Access is via Labelling tab in layer>properties. Thus, coordinate 25 of a linestring
     could be shown as: <25> or {x,y} or <25> {x,y}
   - There is a nice "stacked" option where the coordinate {x,y} can be written one line below the id.
   - For linestrings and polygons the <id> {x,y} label can be oriented to the angle between the vectors or
     edges that come in, and go out of, a vertex. Access is via "Orient" tick box in Labelling tab.
   - Uses Tools>Preferences>GeoRaptor>Visualisation>SDO_ORDINATE_ARRAY bracket around x,y string.
3. Start point of linestring/polygon and all other vertices can be marked with user selectable point marker
   rather than previously fixed markers.
4. Can now set a NULL point marker by selecting "None" for point marker style pulldown menu.
5. Positioning of the arrow for linestring/polygons has extra options:
   * NONE
   * START    - All segments of a line have the arrow positioned at the start
   * MIDDLE   - All segments of a line have the arrow positioning in the middle.
   * END      - All segments of a line have the arrow positioning in the END.
   * END_ONLY - Only the last segment has an arrow and at its end.
ScaleBar.
1. A new graphic ScaleBar option has been added for the map of each view.
   For geographic/geodetic SRIDs distances are currently shown in meters;
   For all SRIDs an attempt is made to "adapt" the scaleBar units depending
   on the zoom level. So, if you zoom right in you might get the distance shown
   as mm, and as you zoom out, cm/m/km as appropriate.
2. As the scaleBar is drawn, a 1:<DEMONINATOR> style MapScale value is written
   to the map's left most element in the status bar.
3. ScaleBar and MapScale can be turned off/on in View>Properties right mouse
   click menu.
Export Capabilities.
1. The ability to export a selection from a result set table (ie result of
   executing ad-hoc SQL SELECT statement to GML, KML, SHP/TAB (TAB file
   adds TAB file "wrapper" over SHP) has been added.
2. Ability to export table/view/materialised view to GML, KML, SHP/TAB also
   added. If no attributes are selected when exporting to a SHP/TAB file, GeoRaptor
   automatically adds a field that holds a unique row number.
3. When exporting to KML:
   * one can optionally export attributes.
   * Web sensitive characters < > & etc for KML export are replaced with &gt; &lt; &amp; etc.
   * If a column in the SELECTION or table/view/Mview equals "name" then its value is
     written to the KML tag <name> and not to the list of associated attributes.
     - Similarly for "description" -> <description> AND "styleUrl" -> <styleUrl>
4. When exporting to GML one can optionally export attributes in FME or OGR "flavour".
5. Exporting Measured SDO_GEOMETRY objects to SHP not supported until missing functionality
   in GeoTools is corrected (working with GeoTools community to fix).
6. Writing PRJ and MapInfo CoordSys is done by pasting a string into appropriate export dialog box.
   Last value pasted is remembered between sessions which is useful for users who work with a single SRID.
7. Export directory is remembered between sessions in case a user uses a standard export directory.
8. Result sets containing MDSYS.SDO_POINT and/or MDSYS.VERTEX_TYPE can also be written to GML/KML/SHP/TAB.
   Example:
   SELECT a.geom.sdo_point as point
     FROM (SELECT sdo_geometry(2002,null,sdo_point_type(1,2,null),sdo_elem_info_array(1,2,1),sdo_ordinate_array(1,1,2,2)) as geom
             FROM DUAL) a;
   SELECT mdsys.vertex_type(a.x,a.y,a.z,a.w,a.v5,a.v6,a.v7,a.v8,a.v9,a.v10,a.v11,a.id) as vertex
     FROM TABLE(mdsys.sdo_util.getVertices(mdsys.sdo_geometry(2002,null,null,sdo_elem_info_array(1,2,1),sdo_ordinate_array(1,1,2,2)))) a;
9. A dialog appears at the end of each export which details (eg total) what was exported when the exported recordset/table contains more
   than on shape type. For example, if you export only points eg 2001/3001 from a table that also contains multipoints eg 2005/3005 then
   the number of points exported, and multipoints skipped will be displayed.
10. SHP/TAB export is "transactional". If you set the commit interval to 100 then only 100 records are held in memory before writing.
    However, this does not currently apply to the associated DBASE records.
11. SHP/TAB export supports dBase III, dBase III + Memo, dBase IV and dBase IV + Memo.
    Note: Memo allows text columns > 255 characters to be exported. Non-Memo formats do not and any varchar2 columns will be truncated
    to 255 chars. Some GIS packages support MEMO eg Manifold GIS, some do not.
12. Note. GeoRaptor does not ensure that the SRID of SDO_GEOMETRY data exported to KML is in the correct Google Projection.
    Please read the Oracle documentation on how to project your data is this is necessary. An example is:
    SELECT OBJECTID,
           CODIGO as name,
           NOME as description,
           MI_STYLE,
           SDO_CS.TRANSFORM(shape,'USE_SPHERICAL',4055) as shape
      FROM MUB.REGIONAL;
13. NOTE: The SHP exporter uses the Java Topology Suite (JTS) to convert from SDO_GEOMETRY to the ESRI Shape format. JTS does not handle
    circular curves in SDO_GEOMETRY objects you must "stroke" them using sdo_util.arc_densify(). See the Oracle documentation on how
    to use this.
Miscellaneous.
1. Selection View - Measurement has been modified so that the final result only shows those geometry
   types that were actually measured.
2. In Layer Properties the Miscellaneous tab has been removed because the only elements in it were the
   Geometry Output options which have now been replaced by the new GML/KML/etc export capabilities.
3. Shapefile import's user entered tablename now checked for Oracle naming convention compliance.
4. Identify based on SDO_NN has been removed from GeoRaptor given the myriad problems that it seems to create across versions
   and partitioned/non-partitioned tables. Instead SDO_WITHIN_DISTANCE is now used with the actual search distance (see circle
   in map display): everything within that distance is returned.
5. Displaying/Not displaying embedded sdo_point in line/polygon (Jamie Keene), is now controlled by
   a preference.
6. New View Menu options to switch all layers on/off
7. Tools/Preferences/GeoRaptor layout has been improved.
8. If Identify is called on a geometry a new right mouse click menu entry has been added called "Mark" which
   has two sub-menus called ID and ID(X,Y) that will add the labeling to the selected geometry independently of
   what the layer is set to being.
Some Bug Fixes.
* Error in manage metadata related to getting metadata across all schemas
* Bug with no display of rowid in Identify results fixed;
* Some fixes relating to where clause application in geometry validation.
* Fixes bug with scrollbars on view/layer tree not working.
* Problem with the spatial networks fixed. Actions for spatial networks can now only be done in the
  schema of the current user, as it could happen that a user opens the tree for another schema that
  has the same network as in the user's schema. Dropping a drops only the network of the current connected user.
* Recordset "find sdo_geometry cell" code has been modified so that it now appears only if a suitable geometry object is
  in a recordset.  Please note that there is a bug in SQL Developer (2.1 and 3.0) that causes SQL Developer to not
  register a change in selection from a single cell to a whole row when one left clicks at the left-most "row number"
  column that is not part of the SELECT statements user columns, as a short cut to selecting a whole row.  It appears
  that this is a SQL Developer bug so nothing can be done about it until it is fixed. To select a whole row, select all
  cells in the row.
* Copy to clipboard of SDO_GEOMETRY with M and Z values forgot has extraneous "," at the end.
* Column based colouring of markers fixed
* Bunch of performance improvements.
* Plus (happily) others that I can't remember!If you find any bugs register a bug report at our website.
If you want to help with testing, contact us at our website.
regards
Simon

Hi buddy,
> Yes, it is: Intel site not Toshiba, I'm sorry!
No problem but not its clear what we talk about ;)
> why Toshiba don't pretest latest driver and I must install it on my own risk? The last update is from 1,5 years ago...
I think because Tecra A10 is older model and there is already a successor on the market, Tecra A11.
Well, dont worry about this. Usually the Intel drivers also work. I have tested this on my Satellite U400 and its running with Intel display driver. No problems so installation is worth a try.
Please send some feedback after Intel display driver installation, its really interesting! :)

Similar Messages

  • Will be released a new Skype version for Symbian?

    A new version of Skype for Windows/Mac was released this week that adds Microsoft account compatibility and others resources about Windows Live Messenger. Aditionally, the current Symbian version don't support video calling or conference (it's terrible, I can't invite anyone to conference, I can only enter on a created conference by others).
    I want to know when a new version will be available since I really need these features, and Skype is now of Microsoft and Microsoft is allied to Nokia, so... Is ironic don't release a new version!
    Thank you so much and I can really apreciate if someone reply to this.
    Best regards.
    Solved!
    Go to Solution.

    No update to share on Skype for Symbian.
    I think it's not worth waiting for a new version in the near future given that the Symbian Operating System is losing popularity each day.
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

  • (When) Will Apple release a newer OS version for free than 7.5.3?

    Being a fan of Apple's machines and not only the new ones, it is kind of hard to get an OS for these oldtimers. Apple would not lose a cent, if they released, let's say 8.6, because they stopped selling it many years ago. So why not putting it on their server and support the oldtimer friends? I'd appreciate it a lot, if they put some classic OSes like 8.6 or 9 on their server, now that the announcement of the death of classic Mac OS is already years ago.

    Hi, olivers -
    As a general policy, Apple never reveals what they are going to do before they do it. So, when Apple might release more older OS's as free downloads is unknown to the public, which includes the vast majority of those who post in these forums.
    You can still obtain the older OS's at sites like this one -
    http://store.yahoo.com/hardcoremac/index.html

  • MSI P965 Neo motherboard New Bios version 1.7

    Hi all,
    I have notice that msi has release a new bios, version 1.7, for the p965 neo mobo. Has anybody tried it and has any info to share with us?
    I want to upgrade but I am not sure if this is a good upgrade. Does anyone knows what is the "Intel Presler SL9QR CPU" fix so I choose to upgrade or not?
    Thanks a lot,
    Phanos

    Quote from: Phanos on 02-April-07, 03:26:51
    Hi all,
    I have notice that msi has release a new bios, version 1.7, for the p965 neo mobo. Has anybody tried it and has any info to share with us?
    I want to upgrade but I am not sure if this is a good upgrade. Does anyone knows what is the "Intel Presler SL9QR CPU" fix so I choose to upgrade or not?
    Thanks a lot,
    Phanos
    create a sig, https://forum-en.msi.com/index.php?topic=25959.0
    never flash a bios that includes updates that donot apply to you, NEVER.

  • New GeoRaptor release !

    Hello List,
    A new release of the GeoRaptor plugin is ready ! Version 20100524 is available for download on the project's sourceforge page : [http://sourceforge.net/projects/georaptor/] Update center : [Update Center|http://georaptor.sourceforge.net/install.xml]
    GeoRaptor is a SQLDeveloper plugin to view Oracle Spatial data and assist in creating/validating Spatial data and indexes.
    This current release (20100525) release includes these changes:
    - GeoRaptor now handles Tables/Views and Materialized Views.
    - Initiation of GeoRaptor functions can occur at the table or column level in the SQL Developer connection tree; (ie a GeoRaptor context menu has been added to the Columns of a table/view)
    - The way the sdo_geometry structure attribute is displayed has been re-written to handle xD data with slightly improved colouration (more to come).
    - There is now the ability to display an sdo_geometry attribute in a query result table as SDO_GEOMETRY/WKT/KML or GML2/GML3.
    - The dropping of a spatial index (for tables/materialized views) can now be done via a new context menu option.
    - The way the sdo_geometry data is displayed in the spatial view has been re-written. It will draw 2D, 3/4D (Z or M or both) data but only in 2D.
    - The way sdo_geom_metadata is handled and updated has been overhauled. Tables with multiple geometries can be dealt with in the one metadata panel.
    - Spatial indexing has been improved.
    - There is a Suffix/Prefix (called Affix) Tools>GeoRaptor>Preferences preferences for controlling its placement.
    - GeoRaptor can discover the layer_gtype parameter (from either all the data or from a sample).
    - Setting the sdo_indx_dims parameter can be done via a pulldown; as also whether the index is geodetic (tick box)
    - Setting the TABLESPACE parameters has also been added.
    - GeoRaptor can now be told to position a new table/sdo_geometry object (Add to Spatial View) in the spatial view at the top of the layer tree or at the bottom (Tools>Preferences>GeoRaptor)
    - The ability to move an existing layer in the spatial view to the the TOP or BOTTOM has been added via a right mouse click menu entry.
    - Similarly, you can now tell GeoRaptor where to put the layer list in the view: in the RIGHT or LEFT panel.
    - The position of the dividers in the spatial view now are trapped and saved.
    - The geometry spatial validation routines have been modified to allow for tolerance or diminfo based validation. Multiple geometries per table are handled. The user can now select their own primary key (including multiple columns) they would like to use in the output report.
    - GeoRaptor can now draw arrows at the midpoint of each segment in a linestring or just at the end.
    - GeoRaptor can process (ie visualise) data as STRUCT or JGeometry (a user preference controls this).
    - A comprehensive and flexible shapefile loading component has been added that handles multiple shapefiles, various attribute sets, changing of string attributes to numbers etc.
    Enhancements:
    - Code quality improvements are already being prepared.
    - The next release already has ready to go enhancements to the shapefile loader.
    - The ability to create (automatically) a single sdo_geom_metadata entry that covers all shapefiles in a shapefile set that is loaded into a single table.
    - Similarly a basic spatial index can be built at the end of a load run.
    - The ability to round the ordinate values read from each shapefile's X,Y, Z etc double precision ordinates. So, an shapefile X value of 234567.97456362839 can be written as 234567.975 if a decimal place rounding of 3 is chosen.
    - More options or colouring SDO_GEOMETRY data in a resultset;
    - Ability to colourize SDO_DIM_ARRAY, VERTEX_TYPE etc structures;
    - Support the mapping (add to spatial view) of a SQL query resultset (viewed currently only by styling the sdo_geometry attribute).
    - This will include the ability to select a subset of the resultset for visualisation, copying to clipboard, export (not just one at a time as in the current version). In fact, working with resultsets will become the main focus of how GeoRaptor will work in the future.
    - Add a new Spatial node to SQL Developer that collects up all tables etc with spatial data in one node (like Tables/Views/Materialized Views etc) so we can initiate action from there minimising mouse movement and increasing end user productivity.
    - Create a tool for discovering and removing stale sdo_geom_metadata records.
    - Support projections in the map view;
    - Support multiple independent map views (not just one);
    - Support WMS layers within the map view;
    - Provide spatial data export (shapefiles first);
    - Support limited visualisation of external shapefile data before loading eg to view to display with existing Oracle data.
    - Network topology visualisation and functionality;
    - Export functionality
    We encourage you to use GeoRaptor and discover its usefulness. We are spatial professionals who use SQL Developer every day in our business and consulting activities: we want the tool to make our lives easier and we hope they will do that for you too.
    However, we don't know how you use GeoRaptor and SQL Developer so we would love to hear your wishes for the product and the sorts of improvements would help you in your work and use: [Feature Requests|https://sourceforge.net/tracker/?group_id=158162&atid=806731]
    Like all software GeoRaptor is not perfect: the software contains bugs.
    Please help us in recognizing and fixing those bugs by reporting them : [Bug tracker|https://sourceforge.net/tracker/?group_id=158162&atid=806728]
    Now that we have a release out, we intend on making regular bug fix release and not just releases containing new functionality.
    The GeoRaptor team
    Edited by: Olaf I. on Jun 8, 2010 5:58 AM : a more comprehensive list of what's new !

    This release is really great. Simon uses the term "we" but he has probably done 99% of all the enhancements that have gone into this release.
    Thanks a lot for the effort Simon!!

  • New OSX version release date - worth postponing purchase?

    I was wondering if there is any information on the date of release of new version (10.5) of OSX? Thought it could be worth postponing purchase of new imac g5, if the date is 1-2 months away.
    Thank you in advance.

    I agree with Dave. Buy a computer now if you really need one and enjoy it! There is always something different, or better, around the corner. You could always "wait" for the next big thing, and never actually make a purchase.
    Late next year is when 10.5 should come out, and it is something I look forward to along with the Intel based Macs. But I needed a comuter now since the logic board on my old iBook died, so it was time to buy. I could have limped along with an old PC for awhile, but decided to get what I really wanted, and start enjoying it.
    Hopefully 10.5 will be more than worth the purchase price when it arrives.

  • Pls release new software version for nokia 5233

    pls release new software version for nokia 5233

    You can't expect an update for your phone which was launched almost 3 years back. Anyways Symbian is in 'Maintenance Mode' which means no more major updates but only Bug fixes for the devices released much later ..

  • Music, Photos, Videos... I can't sync anything for iPhone 4. When will Apple release the new version of iTunes?

    I tried every methods up online trying to sync the music, photo, and videos. Nothing is working right now ever since I updated my ios to 7.
    This is happening to most of people who owns iPhone 4, 4S, and 5. Does anyone know when will Apple release the new version of iTunes which will fix the sync problem?
    What's the point of having a smartphone when you can't sync anything?

    Welcome to the Apple Support Communities
    See if your computer is supported > http://support.apple.com/kb/sp575 Buy Snow Leopard > http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard Then, make a backup, insert the DVD and upgrade. Finally, go to  > Software Update and update to the latest version.
    If your computer is compatible, you can use Mountain Lion. Open App Store and purchase Mountain Lion. Check if your programs are supported > http://www.roaringapps.com

  • End of release interval without new document version

    Hello experts,
    Is it possible to establish an end date for the release interval without having a new document version?
    We have a document that has been released and we want to indicate an end date but we don’t have ( and never will ) a new version of the document.
    Thanks in advance.
    Laura

    Hi Laura,
    Correct me if i understood wrong?
    You don't see any value populated in "Valid To" field in your system? As per the logic this value has to populated all ways with "31.12.9999" for all the Released status documents.
    If it is blank in your system, try to implement SAP Note :- 481878.
    If the value is populated but you want to modify it, then you can try to implement an Implicit Enhancement in function module "CV115_DOCUMENT_VALID_DATES", there is an Implicit Enhancement available before the ENDFUNCTION statement. Impliment and modify the dates in "DATES" table.
    Thanks & Regards
    Bala Krishna

  • No phone service after a new iTunes version is issued

    I tried to use my phone yesterday and the call didn't go through. When I connected to my computer I saw that a new iTunes version (9.0.2.25) had been issued, and when I synched with iTunes it restored my connectivity. The same thing happened the previous time a new version was issued. There was no message on the phone saying it needed to connect to iTunes. I rely on the phone for continuous service in case of emergency, and don't sync it every day. If I were out of town I would be out of luck. Does Apple (or AT&T) de-activate the service each time a new version is issued, and rely on customers to re-sync when their phone goes dead?

    I have not experienced the same - not with any iTunes update when released.

  • When are you planning to release a new firmware fo...

    When are you planning to release a new firmware for the N95 NAM?
    I am tired of waiting for the automatic screen rotation on the N95NAM. This feature is aleady available in the european version.
    I switched from an iPhone to this nokia, and now i have second thoughts. Nokia seems to be the same as apple.
    Do you guys know anything about a new firmware?

    No one from Apple will respond. We're all just fellow users here. And all that Apple has announced thus far can be found in the press release:
    http://www.apple.com/pr/library/2012/03/07Apple-Launches-New-iPad.html
    Beyond that, no one here knows anything about future release dates.
    Regards.

  • I keep receiving a server error message with the new beta version of iMessage.  What can I do to fix this?

    I keep receiving a server error message with the new beta version of iMessage.  What can I do to fix this?

    Ok I have a question.
    Why do you want to use Beta software? Especially since you are having this problem with it?
    Uninstall it and forget about it until it is released as a real piece of software.

  • How to use existing leaderboard in a new app version?

    I have a live game in App Store, with a leaderboard.
    Now I'm releasing a new version. I have a new version set up in iTunes Connect, but I'm not able to select the existing leaderboard for this new version.
    How to do that? I assume it must be possible, as players should not lose any data or progress in the game when a new version is released.

    Here's a screen shot of how iTunes Connect's UI looks like. As said, the existing leaderboard can not be selected from it. (Normally I see a small "Edit" button next to "Leaderboards" header from which the leaderboards can be selected.)

  • What has been updated in each new software version...

    I just updated my N95 8GB firmware to 30.0.0.18. My previous version was 20.0.016. It sounds like huge step when main number has increased from 20 to 30.
    However in the software update news page, which the main topic in this discussion area "TOP questions about Software Updates - start here" refers to eg. http://europe.nokia.com/A4577225 only has a few sentences about the new features of new firmware version. (and actually only for version 30.0.0.15, see news subtitle "Nokia N95 software version 30.0.015 released " ).
    I'd like to read more about the new features of 30.0.0.18 or 30.0.0.15.
    In general, is there a site, where new features or improventmens of the firmware versions are documented?
    br: zimi

    Nokia considers changelogs to be confidential information and does not release them to the public.
    If you see any such information, it is leaked information and should therefore be treated with circumspection.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • New flash version?

    I heard Adobe will release a new version of Flash designed for animators? Is this true? Here in the studio we still use Flash CS3. In CS4 there are files that take 30 minutes to open. We had some issues with CS5 to when opening files created in CS3, like masks not working.. So I hope there will be a lighter version specific for animation, or we'll probably move to ToonBoom.

    You can check for problems with current Flash plugin versions and try these:
    *disable a possible RealPlayer Browser Record Plugin extension for Firefox and update the RealPlayer if installed
    *disable protected mode in Flash 11.3 and later
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Troubleshooting
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • How do you change your Apple ID in iCloud and Facetime, etc. after changing your Apple ID?

    I changed my Apple ID and now all of the related applications like Facetime, iCloud, and others are prompting for the old Apple ID and I can not find any way to change the id for these apps. Can anyone tell me what has to be done? Should I change the

  • Help! K7N420 compatible with MS-8894? Crashing!

    I just installed my new G4Ti4200-VTD8x onto my K7n420 Pro Mobo. I had  no video card installed...using the onboard video. I set the AGP aperture to 128 and booted my XP system. As soon as the destop appeared, it crashed back to reboot. I removed vid

  • I am no longer able to resize my firefox window horizontally, any ideas?

    I noticed earlier that I can no longer resize my firefox window horizontally, the border seems to have disappeared. I've searched, using google and various other sites to find a solution to this and I'm coming up short. I've tried multiple things, sa

  • MX 2004: CSS Layout Outlines

    Hi, Doeas anybody know how to get the above in MX 2004? Macromedia introduced some additional visual aids, including the above, in DW8 [or Studio...] I find these outlines particularly useful and I would like to find a way to have MX 2004 to display

  • 6.0 standard invalid serial number

    Can someone help me out on this? I needed to reinstall 6.0 standard but now the serial number that I am entering is showing as invalid. Is there a solution short of buying new?