Inserted .swf movie works fine on PC, but not on website.

Greetings!
Using Captivate 4, I created a New User Training module that demonstrated a program within certain slides of the module as a .swf animation.  The .swf animation was another, smaller Captivate4-created simulation, published as a Flash 8 file.  When I preview, and after publication, the simulation movie displays and plays as designed.  However, when the file is uploaded to its destination website, the simulation movie does not display at all.
What can I do to get these simulation demos to work?  The overall CBT module won't be effective without them.
Thanks!
Paul
And while I'm asking, what image content type is allowed in these forums?  I get this message when I try to upload a 200x116 jpeg to illustrate my challenge.  I continue to get: [The content type of this image is not allowed.]

Hi Paul,
I think your problem is the same as described in this thread: http://forums.adobe.com/thread/515052?tstart=0
If you have Flash then try and create a Flash loader as described in the above thread. If not then try and disable the Auto Play feature on the small embedded Captivate 4 file and see if it will work for you then.
/Michael
Visit my Captivate blog with tips & tricks, tutorials and Widgets.

Similar Messages

  • Fixed headers while scrolling works fine in bids but not when deployed to reportserver

    Hi, I am using SQL Server 2008 R2 & deploying a report to reportserver with fixed headers while scrolling, this works fine in bids but not when deployed to reportserver. We are IE 9.
    Thanks in advance...............
    Ione

    Hi ione721,
    Since you have identified the 2 xml files are identical, according to my knowledge, there maybe a compatibility issue with IE 9 and SSRS 2008 R2, so I suggest that you could run the report in compatibility mode. Please make sure you have turned on Compatibility
    View in Internet Explorer 9 by following steps:
    When Internet Explorer recognizes that a webpage is not compatible, you will see the Compatibility View button on the Address bar. Try clicking it.
    When Compatibility View is turned on, the button changes from an outline to a solid color when you view the page.
    The following screenshots are for your reference:
    If you have any questions, please feel free to let me know.
    Best Regards,
    Wendy Fu

  • Query working fine in toad but not in forms 6i

    i have following coding on when button press triger
    declare
    CURSOR C1(year number,month number) IS
    SELECT ITM_NO,ITM_NAME,XAQ QTY,XAQ*TP VAL,gp
    FROM
    select ci.itm_no ITM_NO,ci.itm_name ITM_NAME ,cpg.group_id gp ,xaq ,ALLIED.CORP_PRIC_TP( ci.itm_no)TP from
    select prod_no,sum(xaq)*1 xaq
    from
    select prod_no, sum(nvl(xrd_sqty,0)) Xaq
    from allied.mrk_01_02
    where year=year and f_prd=month
    and area_id in (10200,10400,10100,10300,10500,20500,20300,20100,20200,20400,30100,30400,30300,30200)
    group by prod_no
    union all
    select prod_no, sum(nvl(xrd_sqty,0)) Xaq
    from allied.mrk_02_02
    where year=year and f_prd=month
    and area_id in (10200,10400,10100,10300,10500,20500,20300,20100,20200,20400,30100,30400,30300,30200)
    group by prod_no
    union all
    select prod_no, sum(nvl(xrd_sqty,0)) Xaq
    from allied.mrk_03_02
    where year=year and f_prd=month
    and area_id in (10200,10400,10100,10300,10500,20500,20300,20100,20200,20400,30100,30400,30300,30200)
    group by prod_no
    union all
    select prod_no, sum(nvl(xrd_sqty,0)) Xaq
    from allied.mrk_04_02
    where year=year and f_prd=month
    and area_id in (10200,10400,10100,10300,10500,20500,20300,20100,20200,20400,30100,30400,30300,30200)
    group by prod_no
    group by prod_no
    ) A,allied.corp_inv ci,allied.corp_01_01 c01, allied.corp_01_02 c02,allied.corp_prod_group cpg,allied.v_prod_grp vpg
    where ci.itm_no=a.prod_no
    and ci.itm_no=c02.itm_no
    and c01.grp_id=c02.grp_id
    and c01.grp_id in(55,56,57,58,59)
    and vpg.prod_no =ci.itm_no
    and vpg.group_id=cpg.group_id
    where XAQ <>0;
    Begin
         delete from fiaz.tmp_topten_prod;
         for i in c1(:year,:month)
    loop
              insert into fiaz.tmp_topten_prod
              values(i.itm_no,i.itm_name,i.qty,i.val,i.gp,0);
         end loop;      
    standard.commit;
    message('inserted in temp');
         exception when others then
              message (dbms_error_text);
              message (dbms_error_text);
    End;
    Same Query (as used in cursor c1) works fine in toad but giving wrong result from forms... and the problem is xaq field i.e returns incorrect qty...
    i guess union clause is not working in this situation...
    plz suggest me the appropriate changes in the query to work well from form as well...
    combination:Forms 6i,Oracle 8.0.6
    Regards,
    Usman Afzal

    As per your suggestion i have created a stored procedure but the followin error prevents procedure creation
    create or replace procedure fiaz.topten_prod(v_yr number,v_mn number) is
    begin
    delete from fiaz.tmp_topten_prod;
    insert into fiaz.tmp_topten_prod(itm_no,itm_name,qty,val,grp_id,prority)
    SELECT ITM_NO,ITM_NAME,XAQ QTY,XAQ*TP VAL,gp,0
    FROM
    select ci.itm_no ITM_NO,ci.itm_name ITM_NAME ,cpg.group_id gp ,xaq ,ALLIED.CORP_PRIC_TP( ci.itm_no)TP from
    select prod_no,sum(xaq) xaq
    from
    select prod_no, sum(nvl(xrd_sqty,0)) Xaq from allied.mrk_01_02
    where year=v_yr and f_prd=v_mn
    and area_id in (10200,10400,10100,10300,10500,20500,20300,20100,20200,20400,30100,30400,30300,30200)
    group by prod_no
    union all
    select prod_no, sum(nvl(xrd_sqty,0)) Xaq
    from allied.mrk_02_02
    where year=v_yr and f_prd=v_mn
    and area_id in (10200,10400,10100,10300,10500,20500,20300,20100,20200,20400,30100,30400,30300,30200)
    group by prod_no
    union all
    select prod_no, sum(nvl(xrd_sqty,0)) Xaq
    from allied.mrk_03_02
    where year=v_yr and f_prd=v_mn
    and area_id in (10200,10400,10100,10300,10500,20500,20300,20100,20200,20400,30100,30400,30300,30200)
    group by prod_no
    union all
    select prod_no, sum(nvl(xrd_sqty,0)) Xaq
    from allied.mrk_04_02
    where year=v_yr and f_prd=v_mn
    and area_id in (10200,10400,10100,10300,10500,20500,20300,20100,20200,20400,30100,30400,30300,30200)
    group by prod_no
    group by prod_no
    ) A,allied.corp_inv ci,allied.corp_01_01 c01, allied.corp_01_02 c02,allied.corp_prod_group cpg,allied.v_prod_grp vpg
    where ci.itm_no=a.prod_no
    and ci.itm_no=c02.itm_no
    and c01.grp_id=c02.grp_id
    and c01.grp_id in(55,56,57,58,59)
    and vpg.prod_no =ci.itm_no
    and vpg.group_id=cpg.group_id
    where XAQ <>0;
    commit;
    end;
    Error:
    "PLS-00201: identifier ALLIED.MRK_01_02 must be declared "
    i have not changed any thing in query working fine in toad without create procedure text and if i describe this table it shows the structure (desc allied.mrk_01_02)
    Now where is the problemmmmm
    Plz Help

  • Can't FLIP a quick RENDER! Works fine in SHAKE but not to flip or Disk!

    Learning with Lynda.com!
    Part 1 has you rendering two files, one is a still image, the other a quicktime movie, I don't have the money for premium so I got my own clouds movie (.mov) and added a still plane.
    I key framed 1 - 100 and playing it back its fine in shake, but not on FLIP or DISK, its nothing but a still image. Have done it 5 times making sure that all the right buttons are on, or not, and as I said, it works INSIDE of shake but won't RENDER to FLIPBOOK!
    I don't suppose anyone wants to send me the exercise files? (on knees begging LOL) I am a member, just can't afford $300 for one pop and this is really the only program I need to learn.
    Thanks!

    Sorry if I'm pointing out something obvious that you already know. Have you checked the time range in the render dialog? Shake does not fill in the values for you automatically, and defaults to "1" so only renders the 1st frame. It needs to be set to eg "1-100".

  • ITunes/Apple Mobile Device works fine w/iPod but not iPad

    Hi. I'm getting stuck on this and would like some help to solving this problem. Basically I'm trying to sync my iPad; however, whenever I connect it, this meesage pops up: "this iPad cannot be used because the Apple Mobile Device is not started." The problem is that when I try to plug in an iPod using the same wire, it works fine, no problem, but the iPad just won't connect. I have since uninstall and reinstall all Apple components (iTunes, AMD, QuickTime, etc) and it's still the same thing...iTunes connects fine w/ the iPod, but not the iPad. What to do? Thnx in advance.
    EDIT:
    Btw, I've tried to connect the iPad while the iPod is connected, and the "Apple Mobile Device is not started" error message pops up too, which is weird, because the iPod is connected and syncing at that time...which means the Apple Mobile Device thing IS started. >.>

    The iOS devices use Apple Mobile Device Service, while older iPods use the iPod Service.
    Checkout this Apple document -> How to restart the Apple Mobile Device Service (AMDS) on Windows
    Are you able to restart the service after following the steps in that article?

  • Apple TV working fine with Wireless, but not on Ethernet

    I just got an Apple tv for my B-day and I can't get the Ethernet port to work.
    It works fine on wireless but if i plug in the cable to my 5 port switch that then goes to my router it will not login to the store, or sync or fine youtube. It has and ip and everything. I tried opening that port 38 something. And no go? Does anyone have any ideas?
    I have a 2wire router, and one 5 port switch, the PS3, Wii and Xbox all work on the switch just fine.
    I even upgrade to firmware 2.01

    Thanks for your help guys
    I have tried another ethernet cable but no go. I'm going to get a new one at the store today. As for the IP. the first time I plugged it in the IP was way diffrent from the one on my router so i manually added the new ip and subnet mask etc etc. And still no go. It is seen in itunes but tells me it can't sync. And if i go to the Apple TV it will not open any of the web enabled features. No you tube, no store, no nadda.

  • My movie works fine in imovie but when shared with media browser the audio isn't right

    My movie in imovie works fine. Once I share it with media browser (in order to make a dvd) the movie audio doesn't sync right. There is also extra audio that isn't in the imovie. 

    Hi
    How do You "Share to Media Browser" ?
    As ?
    • Mobile
    • Medium
    • Large
    • HD 720p
    • HD 1080p
    I use Large or Medium - and if audio ill behaves as Large - I use Medium
    Never Mobile or HD - as resulting DVD will be bad.
    And never "Share to iDVD" as this too is far from optimal.
    Yours Bengt W

  • Upload files from my app works fine in JDev but NOT on app server???

    i guys,
    I'm using jdeve 10.1.2. and adf bc's. So here's my problem:
    In my application i need to allow for the upload of files from user's computers. This works perfectly fine from jdeveloper but when i deploy my application on the application server i get the following error:
    JBO-26041: Failed to post data to database during "Insert": SQL Statement "D:\TrademarkTestData\TrademarkunitTestData.xls (The system cannot find the path specified)".
    D:\TrademarkTestData\TrademarkunitTestData.xls (The system cannot find the path specified)
    For some reason the system cannot find the path. This is most frustrating as it works perfectly fine when run from jdeveloper.
    Any ideas would be most welcome.
    Thanks in advance,
    Newbe

    Hi Frank,
    Thanks for the response. I've consulted with our server guy and he says that there are no read/write privileges. Jdev is not on the server.
    I'm really stumped by this so if you have any ideas, I'd really appreciate it.
    Happr New Year to you,
    Newbe.

  • FCP Quicktime Movies works well in iDVD, but not in DVDSP

    Hello,
    I work in a film school with several iMac & PowerMac editing suites running Final Cut Studio 2.
    Every computer is set up exactly the same way, yet we are having odd problems with DVDSP on one of the PowerMacs.
    From FCP6, we export self contained quicktime movies, that we then Compress, and then import into DVDSP. This system works well on all of our new iMacs, but on the 3 year old PowerMac, the resultant DVDs that it burns do NOT playback on any DVD Players at all.
    Yet strangely, when I take the same QT Movie into iDVD on that computer, it burns a perfectly good DVD.
    I have even tried bringing the QT Movie files and Compressor files from the Power Mac and transfer them onto an iMac and have been able to burn them fine that way as well. This is occurring with all the FCP projects on this computer.
    Any help would be much appreciated,
    Sincerely,
    Marc Griffin

    It could be a few things, but it may be that the drive itself is dirty or going. It sounds strange but there were people on the board who ran into issues where they could burn the DVD but not play it back on the same drive. Could be something became corrupted. Also people have noticed some strange things happening if an install of Studio 2 was done over a prior installation - it seemed to be most reliable by doing a fresh OS install then installing 2. Also does the computer have all the updates to the software? Are all the computers running the same OS? Have you deleted prefs and repaired permissions?
    Also check your settings on the PowerMac, are you doing a proper build/burn? Did you set a first play? Are you using the same type of media?

  • Trigger works fine in Toad but not in the Application Form

    Hi All,
    I created a trigger that executes BEFORE UPDATE ON PO_REQUISITION_LINES_ALL. When I exceute in Toad a manual update on this table, the trigger appears correctly, but When I am on PIC form in PO, and execute save with blank value, the trigger doesn't work and doesn't appear.
    Do you know which is the reason?.
    Regards,
    Mariano.-

    Hi Srini,
    The problem is on Form POXRQERQ.fmx on PIC transactions. Trigger works fine If a create a new transaction. Because the message appears correctly in the screen, but when I update and change a value in the specific field on the screen, the message of the trigger doesn't appear and I don't know why...
    Please Help Me!
    Regards Mariano.-
    Version Of Application : 11.5.8
    Version Of Database : Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    Version Of OS : AIX Version 5.3!
    PROMPT Creating TRIGGER XX_PO_Espec_Iweb_Requis ...
    CREATE OR REPLACE TRIGGER XX_PO_Espec_Iweb_Requis
    BEFORE UPDATE OR INSERT ON PO_REQUISITION_LINES_ALL
    FOR EACH ROW
    DECLARE
    BEGIN
    RAISE_APPLICATION_ERROR(-20000,'You couldn't update or insert the PIC');
    END;
    SHOW ERRORS
    SPOOL OFF

  • Applescript works fine in ScriptEditor but not in Filemaker Pro

    I'm getting an odd result from an Applescript script being called from within Filemaker that I've not seen before nor have I found a reference to it online here or elsewhere.
    The following script creates three new records and makes a call to the Filemaker script "paste_into_container". The FM script "paste_into_container is very simple, it pastes whatever is currently on the clipboard into a specific container field. When the script is called from within Filemaker, the "paste_into"container" subscript will only paste the contents of the clipboard into the last new record. The container field on the first two records is left blank.
    It's almost as if the loop creates the new record, ignores the "go to last record and "paste_into_container" lines in the script, and then moves on to the next iteration of the loop.
    The script works fine when called from ScriptEditor but fails when called from within Filemaker. The script will also work if I drop the repeat loop and create just one record.
    I've tried increasing the delay added at the end of each loop but it does not make any difference whether it is 1 or 15 seconds.
    I'm sure it's something simple but I'm not seeing it and after two days it's time for help (of one kind or another)
    additional info:
    Mac OS 10.6.8
    Filmaker Pro 11 running with Filemaker Server 11
    Thanks in advance
    Phil
    tell application "FileMaker Pro"     show every record in table "Image_Info" in database myDB     go to layout 1 of database myDB
        repeat with i from 1 to 3         set myNewRecord to create new record in database myDB        go to last record        do script "paste_into_container"        delay 1    end repeatend tell

    Hi TW
    Good suggestion. I tried it but no result.
    Here's what's odd. I created two fields in the FM database, one called ScriptCall and the other ScriptResult. I then modified the applescript as follows:
    tell application "FileMaker Pro"
        show every record in table "Image_Info" in database myDB
        go to layout 1 of database myDB
        repeat with i from 1 to 3
            set myNewRecord to create new record in database myDB
            go to last record
         set cell "ScriptCall" in myNewRecord to "1"
            considering application responses
                do script "paste_into_container"
            end considering
          set cell "ScriptResult" in myNewRecord to "1"
            delay 1
        end repeat
    end tell
    I set this up to test where the problem might be. The results were odd. The applescript creates three new records.
    Record 1
    ScriptCall = 0
    ScriptResult = 0
    Record 2
    ScriptCall = 0
    ScriptResult = 0
    Record 3
    ScriptCall = 1
    ScriptResult = 1

  • Can't delete file after renaming due to Word file handle still present. Error staes document is still in use but it's really not. Worked fine in 2007 but not in 2010.

    I have some code associated with a Word Template. The template is opened, filled out and saved via a routing in vba. This all works fine in older 2007 version (which is version it was originally created in). Once this file is saved, the user can change the
    date in a text box and re-save document. The code saves using the new date for part of new file name and then deletes that older file from the server. It fails at the delete function because the newer version of word is not dropping the file handle from the
    first named file when user saves it to the new filename. In older version (2007) this handle was released as soon as file was saved to a different name. I can't seem to figure out how to release the old document filename so the old document file can be deleted.
    I hope I explained this well enough.
    Here's the code that woeked in version 2007 but fails in version 2010.
    Option Explicit
    Dim CAPEX01 As MSForms.ComboBox
    Dim CAPEX02 As MSForms.ComboBox
    Dim LocalPath As String
    Dim NetPath As String
    Dim OldPath As String
    Dim OldPathNet As String
    Dim DocName01 As String
    Dim DocName02 As String
    Dim DocName03 As String
    Dim DocName04 As String
    Dim DocName As String
    Dim DocNameold As String
    Dim TestDocName As String
    Dim filesys
    Dim newfolder
    Sub AutoOpen()
    ActiveDocument.ActiveWindow.View.Type = wdPrintView
    TestDocName = ActiveDocument.TextBox2
    OldPathNet = "\\yourPath\" & TestDocName & "\"
    End Sub
    Sub AutoNew()
    TestDocName = ActiveDocument.TextBox2
    OldPathNet = "\\yourPath\" & TestDocName & "\"
     ComboBox1.Locked = False
     ComboBox1.Enabled = True
     FillList1
     FillList2
     End Sub
    Sub DeleteOldDoc()
    OldPathNet = "\\yourPath\" & TestDocName ' & "\"
    DocNameold = OldPathNet & TestDocName & "-" & DocName02 & "-" & DocName03 & "-" & DocName04 & ".doc"
        If Not TestDocName = DocName01 Then
            Set filesys = CreateObject("Scripting.FileSystemObject")
        If filesys.FileExists(DocNameold) Then
            filesys.DeleteFile (DocNameold), True      
     'I get file permission error here
        End If
        End If
    If DocName01 <> "" Then
    If Not TestDocName = DocName01 Then
    If Not TestDocName = "" Then
        MsgBox "Project Proposal Has Been Moved From Year " & TestDocName & " To " & DocName01 & ""
    End If
    End If
    End If
    TestDocName = DocName01
    End Sub
    '''''''Document path functions''''''
    Sub chkpath()
    Set filesys = CreateObject("Scripting.FileSystemObject")
    If Not filesys.FolderExists("\\yourPath\") Then
       newfolder = filesys.CreateFolder("\\yourPath\")
    End If
    If Not filesys.FolderExists("\\yourPath\" & DocName01 & "\") Then
        newfolder = filesys.CreateFolder("\\yourPath\" & DocName01 & "\")
    End If
    End Sub
    ''''''Save Function''''''
    Private Sub CommandButton1_Click()
    DocName01 = ActiveDocument.TextBox2
    DocName02 = ActiveDocument.TextBox4
    DocName03 = ActiveDocument.TextBox1
    DocName04 = ActiveDocument.ComboBox1.Value
    chkpath
    NetPath = "\\yourPath\" & DocName01 & "\"
    DocName = NetPath & DocName01 & "-" & DocName02 & "-" & DocName03 & "-" & DocName04
    ActiveDocument.SaveAs2 FileName:=DocName, FileFormat:=wdFormatDocument
     ComboBox1.Locked = True
     ComboBox1.Enabled = False
     ComboBox2.Locked = True
     ComboBox2.Enabled = False
     TextBox1.Locked = True
     TextBox1.Enabled = False
     TextBox3.Locked = True
     TextBox3.Enabled = False
     TextBox4.Locked = True
     TextBox4.Enabled = False
     DeleteOldDoc
    End Sub
    Sub FillList1()
    Set CAPEX02 = ActiveDocument.ComboBox2
      With CAPEX02
          .AddItem "CASTING", 0
          .AddItem "HOT ROLLING", 1
          .AddItem "COLD ROLLING", 2
          .AddItem "FINISHING", 3
          .AddItem "PLANT GENERAL", 4
          .AddItem "MOBILE EQUIPMENT", 5
      End With
    End Sub
     Sub FillList2()
     Set CAPEX01 = ActiveDocument.ComboBox1
      With CAPEX01
          .AddItem "A Name", 0
          .AddItem "Another Name", 1
      End With
    End Sub
    Private Sub CommandButton2_Click()
        UserForm1.Show
    End Sub

    mogulman52 and Don,
    I went back and looked at my code and had already updated it to SaveAs in the new docx format. It still holds the lock handle in place until Word closes, unlike earlier versions which released the lock handle when you did a SaveAs.
    As a note, all my Word and Excel macro-enabled (dotm & xltm) templates are read only and are never filled in, prompting the user for a file name on any close event or if they run the code gets auto-named. I do the SaveAs and concatenate the file name
    from data on the document (or sheet) that has been filled in. During the SaveAs the docx gets saved to a network folder and also on a local folder. The lock gets renamed to the filename and remains until Word is closed.
    So my code still fails at the point noted below while trying to delete an old filename version after the file has been saved as a new filename in a new folder. So....
    The code is looking in the last folder where the docx file was saved for the older filename so it can be deleted. The newest docx version has already been saved in a different folder and has a new lock handle of its own. That lock is not my problem, it's
    the older file lock which really exists in the same folder as the first filename that the docx was saved to. It does not release that lock until I exit Word. My work around has been to instruct all users to manually delete the older version file.
    The other odd thing is this only happens when I run it from code, if you manually go through these steps with the SaveAs menu drop-downs in Word it will release the lock handle???
    Hope this isn't to confusing and thanks for all your suggestions and help.
    Sub DeleteOldDoc()
    OldPathNet = "\\yourPath\" & TestDocName ' & "\"
    DocNameold = OldPathNet & TestDocName & "-" & DocName02 & "-" & DocName03 & "-" & DocName04 & ".doc"
    If Not TestDocName = DocName01 Then
    Set filesys = CreateObject("Scripting.FileSystemObject")
    If filesys.FileExists(DocNameold) Then
    filesys.DeleteFile (DocNameold), True 'I get file permission error here- lock handle is still present from last SaveAs command in last folder where previous version of file was saved.
    End If
    End If
    If DocName01 <> "" Then
    If Not TestDocName = DocName01 Then
    If Not TestDocName = "" Then
    MsgBox "Project Proposal Has Been Moved From Year " & TestDocName & " To " & DocName01 & ""
    End If
    End If
    End If
    TestDocName = DocName01
    End Sub
    Glenn

  • Tbird will not send. unnown error. works in safe mode. turned off firewall and still does not work. works fine on desktop but not laptop

    cannot send on laptop. desktop, with same settings, works fine. getting unknown error on send. please help. here is the setup from the help function.
    thanks,
    tim
    WARNING:
    This contains sensitive information which shouldn't be forwarded or published without permission.
    Application Basics
    Name: Thunderbird
    Version: 31.4.0
    User Agent: Mozilla/5.0 (Windows NT 5.1; rv:31.0) Gecko/20100101 Thunderbird/31.4.0
    Profile Folder: C:\Documents and Settings\Tim\Application Data\Thunderbird\Profiles\dhtmqpol.default
    (Local drive)
    Application Build ID: 20150109111741
    Enabled Plugins: about:plugins
    Build Configuration: about:buildconfig
    Memory Use: about:memory
    Mail and News Accounts
    account1:
    INCOMING: account1, Tim Corey, (imap) imap.gmail.com:993, SSL, passwordCleartext
    OUTGOING: smtp.gmail.com:465, SSL, passwordCleartext, true
    account2:
    INCOMING: account2, Local Folders, (none) Local Folders, plain, passwordCleartext
    Crash Reports
    Extensions
    Important Modified Preferences
    Name: Value
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    extensions.lastAppVersion: 31.4.0
    gfx.blacklist.direct2d: 3
    gfx.blacklist.layers.direct3d10: 3
    gfx.blacklist.layers.direct3d10-1: 3
    gfx.blacklist.layers.direct3d9: 3
    gfx.blacklist.layers.opengl: 3
    gfx.blacklist.stagefright: 3
    gfx.blacklist.suggested-driver-version: 6.1400.1000.5218
    gfx.blacklist.webgl.angle: 3
    gfx.blacklist.webgl.msaa: 3
    gfx.blacklist.webgl.opengl: 3
    mail.openMessageBehavior.version: 1
    mailnews.database.global.datastore.id: 7bba5461-432a-473f-a4e4-9a009dfee73
    mailnews.database.global.indexer.enabled: false
    network.cookie.cookieBehavior: 2
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1375374210
    places.history.expiration.transient_current_max_pages: 78086
    plugin.importedState: true
    privacy.donottrackheader.enabled: true
    Graphics
    Adapter Description: Mobile Intel(R) 945 Express Chipset Family
    Vendor ID: 0x8086
    Device ID: 0x27ae
    Adapter RAM: Unknown
    Adapter Drivers: igxprd32
    Driver Version: 6.14.10.4926
    Driver Date: 2-15-2008
    WebGL Renderer: Blocked for your graphics driver version. Try updating your graphics driver to version 6.1400.1000.5218 or newer.
    GPU Accelerated Windows: 0. Blocked for your graphics driver version. Try updating your graphics driver to version 6.1400.1000.5218 or newer.
    AzureCanvasBackend: skia
    AzureSkiaAccelerated: 0
    AzureFallbackCanvasBackend: cairo
    AzureContentBackend: cairo
    JavaScript
    Incremental GC: 1
    Accessibility
    Activated: 0
    Prevent Accessibility: 0
    Library Versions
    Expected minimum version
    Version in use
    NSPR
    4.10.6
    4.10.6
    NSS
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC
    NSS Util
    3.16.2.3
    3.16.2.3
    NSS SSL
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC
    NSS S/MIME
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC

    Thanks for the reply. here is the behavior for all steps:
    1. use oper. system safe mode: it works, I can send email
    2. no oper. sys. safe mode, t'bird safe mode: cannot send mail
    3. no oper. sys safe mode, no t'bird safe mode, all addons disabled: cannot send mail.
    It only works when i use oper. sys. safe mode.
    Addons for t'bird were enabled in this test.
    (Not using T'bird safe mode either in this test.)
    Use BitDefender antivirus, which does not have a setting to turn on/off email scanning. Should I contact BD support? (it seems to point to BD as causing the problem. Interesting that I don't have this problem on 2 other desktops, only the laptop. And in the past, T'bird worked on the laptop. I have tried uninstall and reinstall, but mozilla is SAVING all my account and other info, so I cannot do a clean install. it seems to me that if I could do a clean install, it might work. Any idea how to remove all the data and uninstall?
    thanks,
    tim

  • Works fine in debug but not when published

    So I have simple navigation code setup to step through frames (I'm using Flash instead PowerPoint--too many pictures that are PSDs and illustrations that are AIs to do the conversions over to something PowerPoint understands).
    The code:
    stop();
    stage.addEventListener(KeyboardEvent.KEY_DOWN, slideNav);
    function slideNav(event:KeyboardEvent):void
    switch (event.keyCode)
      case Keyboard.DOWN:
       nextFrame();
       break;
      case Keyboard.UP:
       prevFrame();
       break;
      case Keyboard.HOME:
       gotoAndStop(1);
       break;
      case Keyboard.END:
       gotoAndStop(this.totalFrames);
       break;
    When I test it using the debug (Ctrl+Shift+Enter) it works fine.  When I publish it, the up and down arrows work but the Home and End keys do not work.  They do nothing, no error messages, nothing.
    Using Flash CS4 Pro 10.0.2.  ActionScript 3.  Windows 7 64-bit.
    Any suggestions?
    Thanks.

    Nevermind.  That was stupid of me.  Have to disable the keyboard shortcuts or it doesn't work.

  • PDF Report with Korean font work fine in 9iDS but not in 9iAS

    Hi,
    I am using Oracle 9i Application Server 9.0.2.0.0, When i try to run the report using Korean font The pdf report not showing the korean font correctly.
    I tried the same in 9ids , which is working properly. I have done exactly the same setting in 9ias, but it is not working.
    The Oracle ias report service dialog shows version 9.0.2.0.3
    My 9ias settings
    NLS_LANG = AMERICAN_AMERICA.KO16KSC5601
    In uifont.ali the settings are
    [ PDF ]
    .....ZHT16BIG5 = "MSungStd-Light-Acro"
    .....ZHS16CGB231280 = "STSongStd-Light-Acro"
    .....KO16KSC5601 ="HYSMyeongJoStd-Medium-Acro"
    Installed the Korean font(HYSMyeongJoStd-Medium-Acro) from Adobe site
    the font file HYSMyeongJoStd-Medium-Acro exist in C:\Program Files\Adobe\Acrobat 5.0\Resource\CIDFont
    also installed the asian Suit 2000(Union Way) on the ias server.
    I have checked the Smoothing display option also in Acrobat 5. The Document font is showing
    Origial font = HYSMyeongJoStd-Medium-Acro type=type1 (CID) Encoding=KSC-EUC-H
    Actual font = HYSMyeongJoStd-Medium-Acro type=type1 (CID)
    Anyone please let me know do i need to do any other changes or i need to apply any patch . Please reply, Thanks in advance
    with Regards
    Rohit.

    Hi Navneet,
    Thanks for the immediate reply.
    As such there is no change in both the report servers , same output in win2000 and win2003. I am generating the rep from 9ids for both 9ids and 9ias, and i am using font UWKMJF which is korean charecter support, but 9ias is generating some junk charecters with spacing , 9ids is working fine.
    The PDf Document font is showing
    Origial font = HYSMyeongJoStd-Medium-Acro type=type1 (CID) Encoding=KSC-EUC-H
    Actual font = HYSMyeongJoStd-Medium-Acro type=type1 (CID)
    which is same as 9ids, but the data displaying in the pdf are not proper.
    As you mentioned about the patch, which patch i have to apply. can you please also mention the patch numbers.
    Please help me.
    Thanks and Regards
    Rohit.

Maybe you are looking for