Get path details with script

From an absolute beginner in both InDesign and java scripting . . .
With an InDesign CS6 document already open on my PC . . . can I get the path out of the opened file and save some/all the route folders/sub-folders and document name as variables with javascript?
Path is like this:-
\\mainserver\PDFWorkflow\Ads\County\GDS\InDesign\Adverts\225501IP.indd
Why? Because I want to write a script that gives me a Place dialogue box using some of the variables from the original path.
Place dialgoue script would have a path something like this:-
\\mainserver\PDFWorkflow\Ads\variable\GDS\InDesign\Resources\variable

app.activeDocument.filePath
returns the document's path. This works only on saved documents.
If you want to do any kind of file handling, you should read chapter 3 on file system access in the "JavaScript Tools Guide CS6". Fire up the ESTK and open the Help menu; you'll see the document in that menu.
Peter

Similar Messages

  • Get Message Details with C3PO & ObjAPI

    Has been a while since my last attempts but I have started experimenting
    with C3PO on GW2012 again.
    I hooked into the GW.MESSAGE.MAIL eGW_CMDID_OPEN event just fine,
    get the message ID, and now try to retrieve some message details with
    ObjectAPI.
    No shared folders, or proxies, just personal messages.
    The exception occurs when calling gwAccount.GetMessage(msgId)
    This seems so basic, it must be something pretty simple.
    Any suggestion?
    Thanks
    Wolfgang
    ' function called from execute handler
    ' get details of this message
    Dim cCode As String
    Dim msgId As String
    Dim msgObj As Object ' ObjAPI message object
    ' actually these objects are stored globally,
    ' and moved here just for testing purposes
    Dim gwCommander As Object ' TokenAPI handle
    Dim gwSession As Object ' ObjAPI session object
    Dim gwAccount As Object ' ObjAPI account object
    Set gwCommander = CreateObject("GroupWiseCommander")
    Set gwSession = CreateObject("NovellGroupWareSession")
    Set gwAccount = gwSession.Login()
    cCode = gwCommander.Execute("itemmessageidfromview()", msgId)
    If (cCode = "True") Then
    ' OK: shows my email address & message id
    ' like xxxxxxxx.xxxx.xxxxx.xx.xxxxx.x.xxxxx.x
    MsgBox ("getCurrentMessage: " & gwAccount.Owner + " -> " + msgId)
    ' ERR: Object variable or With block variable not set
    msgObj = gwAccount.GetMessage(msgId)
    ' never gets here
    MsgBox ("getCurrentMessage(): " & msgObj.Subject )
    End If

    On 4/15/2013 12:40 PM, Wolfgang Schreiber wrote:
    > Has been a while since my last attempts but I have started experimenting
    > with C3PO on GW2012 again.
    >
    > I hooked into the GW.MESSAGE.MAIL eGW_CMDID_OPEN event just fine,
    > get the message ID, and now try to retrieve some message details with
    > ObjectAPI.
    > No shared folders, or proxies, just personal messages.
    >
    > The exception occurs when calling gwAccount.GetMessage(msgId)
    >
    > This seems so basic, it must be something pretty simple.
    > Any suggestion?
    >
    > Thanks
    >
    > Wolfgang
    >
    I may be misrecalling but shouldn't it be
    Set msgObj = gwAccount.GetMessage(msgId)
    >
    > ' *************************************************
    >
    > ' function called from execute handler
    > ' get details of this message
    > '
    > Dim cCode As String
    > Dim msgId As String
    > Dim msgObj As Object ' ObjAPI message object
    >
    > ' actually these objects are stored globally,
    > ' and moved here just for testing purposes
    > Dim gwCommander As Object ' TokenAPI handle
    > Dim gwSession As Object ' ObjAPI session object
    > Dim gwAccount As Object ' ObjAPI account object
    > Set gwCommander = CreateObject("GroupWiseCommander")
    > Set gwSession = CreateObject("NovellGroupWareSession")
    > Set gwAccount = gwSession.Login()
    >
    > cCode = gwCommander.Execute("itemmessageidfromview()", msgId)
    >
    > If (cCode = "True") Then
    > ' OK: shows my email address & message id
    > ' like xxxxxxxx.xxxx.xxxxx.xx.xxxxx.x.xxxxx.x
    > MsgBox ("getCurrentMessage: " & gwAccount.Owner + " -> " + msgId)
    >
    > ' ERR: Object variable or With block variable not set
    > msgObj = gwAccount.GetMessage(msgId)
    >
    > ' never gets here
    > MsgBox ("getCurrentMessage(): " & msgObj.Subject )
    > End If
    >
    > ' *************************************************

  • Getting WebPage Details with JEditorPane

    I want to know that it is possible to get the details of the Web Page that is opened with using JEditorPane's setPage(String url) method.
    Details like -
    1.)Icon associated with the WebPage
    2.)Cookies Send by the WebPage
    3.)Certificates
    4.)Other Information

    thx for the reply... I tried that, I System.out.println() the code, it will give mi
    <html>
    <head>
    </html>
    So I use this
    Document doc = jeditor.getDocument();
    doc.getText(firstpos, lastpos);
    I have another question. How do I make use of the HTMLEditorKit.InsertHTMLTextAction class. I want to insert a table into the JEditorPane which contain a html page.
    Thanks in advance.

  • SSAS : How to get the details of a mesure by script

    Hi,
    I have 5 cubes in my DB. I have regulare mesures (count, min, max, ...) on the fact (see the botton ones in the print screen below)... but also some other calculations (see the top 3 ones in the print screen below).
    When i use this MDX script....
    SELECT [CATALOG_NAME] as [DATABASE],
        CUBE_NAME AS [CUBE],[MEASUREGROUP_NAME] AS [FOLDER],[MEASURE_CAPTION] AS [MEASURE],
            [EXPRESSION], [MEASURE_IS_VISIBLE]
    FROM $SYSTEM.MDSCHEMA_MEASURES
    WHERE CUBE_NAME  ='EPE'
     ORDER BY [MEASUREGROUP_NAME]
    I get as a result this :
    I need to get the details (expression) of 8 botton mesures ... as with the 3 top ones ...
    example : the last one is 'Somme Montant' (in english is : SUM Amount). It is a sum on the musure 'Montant' (Amount).... as : SUM(Montant)
    i want to show the real calculation  behind it with the real name (as is on the fact) of the column on with the mesure is based.
    Thank you for your help.
    Nacer CREPUQ BI Developer

    Thank you Dareen and Jerry,
    I wasn't able to make it work ...
    1. my case here do not work.
    2. i don't see how to get the column name of the mesure as it is on the fact table. with MEASURE_NAME_SQL_COLUMN_NAME it shows its name as is displayed for the use.
    ie: please show me how i can do what you sayed : you can overwrite the expressions of regular measures and list them out by script.
    Please advice.
    Thank you.
    SELECT MEASURE_AGGREGATOR, MEASURE_NAME_SQL_COLUMN_NAME, MEASURE_AGGREGATOR
        , CASE [MEASURE_AGGREGATOR]
              WHEN 1 THEN 'Sum'
              WHEN 2 THEN 'Count'
              WHEN 3 THEN 'Min'
              WHEN 4 THEN 'Max'
              WHEN 8 THEN 'Distinct Count'
              WHEN 9 THEN 'None'
              WHEN 10 THEN 'AverageOfChildren'
              WHEN 11 THEN 'FirstChild'
              WHEN 12 THEN 'LastChild'
              WHEN 13 THEN 'FirstNonEmpty'
              WHEN 14 THEN 'LastNonEmpty'
              WHEN 15 THEN 'ByAccount'
              WHEN 127 THEN 'Calculated measure'
              ELSE 'N/A'
       END AS AggregateFunction
    FROM $SYSTEM.MDSCHEMA_MEASURES
    WHERE CUBE_NAME  ='EPE'
    Nacer CREPUQ BI Developer

  • FM to get sales order details with billing document .

    hi ,
    is there any standard FM or BAPI to get the sales order details with input as billing document ?
    i have the billing document number now i need to get the sales order number and its details ..
    is that possible ..
    i very well know how to get it by using query, i need standard FM.
    Points will be awarded for sure , if it helps .
    Thanks and regards
    JK

    Here is the list of BAPIs
    BAPI_QUOTATION_GETDETAILBOS
    BAPI_INQUIRY_GETDETAILBOS
    BAPI_SALESORDER_GETDETAILBOS
    SALES ORDER->
    BAPISDORDER_GETDETAILEDLIST Sales Order: List of All Order Data
    BAPI_ORDER_CHANGE_STATUS_GET Change status for order
    BAPI_SALESDOCU_CREATEFROMDATA Creating a Sales Document
    BAPI_SALESORDER_CHANGE Sales Order: Change Sales Order
    BAPI_SALESORDER_CREATEFROMDAT1 Sales Order: Create Sales Order
    BAPI_SALESORDER_CREATEFROMDAT2 Sales Order: Create Sales Order
    BAPI_SALESORDER_CREATEFROMDATA Create sales order, no more maintenance
    BAPI_SALESORDER_GETLIST Sales order: List of all orders for customer
    BAPI_SALESORDER_GETSTATUS Sales order: Display status
    BAPI_SALESORDER_SIMULATE Sales Order: Simulate Sales Order

  • PowerShell Script to get the details Like Scope,Last Deployed date and Name for a Solution Deployed in the Farm.

    Hi Experts,
    I am trying to  build a PowerShell Script to get the details Like Scope,Last Deployed date and Name for a Solution Deployed in the Farm.
    Can anyone advise on this please.
    Regards

    Get-SPSolution|Select Name,Scope,LastOperationResult,LastOperationEndTime|Export-CSV "SPInstalledSolutions.csv" -NoTypeInformation
    SPSolution properties
    Get-SPSolution
    This post is my own opinion and does not necessarily reflect the opinion or view of Slalom.

  • How to get path to file variable with applescript

    I've tried:
    `set file_path to path of myfile`
    but it's giving me error:
    `error "Finder got an error: Can’t get path of document file ..."`

    Code is:
    set theFolder to (choose folder with prompt "Select the start folder")
    set file_list to every file of theFolder
    repeat with myfile in file_list
        set file_name to name of myfile
        set file_path to path of myfile
        log (file_path & "/" & file_name as string)
    end repeat

  • How to get BU, Company, Group details with the help of Employee number

    Hi Friends,
    How to get information related with Employee like Business unit, Company, Business Group and other details.
    Pravin

    Yes Arul.
    I want to get these information in a custom Java webdynpro application but if you can guide me how to get these values in SAP-Hr. Can you just give me details of tables. I have Employee number(pernr) with me and want to fetch Group, Company, Business Unit.
    With rgds,
    Pravin

  • Join EQUI table with other table so as get address detail.

    Hi All,
    Can any one help me in the following case :
    I have to pass Equipment No. EQUNR on the selection screen and get Address detail (city, region, state, country, zipcode )
    now I am getting all this address related field in KNA1 table. Also I am able to join this two table with
    KNA1-KUNNR join EQUI-KUNDE as common field.
    Turning point
    when I am passing test data of Equipment No. EQUNR 60099204 I am not getting the address detail,
    because after passing EQUNR I am not getting KUNNR.
    So can any one please help me in joining EQUI table to some other table with field name so that I can get the address detail.
    Thanks

    Hi,
    The join between the table EQUI-kunde  join  KNA1-kunnr is ok but it not working for every value.
    Example :-
    In EQUI table when we pass  Equnr - 60099204 we need to get some value in KUNDE field, then only it will join to KNA1 table. But this is not happening, I am not getting value for KUNDE, hence join is not performing.
    So I need some other solution so that when we pass EQunr we can get the address details
    one thing more equnr  60099204 is having address detail, if we'll check IE03 (transaction by clicking address envelop)
    Thx.

  • Getting path to application associated with file type

    Hello,
    I'm looking for a platform-independent way to get path to application associated with given file type. Desktop API introduced in JSE 1.6 seems to do this, but it only lanuches the app.
    Any suggestions will be apprecieted

    Okay then, how can I open the file in it's associated
    application AND get the Process object of app's
    instance?If it doesn't bother you that the app will only work on windoze, then you can use the shell "start" command on the file.
    Process proc = Runtime.getRuntime().exec(new String[]{"cmd", "/C","start",filePath});However waitFor() will only wait for the process to be launched, not completed. Since your program doesn't know what Windoze will choose to launch, this makes sense.

  • Get path of script you're running

    I know you can get path of the documet you're working on activeDocument.path, but can you get the path of the script you're running as well?

    If you want the path of a running script you could use..
    function WhoAmI() {
    var where;
    try {var F = FO;
      }catch( err ) {where = File(err.fileName);}
    return where;
    As for using:-  photoshop.executeScript (photoshop.jsx);
    This is supposed to do an eval, so it's not executing "photoshop.jsx" it is trying to evaluate it into a command.
    I have never seen a working example of executeScript and have never managed to get it to work.

  • Need help with error on Lion Server (kernel: add_fsevent: unable to get path for vp ..)

    I have had some Xsan issues and one of my volumes kept failing. I did a complete hard reboot of the entire system after trying all the cvfsck options. Now the volume seems to be ok but I am now getting the following errors and can not figure out what they are. Any help to a new Admin would be greatly appreciated.
    5/7/12 1:59:13.000 PM kernel: add_fsevent: unabled to get a path for vp 0xb129000.  dropping the event.
    5/7/12 1:59:15.000 PM kernel: add_fsevent: unable to get path for vp 0xb12a4d0 (live.0.indexHead; ret 22; type 4)
    5/7/12 1:59:15.000 PM kernel: add_fsevent: unabled to get a path for vp 0xb12a4d0.  dropping the event.
    5/7/12 1:59:15.000 PM kernel: add_fsevent: unable to get path for vp 0xb129de0 (live.1.indexHead; ret 22; type 4)
    5/7/12 1:59:15.000 PM kernel: add_fsevent: unabled to get a path for vp 0xb129de0.  dropping the event.
    5/7/12 1:59:15.000 PM kernel: add_fsevent: unable to get path for vp 0xe3964d0 (live.2.indexHead; ret 22; type 4)
    5/7/12 1:59:15.000 PM kernel: add_fsevent: unabled to get a path for vp 0xe3964d0.  dropping the event.
    5/7/12 2:01:22.024 PM mdworker32: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    5/7/12 2:01:22.525 PM com.apple.mdworker.pool.0: PSSniffer error: Invalid argument
    5/7/12 2:01:24.697 PM mdworker: FontImporter: Validation failed - "/Volumes/Matilda/Dexter/Randy project - Burke update/James E Burke Awards video revision/Past Video files/ETH742/tricyclestudios (After FX) Jeremy/Assets/FUTURA_4.TTF".
    5/7/12 2:01:24.697 PM mdworker: FontImporter: Validation Result - "(
        kATSFontTestSeverityFatalError
    Then I got a few more of the errors like the top lines.
    Please help!!
    Thanks,
    Kevin Rosenthal

    Turns out there were disk issues that I repaired by rebooting into Lion Recovery Mode (restart, hold Command-R during startup) and running Disk Utility. Disk Utility reported:
    Volume bitmap needs minor repair for orphaned blocks
    Invalid volume free block count
    It fixed both problems and the drive then verified clean.
    While I was there, I also repaired permissions, though I doubt that the permission oddities were the cause of the errors.
    After rebooting into normal Lion, two things happend:
    Time Machine quite happily went back to work and took a backup, no issue. Several hourlies have run since then, no problems.
    Spotlight did some re-indexing. This caused some hangs (spinning beachballs) at first, but it self-cleared. It definitely didn't last long enough to re-index the entire drive; I'm guessing that it needed to re-index some of the repaired sections.
    So far as I know, no files were corrupted -- but the drive is about 80% free space, so odds are that the orphaned blocks were not in a critical area.

  • How to get the details of Transports which are yet to be imported

    Hi Experts,
    Kindly let me know how to get the Transport request details which were not yet imported.
    For example:
    We have two client in development system 300 and 400, The transports which are created in 300 and imported to 400 (in SCC1).
    I need to know the details of transport requests related to 300 which are yet be to moved to 400.
    Where can i get these details.
    Thanks,
    Narasimhan Krishna

    Narasimhan,
    Take a closer look at Yves KERVADEC's approach. The issue here is that typically SCC1 is used to move transports which have not yet been closed.  You can see the details of any transport via se01/se09/se10, whether open or closed, but my interpretation of your question is that the customer wants to know which transports have been imported into the unit test client (400) via SCC1, which transports have been brought in by the transport system (after they were closed), and which transports have not yet been sent to either the unit test or QA system (i.e. are still open).
    My guess is that you are trying to track down why things work in the unit test client and not in the QA client. That is actually a different question with a different approach, but if that's what you really want to answer, go ahead and ask that question in a separate thread and you'll get a ton of techniques.
    Back to the question you actually asked: By writing a query, you can get a list of transports which have been brought in to the unit test client via SCC1. You can also get this information from SCC1 --> Goto --> Log Display. Then click All Transport Requests and doubleclick on the client. This will give you the import log of your unit test client with date/time stamp. Analysis of that data indicates to me that perhaps you may want to look at CC0_RSCCPROT03_ALV, but I'm not an ABAPer so the previously mentioned tables are probably better.
    Anyway, once you have a list of transports which have been imported, you can subtract out the ones that have been closed and transported downstream (and back into the unit test client.. your transport path does re-import the final version of the transports into the unit test client... right?). You can get that information from another query or you can get the list from STMS as suggested by Aparajit Banik.Then you'll have a list of transports which have been imported into the unit test client via SCC1 but have not yet been released and made it downstream. This will give you a "hit list" of transports which might be causing a mismatch between your unit test and QAS clients. You would then inspect them more closely with SE09/SE10/SE01 (I prefer se01, but different folks prefer different version of the transaction).
    Again, there are better ways to deal with client mismatches, but I'm answering the question you asked in case I misunderstood the underlying subtext.
    I hope this helps!
    Best regards,
    --Tom

  • Illustrator path to Presets/Scripts including locale

    Hi,
    I've made a little jsx Illustrator script I'd like to pack as an extension.
    Looked at MXI tech note Path Tokens appending and found the $presets token.
    Unfortunately it does NOT include the locale in it's path.
    For example, my path is /Applications/Adobe Creative Suite 5/Adobe Illustrator CS5/Presets.localized/en_GB/Scripts
    For other locales that will be different and the $presets toke doesn't help, it's the sames as $illustrator/Presets.localized as far as I can tell.
    How can can I set the path of my script to Illustrator's Scripts folder from my MXI ?

    Hello Carl,
    Thank you very much for taking your time for this.
    It looks promising, but unfortunately this doesn't fully work as expected.
    I've updated XManConfig.xml as advised and repackaged/installed my script
    but it gets written into en_US instead of en_GB.
    Not sure how the $LOCALE token works.
    The 'workaround' I have in place at the moment works, but it's pretty messy/hacky:
    I copy the script for EVERY locale illustrator has.
    Even with this, I'm not sure if all the possible install locales are the ones that are listed
    in the Illustrator Download page:
    <!-- Illustrator Install Locales -->
              <file source="Save Selection Coordinates.jsx" destination="$presets/cs_CZ/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/da_DK/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/nl_NL/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/en_GB/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/en_US/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/fr_FR/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/en_GB/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/de_DE/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/it_IT/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/ja_JP/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/ko_KR/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/pl_PL/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/ru_RU/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/es_ES/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/sv_SE/Scripts/" shared="true" />
    or the ones used in the legal notes:
    <!--All legal locales-->
    <file source="Save Selection Coordinates.jsx" destination="$presets/ar_AE/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/cs_CZ/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/da_DK/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/de_DE/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/el_GR/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/en_GB/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/en_US/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/es_ES/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/es_MX/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/fi_FI/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/fr_CA/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/fr_FR/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/he_IL/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/hu_HU/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/it_IT/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/ja_JP/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/ko_KR/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/nb_NO/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/nl_NL/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/pl_PL/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/pt_BR/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/ro_RO/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/ru_RU/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/sv_SE/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/tr_TR/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/uk_UA/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/zh_CN/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/zh_TW/Scripts/" shared="true" />
    I really hope you're solution can be tweaked to work as it would be cleaner to update XManConfig.xml along with the script than making loads of unneccesary copies.
    Regarding the next release, yes, the localized presets token would be very helpful.

  • I'm having a big issue with scripts and sites I need.

    I am an Etsy shop owner and always been able to access my shop just fine all the sudden about three weeks ago I cannot log in to my shop on ff. I can view the Etsy site but when I try to log in it just loads and loads and will not let me. I know it is the script bc I added a script turn off add on and I could log on but Etsy will not let you have it turned off to edit items if your shop so I had to download chrome just to go to my shop which is annoying, I do not like chrome.
    Other than that a few more sites like creative market and a few blogs will not load anymore for me. I have already re-set and that did not work. Also I get a lot of script not responding plugin popups that freeze and crash. This is really annoying. Does anyone know a fix? Thanks..

    You can try basic steps like these in case of issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and only cookies from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • Returning an Object Array

    I am unable to figure out the way in which I can return an object array from a cpp file to java. Is there any obvious error which you can spot in my CPP file? When I try to return a single object in the native function, it works fine but when I try t

  • How to change DV/DVCPRO video to 16:9 widescreen aspect ratio in Final Cut Pro X?

    I shot some DV video footage on a Canon XL2 in 16:9 widescreen aspect ratio mode. I captured it on a Firestore and imported it into Final Cut Pro X, and it is now being displayed in an incorrect standard 4:3 aspect ratio. How can I change the aspect

  • Creative Suite 6 now asking for serial number after minor updates

    I bought the full version of Creative Suite 6 on release. Just recently after installing some (but in typical Adobe fashion not all) updates, apps from the suite start up by saying that I am in a 30 day trial! I have to then press the license button

  • HT3622 Problem with iTunes recognizing 2 different iPod Nanos.

    I have an original 2GB Nano Silver (2nd Gen), and recently acquired a new 16 GB Nano (6th Gen).  After using iTunes to install Playlists on the new 16 GB Nano, and accepting the software update for the iPod, it now refuses to recognize my old Nano. I

  • Servlet RequestDispatch problem

    I am using RequestDispatch to pass control from one servlet to another. My problem is that when I forward the request... It passes control to the next servlet which executes all the way through. But then passes control back to the calling servlet whi