SWF works fine in IE but not in QT COM flash player

Dear all,
I am writing a QT application which needs to display a SWF file. I finished and tried to display a sample SWF file (a.swf) downloaded from internet and result was OK.
Now I started to write my own SWF file (b.swf) using Action Script 3 and compiled with MXMLC. But b.swf could not be displayed into my QT application.
What is strange is that both a.swf and b.swf could be displayed in IE.
Could anybody guess what the reason would be, please?  Thanks in advance.

Problem solved. What happened is that my image was not big enough to be seen in a small window so it appears as if the image was not loaded at all.

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

  • 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?

  • 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".

  • Trouble playing .swf - works offline in browser but not online on website

    Hi there,
    I'm having trouble displaying a flash .swf file properly on my website: http://dreamriderproductions.com/fun/game-test/
    When I view the .swf file locally on Chrome, I get a text box to enter my name and I can click Go and keep playing the game. For some reason, when it's up on the website, there's no text box so I can't progress. Can you?
    Background: The game did used to connect to a database, but the upgrade of our website (and relocation of the swf) seems to have broken the database connection. People couldn't progress past the first screen presumable because the information on which city they were in couldn't be submitted to the database. We've got a version of the game with the database connection disabled and so the game should now work - it works locally for me but not on the website!
    Any ideas?
    Thanks
    Sion

    The code you have posted is not the same code as used in:
    <div id="gallery">
    in the link above.
    The reason that the Flash is not displaying in FF is that the portion of the code used by FF was omitted. The code currently used on the page only works in IE.
    I'm no great fan of the IE conditional statements used in the code you posted so I don't blame you for not using it. But you do need to provide something for FF.... the old, out dated method would be to add and <embed> for FF... here's the newer method..
    So either use code you posted above or better yet, get rid of that and replace the current <object> with
    <div id="gallery">
    <object id="FlashID" data="flash/201.swf" type="application/x-shockwave-flash" width="958" height="242">
       <param name="movie" value="flash/201.swf">
       <param name="quality" value="high" />
         <param name="wmode" value="opaque" />
         <param name="swfversion" value="6.0.65.0"/>
    </object>
    </div>
    Give that a try. Will work in both FF and newer IE versions.
    Best wishes,
    Adninjastrator

  • 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.

  • Load swf works in Publish Preview but not when published

    Hi Folks,
    I having a problem where im trying to load two 1mb SWF movies into my Flash piece. It works fine in Publish Preview but not when I finally publish. I get this error in IE:
    SecurityError: Error #2000: No active security context.
    I have googled around and there is some talk online of a hack where by you get a timeout to overcome this. However im not so technical do I dont really know how to do this to my code in AS3. My code at the moment is below.
    Any help would be much appreciated and rewarded with Karma
    movieClip_12.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_9);
    var fl_Loader_9:Loader;
    //This variable keeps track of whether you want to load or unload the SWF
    var fl_ToLoad_9:Boolean = true;
    function fl_ClickToLoadUnloadSWF_9(event:MouseEvent):void
    if(fl_ToLoad_9)
      fl_Loader_9 = new Loader();
      fl_Loader_9.load(new URLRequest("search.swf"));
      addChild(fl_Loader_9);
    else
      fl_Loader_9.unload();
      removeChild(fl_Loader_9);
      fl_Loader_9 = null;
    // Toggle whether you want to load or unload the SWF
    fl_ToLoad_9 = !fl_ToLoad_9;
    movieClip_14.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_10);
    var fl_Loader_10:Loader;
    //This variable keeps track of whether you want to load or unload the SWF
    var fl_ToLoad_10:Boolean = true;
    function fl_ClickToLoadUnloadSWF_10(event:MouseEvent):void
    if(fl_ToLoad_10)
      fl_Loader_10 = new Loader();
    fl_Loader_10.load(new URLRequest("refunds.swf"));
      addChild(fl_Loader_10);
    else
      fl_Loader_10.unload();
      removeChild(fl_Loader_10);
      fl_Loader_10 = null;
    // Toggle whether you want to load or unload the SWF
    fl_ToLoad_10 = !fl_ToLoad_10;

    I think this is either a problem with my site preLoader or my external .swf Loader. I was checking out the bandwith profiler and saw something weird and I wondered if anyone could explain...I've added a picture. I have a blank frame on only my actions layer to export classes to and it seems that frame 2 is "bleeding" into frame 1. Could this be my problem? Why would this happen? Thanks

  • 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.

  • HTML Mashup works fine in Silverlight, but not in UI5

    Hello community,
    we are building an integrated Customer Service Management solution for a Client of ours, via the SAP Cloud for Customer platform (solution for Services).
    Currently, we are trying to embed some external Business Process activities in our Service Tickets UI Screens, by using HTML Mashups. Our reference has been the standard Cloud Application Studio documentation, and some well-written articles here on the SCN, such as the following: HTML script mashup - launched from an Embedded Component by Vinita Sinha.
    In our solution, the HTML Mashup has been connected via a Port Binding interface to the C4C UI Layer, in a way to pass it some relevant information such as the Ticket ID, the Customer ID and the Cause Category ID, as shown in the picture below:
    We built a custom Port Binding object, but if you use the Standard "Ticket Information" port Binding (in category "Productivity & Tools"), the effect will be the same. The Standard Port Binding we used in the Mashup Authoring configuration floorplan is the following:
    In addition, we discovered that, in our case, this Mashup development works just in Silverligh Web Interface, but not in UI5. While in Silverlight we are able to consume and correctly interact with our Mashup, in UI5 we can see just an empty pane stuck at the initial "Loading..." screen, as shown below:
    We opened an incident with the SAP Support for our system, and we have been told to try to build the Mashup can work just with no Port Binding specified. Indeed, if we remove the Input Port Binding from the Mashup configuration, the screen seems to work fine even in UI5, as shown below:
    Unfortunately, this technical constraint does not cover sufficiently our Business Scenario, because the Mashup should be initialized with our Service Ticket (and Customer) data.
    Has anybody ever experienced this kind of issue? And how did you solve it? If it has no resolutions, is there available any possible workaround?
    Thanks a lot for your contributions.
    Cheers,
    Davide

    Hi Pragya,
    thank you for the update.
    Another question: could you please give us any reference about these corrections you told about? Maybe they could be relevant in our case too.
    Our raised incident number is: 3100851983
    Kind regards,
    Davide

  • 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.

  • Embedding image in PDF works fine in CS2 but not CS3

    When we create a PDF from CS3 with the images embedded and then open it on a CS2 machine it warns us about the fact that the file was created in a newer version of illustrator and then opens the file.
    When we try and open the file on a CS3 machine it tried to relink the files and will not display the embedded images (they must be there as they are there when opening it in CS2)
    Is there anything we can do to sort this?
    Thanks
    Danny Seager

    I don't have AI 13 (CS3), so I can only take a guess at this.
    >If we open that file in illustrator CS2 then we get a warning about the file being created in a later version but it opens fine and keeps the images embedded. - this works fine.
    AI 12 (CS2) opens the AI 13 file because it was saved as a PDF. Saving as a PDF always embeds images because PDF was intended primarily as a READ ONLY document format. You don't have to have the original fonts and linked images -- they're all there in the PDF.
    Try saving your AI 13 file as a native .ai
    without PDF compatibility. What happens when you try to open that in AI 12?
    I'm going to guess you saved your PDF out of AI 13 with Illustrator editing capabilities intact. That's of no use (or potentially troublesome) to AI 12, so it just uses the PDF portion of the file. AI 13, on the other hand, sees the editable AI portion of the file and elects to use that instead. (It assumes that because you saved with AI editing compatiblity, you'll want to avail yourself of those capabilities.) That means you'll have to have on your system all the original linked images, fonts, etc.
    Does that make sense?
    Try saving out your PDF without the AI editing option. What happens when you try to re-open that in AI 13?
    Why are you saving to PDF if your intent is to re-open the files in AI?

Maybe you are looking for