Missing filter on output

Recently we had an experience where an output that our company made was missing a filter that was applied to the clip in FCP.  The filters played back fine within FCP but when we exported to Quicktime file we were missing a few filters that was applied in several locations through the sequence.  This is the first time that this has happened and once preferences were dumped it seemed to go back to normal.  Not sure if this is a disconnect between program files other than the preferences or it is something that is corrected by dumping the preferences.
Has anyone experienced this before?  I have worked with FCP since it hit the market and never seen this before until the other day.  Any help on fixes so that we can prevent this in the future is much appreciated, thank you.
Intel Dual 3.2 GHz Quad Core
8GB RAM
FCP 7.0
4 layers of video 2 channels of audio
Exporting to AJA KONA DV NTSC: 525 29.97

First, make sure your sequence is completely rendered.  Select all in the timeline, and go to sequence: render selection and with all options checked.  Does the sequence play back properly?  If so, if you export a selfcontained qt with current settings (the first quicktime export option, NOT quicktime conversion), the quicktime should have used the renders as a source.  Does it?  Remember that by marking an in and out in the timeline, you can test small sections to see if the behavior is correct.

Similar Messages

  • How do I find out where the missing filter is used?

    After upgrade, Premiere CS4 is complaining missing filter upon opening a CS3 project.  How do I find out where the filter is used?
    Thanks!

    When I have opened older Projects in later versions, I have gotten a very useful dialog screen, telling me of missing Transitions (exact name and TimeCode), and of missing Effects. Do you not get such?
    When you Open the CS3 Project, is any Clip flagged?
    Considering how well PrPro has picked up on missing 3rd party stuff, I would be surprised, that it did not give you all of the necessary info.
    Good luck,
    Hunt

  • Missing Timecard Report output in Excel

    Hi all,
    Can you help me in extracting the missing timecard report output in excel format. Is it possible to achieve thru' configuration like setting up some profile option?
    I have tried using vieweroptions: Application for text to 11i Excel but it is not returning me the desired output
    Looking forward for your response.
    thanks
    Vinoth

    Try below option in your code
    fnd_request.add_layout ('Appl_Name','template_code','en','US','EXCEL');
    Thanks!!

  • Headphone & speaker option missing ,only digital output

    i am using hp G42 370TU notebook pc , operating system windows 7 (32) .Few day's back my headphone & speaker option missing ,only digital output after staring windows . Speaker option  & sound available after restarting the laptop for several times. After this problem i download & installed audio driver from hp.But this problem is  not solved. An updated latest antivirus is installed in my laptop. i have tried by re-installing windows.sound appear after rebooting the laptop for seveal times .but again it missed by shut down or sleep or hibernet. i have installed latest & old realtec audio driver available for this laptop.but after starting the windows only digital ouput  & the audio driver also missing. At this time the microsoft trouble shooting shows no  peripheral speakers or headphone is not connected.please tell me about probable solution for this problem.
    This question was solved.
    View Solution.

    Hi,
    As a further test to identify whether this is a hardware or software issue, try the following.
    1.  Create a bootable Ubuntu CD - a guide on creating an Ubuntu CD and the download can be found Here.
    2.  When created, follow the guide on the link below to Try Ubuntu.
    http://www.ubuntu.com/download/help/try-ubuntu-before-you-install
    The 'Try Ubuntu' option runs the OS from the CD without the need to install on your HDD.  It will be slow running from a CD but let me know if you get audio.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Bluetooth Speaker sometimes missing in the output list

    Hi all !
    My computer runs on the latest version of Gnome Shell, with pulseaudio as the sound manager.
    I have a bluetooth speaker (Creative D100); I can pair it with my computer without any problem, but *sometimes* after having paired it successfully, the speaker doesn't appear in the list of the output device of the Pulseaudio panel. I need to either un-pair the speaker, restart Gnome-Shell, or sometimes even reboot my computer.
    It doesn't occur every day, but when it does, that's pretty annoying.
    I've searched on the net, but so far I could only find people who simply had a library missing or so, which doesn't seem to be my current problem =/
    Does this sound familiar to somebody ?

    Hi,
    The heading are in the table pt_fcat - you don't seem to be passing that in form....
    PERFORM setup_and_display_alv_ver2
    USING
    it_out_alvp "Parameter structure
    it_output[] "Internal Data table(header table)
    it_output[]. "Dummy table for Hierarchical ALV!!(item table)
    which I guessing in in one of the includes?
    Saying that the extract pof code does not show where you are calling form it_out_alv_fieldcat_before ...which populates the headings...
    Regards
    Stu

  • Column headings are missing in the output for ALV?

    Hi all,
    i have coded a small report in ALV mode. i am getting the data but the column headings are missing.
    iam not getting the column headings in the output. it is coming as blank. Could you all please help me out in this?
    below is the code of my program:
                     Includes                                            *
    *---Standard header and footer routines
    INCLUDE zsrepthd.
    *--- ALV Routines
    INCLUDE zvsdi_alv_routines_ver3.
    *--- Authorization Check
    INCLUDE z_selection_auth_check.
                     Types Declarations                                  *
    tables : ekpo.
                     Types Declarations                                  *
    TYPES: BEGIN OF ty_ekpo,
            EBELN(18) TYPE C,
            EBELP(20) TYPE C,
            MATNR(18) TYPE C,
            WERKS(11) TYPE C,
          END OF ty_ekpo.
    *-Output field name
    TYPES: BEGIN OF ty_output,
            EBELN(18) TYPE C,
            EBELP(20) TYPE C,
            MATNR(18) TYPE C,
            WERKS(11) TYPE C,
          END OF ty_output.
    *-Output field name
    TYPES: BEGIN OF ty_fields,
            fname(60) TYPE c,
           END OF ty_fields.
                     Internal Table Declarations                         *
    DATA:it_ekpo TYPE STANDARD TABLE OF ty_ekpo,
    *--- Alv parameters
        it_out_alvp TYPE typ_alv_form_params, "for alv parameters
    *-Field catalog  for ALV display
        it_fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE,
    *-Field names for Excel column headings
    it_ekpo_fields TYPE STANDARD TABLE OF ty_fields WITH HEADER LINE.
    **--To store output for Principial Pegging data
    DATA: BEGIN OF it_output occurs 0,
            EBELN(18) TYPE C,
            EBELP(20) TYPE C,
            MATNR(18) TYPE C,
            WERKS(11) TYPE C,
          END OF it_output.
    **--To store output for 2nd
    DATA: BEGIN OF it_output1 occurs 0,
            text(2000),
           END OF it_output1.
                     Data Declarations                                   *
    data: v_ebeln TYPE ekpo-ebeln,
          v_ebelp TYPE ekpo-ebelp,
          v_matnr TYPE ekpo-matnr,
          v_werks TYPE ekpo-werks.
                     Constants Declarations                              *
    CONSTANTS:
         c_0    TYPE i     VALUE  0,
         c_x    TYPE char1 VALUE  'X',
         c_i    TYPE char1 VALUE  'I',
         c_eq   TYPE char2 VALUE  'EQ',
         c_ekpo  TYPE char4 VALUE 'EKPO',
         c_hyfn  TYPE char1 VALUE '-'.
                     Work Area Declarations                              *
    DATA: x_output_ekpo type ty_output,
          x_ekpo type ty_ekpo.
                     Selection Screen                                    *
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-f01.
    SELECT-OPTIONS:
          s_ebeln FOR v_ebeln OBLIGATORY,
          s_ebelp FOR v_ebelp,
          s_matnr FOR v_matnr,
          s_werks FOR v_werks.
    SELECTION-SCREEN END OF BLOCK b1.
                     At Selection Screen                                 *
    AT SELECTION-SCREEN.
                     Start-of-Selection                                  *
    START-OF-SELECTION.
    *--- Check Authorizations for Selection-screen
      PERFORM  z_selection_auth_check.
    *--- Fetch Purchasing Document Item data
      PERFORM  fetch_status_pp.
                     End-of-Selection                                    *
    END-OF-SELECTION.
    **-- Download data to final internal table.
      PERFORM data_output.
      IF NOT it_output[] IS INITIAL.
    *--- Fill the structure for calling the ALV form
        PERFORM initialize_alv_params.
    **-- Display ALV Report
        PERFORM setup_and_display_alv_ver2
           USING
         it_out_alvp        "Parameter structure
         it_output[]        "Internal Data table(header table)
         it_output[].       "Dummy table for Hierarchical ALV!!(item table)
        ENDIF.
      IF it_output[] IS INITIAL.
        MESSAGE i999(zi) WITH 'No data found for selection'(i02).
      ENDIF.
    *&      Form  FETCH_STATUS_PP
    Get data from ekpo table
    FORM FETCH_STATUS_PP .
    *-Fetch PP Data from ekpo table
      REFRESH it_ekpo.
      SELECT EBELN
             EBELP
             MATNR
             WERKS
             FROM ekpo
             INTO TABLE it_ekpo
             WHERE ebeln IN s_ebeln
               AND ebelp IN s_ebelp.
      IF sy-subrc = c_0.
        SORT it_ekpo BY ebeln ebelp.
      ENDIF.
    ENDFORM.                    " FETCH_STATUS_PP
    *&      Form  f_top_of_page
    *This is to write the top of page
    FORM top_of_page.
      DATA:  lt_list TYPE slis_t_listheader,
             lx_list TYPE slis_listheader.
    *--- Title name
      CLEAR lx_list.
      lx_list-typ  = 'S'.
      lx_list-key  = 'Title name'(t13).
      lx_list-info = sy-title.
      APPEND lx_list TO lt_list.
      IF NOT lt_list IS INITIAL.
        CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
          EXPORTING
            it_list_commentary = lt_list.
      ENDIF.
    ENDFORM.                    "top_of_page
    *&      Form  init_page_head
    Description : This subroutine initializes the fields in table BHDGD  *
                  for printing the report heading.                       *
    FORM init_page_head.
      bhdgd-line1  = 'SLA Status Report'(h04).
      bhdgd-line2  = sy-title.
      bhdgd-lines  = sy-linsz.
      bhdgd-fcpyrt = sy-uline.
      bhdgd-inifl  = '0'.
    ENDFORM.                    "init_page_head
    *&      Form  initialize_alv_params
    Description : Form to initialize ALV Params
    FORM initialize_alv_params.
      CONSTANTS: lc_alv_grid  TYPE char1 VALUE 'G',  "Grid
                 lc_u         TYPE char1 VALUE 'U'.
      MOVE 'IT_OUTPUT' TO   it_out_alvp-tablname.   "final table
      MOVE sy-repid    TO   it_out_alvp-repid.
      MOVE lc_alv_grid TO   it_out_alvp-alvtype.
      MOVE c_x         TO   it_out_alvp-bringdefaultvar.
      MOVE lc_u        TO   it_out_alvp-variantsavetype.
    ENDFORM.                    " initialize_alv_params
          FORM it_out_init_events                                       *
    -->this is form is to modify the events
    FORM it_out_init_events
          CHANGING
           alevnts TYPE slis_t_event.
      FIELD-SYMBOLS <alevnt> TYPE slis_alv_event.
      LOOP AT alevnts ASSIGNING <alevnt>.
        CASE <alevnt>-name.
          WHEN  slis_ev_top_of_page.
            MOVE 'TOP_OF_PAGE'  TO <alevnt>-form.
        ENDCASE.
      ENDLOOP.
    ENDFORM.                    "it_out_init_events
    *&      Form  DATA_OUTPUT
    Download data to final internal table
    FORM DATA_OUTPUT .
      loop at it_ekpo into x_ekpo.
        x_output_ekpo-ebeln = x_ekpo-ebeln.
        x_output_ekpo-ebelp = x_ekpo-ebelp.
        x_output_ekpo-matnr = x_ekpo-matnr.
        x_output_ekpo-werks = x_ekpo-werks.
        append x_output_ekpo to it_output.
      endloop.
    ENDFORM.                    " DATA_OUTPUT
          FORM it_out_alv_fieldcat_before                               *
    -->  PT_FCAT                                                       *
    -->  ALVP                                                          *
    FORM it_out_alv_fieldcat_before  CHANGING
        pt_fcat TYPE slis_t_fieldcat_alv
        alvp TYPE typ_alv_form_params.
      DATA: lx_fcat TYPE slis_fieldcat_alv.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'EBELN'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Purchasing Doc No'(018).
      lx_fcat-seltext_m      = 'Purchasing Doc No'(018).
      lx_fcat-seltext_s      = 'Purchasing Doc No'(018).
      lx_fcat-reptext_ddic   = 'Purchasing Doc No'(018).
      APPEND lx_fcat TO pt_fcat.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'EBELP'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Item No Purchasing Doc'(020).
      lx_fcat-seltext_m      = 'Item No Purchasing Doc'(020).
      lx_fcat-seltext_s      = 'Item No Purchasing Doc'(020).
      lx_fcat-reptext_ddic   = 'Item No Purchasing Doc'(020).
      APPEND lx_fcat TO pt_fcat.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'MATNR'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Material'(010).
      lx_fcat-seltext_m      = 'Material'(010).
      lx_fcat-seltext_s      = 'Material'(010).
      lx_fcat-reptext_ddic   = 'Material'(010).
      APPEND lx_fcat TO pt_fcat.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'WERKS'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Supply plant'(013).
      lx_fcat-seltext_m      = 'Supply plant'(013).
      lx_fcat-seltext_s      = 'Supply plant'(013).
      lx_fcat-reptext_ddic   = 'Supply plant'(013).
      APPEND lx_fcat TO pt_fcat.
    ENDFORM.                    " it_out_alv_fieldcat_before.
    Regards,
    Shalini
    Edited by: shalini reddy on Oct 7, 2008 5:08 PM

    Hi,
    The heading are in the table pt_fcat - you don't seem to be passing that in form....
    PERFORM setup_and_display_alv_ver2
    USING
    it_out_alvp "Parameter structure
    it_output[] "Internal Data table(header table)
    it_output[]. "Dummy table for Hierarchical ALV!!(item table)
    which I guessing in in one of the includes?
    Saying that the extract pof code does not show where you are calling form it_out_alv_fieldcat_before ...which populates the headings...
    Regards
    Stu

  • Why are dots missing from PDF output?

    When I use the 'line' tool with dots, (in this case to draw a line-break,) AND export a .pdf, it often leaves out a single dot in the line. There are no objects intersecting the line, or even within a half-inch of its location. The missing dot is consistent across the document, nearly always the second or third dot in the line. And this happens with all forms of dots - normal, japanese, etc. The dot is present in the InDesign application, just not in the material it outputs.
    Thanks a million for your help!
    Screenshots below:

    Hey Bob,
    Looks like you're on to something with the program used to open it. While the PDF reader presents the problem, the web plugin does not. (It opens fine in both Chrome and Firefox.) And it renders just fine as imported into Illustrator.
    So that really narrows the problem down to the renderer. I'll submit the bug report.
    Thanks!!!

  • Missing data in Output Mapping

    Hi all,
    I have configured a scenario RFC -> XI -> Webservice. I am getting the response from the webservice and can see it in the SXMB_MONI. But this is not getting mapped back to the RFC output. I checked for all the mappings and those are perfectly fine. Can any body please suggest me what could be the reason and what all i need to check. I have all the mappings and objects activated.
    Thanks and best regards,
    Kulwant

    Hi sekhar,
    Thanks for the quick reply.
    I checked that anmd found that thers is one namespace missing in my mapping which is creating the problem
    Here is what i get from Webservice
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <ns1:generateResponse xmlns:ns1='http://xml.avaya.com/diamond/schema/2007/07/utils/sessionidgenerator' >
       <ns1:sessionId>AAAAABDxRtA=7IWEUw==-_2_1</ns1:sessionId>
    </ns1:generateResponse>
    What i get from Test mapping
    <ns0:generateResponse xmlns:ns0="http://xml.avaya.com/diamond/schema/2007/07/utils/sessionidgenerator">
       <sessionId>dsfa</sessionId>
    </ns0:generateResponse>
    Here ns0 is missing in front of my mapping. I am not sure how to bring it.
    I have created a data type generateResponse using another data type session ID.
    then i created a message type with change in default XML name space. I tried creating even sessionID Message Type and use it in my message type so that i could change the default name space.
    but it didn't worked?
    Can any body please suggest what to do?
    Thanks,
    Kulwant

  • InDesign CS5.5 Won't Place Word 2011 Files (Mac); Missing Filter?

    I'm confused. I opened approximately 15 Word files, cut all the photos, then saved them as Word 97-2004 files. Then I opened an InDesign CS5.5 file and tried to place each Word file but I keep getting a "No filter found for requested operation" error message. I was able to place a couple of the files but I got the error message for all the rest.
    Any suggestions?
    Thanks,
    Lloyd

    Peter Spier wrote:
    Hi Robert, we haven't seen you here for a while. Welcome back.
    Thx
    I know Jongware complains bitterly that Word import can be really flakey. Did you try daving as plain .doc, too? Seems like MathType equations are also the subject of a fair number of posts, too, but I'm not sure they are really a similar problem. I don't suppose there's any way for you to convert the eqations to .ai or PDF and still use them as links in Word, or to embed rather than link?
    I'm working on big tool to automatic mass processing big number of Word files. One of the steps is to prepare Word files with MathType equations for further manual processing. I have a macro (for Word2010) to automatically  export all equations to EPS files. The next step is to reImport EPS files back to Word - so they will be imported into InDesign as linked files and then they could be automatically correctly positioned withing the text.
    The problem is - I've done reImport step in Word2000 - as 2nd macro - and it works perfectly fine for DOC files saved from Word2000.
    Of course I can do this in InDesign - but I think it would be faster in Word.
    I think missing import of the linked files for DOCX files is a BIG bug ...

  • Text missing in BA00 output for languages FR and IT

    Hello Friends,
    We have configured the output type BA00 for the languages FR (French) and IT (Italian) and it is working fine.
    But while taking the print out for the BA00 we found some characters like  à, 'ê, are not printed on the print out.
    Say for ex:  générales
    The above mentioned word was printing as g n rales, The characters lkie 'ê was missing.
    In the same way for Italian language also.
    So could you please help me in this regard.
    REgards,
    Ram.

    Hello,
    I share the same view as mentioned by J Prakash above.
    But if you are able to see the FR & IT characters on screen properly & if they are not printed on Print-out properly, then you need to install some Driver Programs for your Printer.
    Hope this helps,
    Thanks,
    Jignesh Mehta

  • Missing H.264 Output Module in Render Queue

    I've reinstalled AECS4 and still have no H.264 in the output format dropbox. I am missing quite a few compared to CS3. Any ideas why?

    What operating system? What other Adobe CS4 applications are on your system? The modules not showing up may also be caused by the licensing system thinking that some pieces are trial versions. In such cases, removing and re-installing the other apps may also be required, especially Encore and Premiere who share these components.
    Mylenium

  • House number is missing in the output

    Dear all,
    Though House number (HOUSE_NUM1) is been maintained in the CMR for a set of customers, but in the return output type house number is not printing. can any one tell me what will be the reason for this
    thanks,
    satish

    Please reach out to your ABAPer.
    Something would be missing in the smartform / SAP Script code for the output.
    Hope this helps...
    Thanks,
    Jignesh Mehta

  • Since Adobe Connect 9 hosted release missing filter date field in registration report tab

    Prior to the new version we use to do the below steps and get a Filter Reports option.  Now that option is missing.  Is there another way to pull this report?  Is this a bug and can be resolved?  Am I missing something?
    -Event Management
    -Shared Events
    -PREP Master 2011 1.0 (Name of our Main Folder)
    -Click on PREP Master (Cty.) 2011 1.0 (Name of on demand stored in main folder)
    --Reports
    -Filter Reports
    -Change Time, Later Time-One day behind time frame 12:00am start to 12:00am finished (Missing Date Filter)
    (Date should have remained the same from Training report, no need to filter date)
    -By Registrants (Attendance Report)(Missing Option/Replaced by Campaign Report)
    -Download Report Data
    If you go to the By Answers Tab you get the Filter Reports link.  If you go to pull Training reports you get the filter link.  But going to Event Management, locating the event, and then trying to pull a report on Registration does NOT give you filter reports like it use to.  We need this. 

    HI
    add that fileds in the all locations where you need it like
    in internal table declaration , write statement , select statement
    these are the main areas where you have to add that 2 fileds

  • Table Data Preview tab: Missing Filter Textbox + Drill Down Data Discovery

    1 - With Oracle based tables, when I click them and the table preview loads with all the tabs, on the Data tab there is a Preview entry box. I do not see the same with SQL Server or MySQL based connections. Is there a way to enable it? Am I not looking hard enough or is this function only available for Oracle based tables?
    2 - I'm having a hard time trying to search for an answer to this next question (too many false positives based on the terms I am using). In other tools I have used (namely DB Visualizer), when previewing data in the Table's Data tab, a user may 'drill down' through values by right-clicking the field and applying a filter from the pop-up (drop-down with the field names, usual SQL comparison operators and a text entry box). I see SQL Developer has something similar with a filter list, but it only seems to prompt values in the buffer (in order, no less) and only uses the = operator (no LIKE). Finally, I notice that this value is not even present in the Filter text box (if you wanted to edit it further, add more, etc). As with my prior question, am I missing some usability/functionality setting/config or does this feature simply not exist in the way the other tool employed it? This feature is what keeps the other tool installed on my machine.

    Hi Jed,
    1) Sorry, the tool just has fewer bells and whistles for non-Oracle database connections. You might try adding this as a feature request on SQL Developer Exchange.
    2) The normal SQL operators such as LIKE, <, and so on, are supported for the individual column filters, but there are some quirks:
    Re: Bug - column filter doesn't work in 3.1.05
    Regards,
    Gary
    SQL Developer Team

  • Data missing in PDF output generated by RDF locally only for one time.

    Hi All,
    Could any one please help me in finding the reason of the below mentioned issue.
    I have downloaded an RDF onto local machine and changed only sorting of few columns required.
    After that I had generated PDf output on local machine for first few times PDF is generated with correct output.
    Unfortunately when I again generated PDF output as final version, a few columns are missed in displaying in the PDF output. again I ran the RDF for next time and the PDF is generated correctly.
    Now I want to know what may be the reason that for that time only PDF generated with missing data.
    FYI, Problem occured in Report Builder *9.0.4.0.33*
    This reason is really urgent and needfull for me.
    Your help is very much appreciated.
    Many Thanks in Advance.
    Regards,
    RRM

    Hello,
    What is the report orientation PORTRAIT/LANDSCAPE? What happens if you set the SYSTEM PARAMETER ORIENTATION to PORTRAIT/LANDSCAPE upon your report output and then generate again. While saving as PDF also see the page orientation.
    -Ammad

Maybe you are looking for

  • Cannot print to hp c7180 all-in-one using eprint from my ipad2

    Just installed hp eprint on my iPad 2 and when I try to print eprint finds a number of printers but not the one on my home network which is a hp photos art c7180 all-in-one. This question was solved. View Solution.

  • How do I submit a form as e-mail in xml and pdf form?

    Hi, can I set up the submit button to send the form data as xml and also include a copy of the filled out pdf-form? I can make it work whith either xml-file or pdf-form, but not both at the same time. Hope anyone can help. K

  • Can't get Pics To Stay The same size. cropping.

    So I Goes To Use The imovie And Then I imports This Picture 'cause I'm a Picture kinda guy And it's All Goin' fine And Then I Get This Picture on my Screen And It's All zooming in But worst of All it gets cropped. It's Going fine, Then At A certain p

  • How can I reuse the BC4J database connection?

    How can I reuse the BC4J database connection? I want to use the application module connection without opening another in a custom code. At this level I can’t access de ADF code, that’s why I can’t get the DBConnection from the application modul

  • Flash Buttons HELP!

    I am trying to make a button that when clicked will make text appear. Does anyone know were to find a tutorial or how to do this- I can only find tutorials on how to make a button that links to a url. I am absolutely retarded with flash and I have be