Flash CS 3 Layering issue (in the application)

Hello,
I'm having trouble with Flash CS3, and I have never had this
problem with the tools before in Flash until CS3 came about. As
much as I love being able to undock things, position them where I
want, etc. , I just feel that the panels are inefficient and they
tend to misbehave wildly.
I have problems with the Actionscript window disappearing
and falling beneath other layers, or the properties window not
showing the properties, or the properties window half showing the
properties, and this problem is reoccurant.
Please Adobe, fix these problems in the next release .......
Or am I the only person experiencing problems here ? Please
let us know!

quote:
Originally posted by:
3dnirvana
Hi There,
I created a simple application in CS 3 using AS 3.0, even
though Im new to AS 3.0, I feel it more robust and efficient than
2.0. But now there are some probs. I developed an Flash Application
which loads a SWF on button click, it works fine in the Flash IDE
when I press Ctrl+ENTER, but when I run the swf without the IDE, it
doesnt load. Can I know the reason?
I dont know whether the SCRIPT TIME LIMIT option in the
Publish settings is the reason, I was playing with it, when
suddenly the flash worked, but then again it dint. Can anyone help
me?
Am I missing some settings? The code is as simple as
possible, and it works so it has to be some SWF settings right? Why
is the SCRIPT TIME LIMIT used?
There was a huge mistake here!! My Apologies. The player i
was using was Flash 8 and not 9.

Similar Messages

  • Adobe Version 9: Memory Leak Issue causing the application to crash .

    We are facing an issue with Adobe Acrobat Reader Version 9. The application is getting crashed with an unhandled system exception (Access violation reading location 0x1003a24e).
    Our application is a .NET Windows based application, where we are using webbrowser control to view the pdf files.
    The application works fine with Adobe Version 8 and 10. But there is an issue specific to Version 9, even described in the Adobe Forum
    We tried using CoFreeUnusedLibraries Function on the form close event of the document viewer as a work around, but it didn’t help.
    The client is not willing to move to the Adobe Reader Version 10. Can anyone facing similar issue with Adobe Version 9, please assist.
    Thanks,
    Dev

    We are having the same issue. Have you found a way to fix this or to work around it?
    Thank you,
    Susan

  • I was trying to activate my CS3 and got help from chat until he said it was an installing issue. The application opens and then closes unexpectedly.

    I just got a new mac and I'm trying to download my Adobe CS3 onto it. I was able to download and then I tried to activate it. I entered the CS3 serial number and then asked for the serial number of the older version. I originally bought CS2 on disc and downloaded it onto my old mac and from there bought an upgrade to CS3. I no longer have the discs or box for CS2 and so I do not have the CS2 serial number. I contacted chat support who helped until I reached the point where I could open the application but then it would quit immediately and say "Adobe Update quit unexpectedly." Then he said it was an installing issue and turned me to the forums. Help, please?

    JohnEden I would recommend running all available uninstallers to remove the current installation.  The uninstallers are located in the Applications/Utilities/Adobe Installers folder.  Once you have ran the uninstallers then please also utilize the CC Cleaner Tool for a complete removal.  You can find details on how to utilize the CC Cleaner Tool at Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6 - http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html.

  • Foreign-key autocreation in child table giving issue in the application

    Hi,
      I am facing an issue with partitioning a table that foreign key relationship is created on the original table with interim table. This gives exception in the application because of its existence. Please suggest me how to get rid of this issue.
    Let's say my table T_TABLENAME has to be partitioned. It has a child table T_CHILD_TABLENAME which references (FK_T1) ID column of T_TABLENAME.
    While partitioning, COPY_TABLE_DEPENDENTS function copies/creates the key/index/trigger objects for the interim table. [I need copy_constraints => TRUE in COPY_TABLE_DEP call], Fine.
    But, after partitioning is done, the foreign key (TMP$$_FK_T1) object exists with the child table which should absolutely not happen as this forms dependency with interim table as well along with parent table.
    Here my script goes:
    i) Creating interim table
    CREATE TABLE T_TABLENAME_PT
    PARTITION BY RANGE (CREATED_DATE)
    (PARTITION P_2007 VALUES LESS THAN (TO_DATE('01-JAN-2008','dd-MON-yyyy')),
    PARTITION P_2009 VALUES LESS THAN (TO_DATE('01-JAN-2010','dd-MON-yyyy')),
    PARTITION P_2011 VALUES LESS THAN (TO_DATE('01-JAN-2012','dd-MON-yyyy')),
    PARTITION P_2012 VALUES LESS THAN (TO_DATE('01-JAN-2013','dd-MON-yyyy')),
    PARTITION P_RECENT VALUES LESS THAN (MAXVALUE))
    AS SELECT * FROM T_TABLENAME WHERE 1=2;
    ii) Partitioning Script
    declare
      v_username varchar2(50);
      v_exception varchar2(220);
      l_num_errors PLS_INTEGER;
      v_source_table  varchar2(35) := 'T_TABLENAME';
      v_interim_table varchar2(35) := 'T_TABLENAME_PT';
    BEGIN
      select USERNAME into v_username from USER_USERS where rownum <= 1;
      begin
          DBMS_REDEFINITION.CAN_REDEF_TABLE(v_username, v_source_table, DBMS_REDEFINITION.CONS_USE_PK);
          DBMS_REDEFINITION.START_REDEF_TABLE(
            uname      => v_username,
            orig_table => v_source_table,
            int_table  => v_interim_table);
          DBMS_REDEFINITION.COPY_TABLE_DEPENDENTS(
            uname      => v_username,
            orig_table => v_source_table,
            int_table  => v_interim_table,
            copy_indexes => 1,
            copy_triggers => TRUE,
            copy_constraints => TRUE,
            copy_privileges => TRUE,
            ignore_errors => TRUE,
            num_errors => l_num_errors);
          DBMS_REDEFINITION.SYNC_INTERIM_TABLE(v_username, v_source_table, v_interim_table);
          begin
           DBMS_REDEFINITION.FINISH_REDEF_TABLE(
            UNAME      => v_username,
            ORIG_TABLE => v_source_table,
            INT_TABLE  => v_interim_table);       
         EXCEPTION
         WHEN OTHERS THEN
           DBMS_REDEFINITION.ABORT_REDEF_TABLE(
            UNAME      => v_username,
            ORIG_TABLE => v_source_table,
            INT_TABLE  => v_interim_table);
          end;     
          exception
              when others then
                v_exception :=substr(SQLERRM,1,150);
      end;
    exception
      when others then
        v_exception := substr(SQLERRM,1,175);
    END;

    Thanks for your information. I am using Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - 64bit.
    1) I am logging the exceptions in a logger table.
    2) If CAN_REDEF_TABLE gives exception, flow goes to the final EXCEPTION block and program terminates. So if no exceptions, the other steps comes into the flow of execution.
    Complete Details
    (1) Parent Table (existing): T_SOH_SUBREQ_INSTALLATION_ADDR
    create table T_SOH_SUBREQ_INSTALLATION_ADDR
      ACCOUNT_ADDRESS_ID  NUMBER(10),
      SUBREQ_ADDRESS_ID   NUMBER(10) not null,
      COMMUNITY_ID        NUMBER(10),
      STREET_ID           NUMBER(10),
      BUILDING_ID         NUMBER(10),
      CREATED_USER_ID     VARCHAR2(40) not null,
      MODIFIED_USER_ID    VARCHAR2(40) not null,
      CREATED_DATE        TIMESTAMP(6) not null,
      MODIFIED_DATE       TIMESTAMP(6) not null,
      DELETION_STATUS     CHAR(1) not null
    alter table T_SOH_SUBREQ_INSTALLATION_ADDR
      add constraint PK_T_SOH_SUBREQ_INST_ADDR primary key (SUBREQ_ADDRESS_ID);
    alter table T_SOH_SUBREQ_INSTALLATION_ADDR
      add constraint FK_T_SOH_SUBREQ_INSTALLATIO624 foreign key (ACCOUNT_ADDRESS_ID)
      references T_SOH_ACCT_INSTALLATION_ADDR (ACCOUNT_ADDRESS_ID);
    (2) Child Table (existing): T_SOH_SUBREQ_LINKED_INST_ADDR
    create table T_SOH_SUBREQ_LINKED_INST_ADDR
      CREATED_DATE      TIMESTAMP(6) not null,
      CREATED_USER_ID   VARCHAR2(40) not null,
      MODIFIED_DATE     TIMESTAMP(6) not null,
      MODIFIED_USER_ID  VARCHAR2(20) not null,
      DELETION_STATUS   CHAR(1) not null,
      SUBREQ_ADDRESS_ID NUMBER(10) not null,
      SUBREQUEST_ID     NUMBER(10) not null,
      CIRCUIT_POINT     NUMBER(10)
    alter table T_SOH_SUBREQ_LINKED_INST_ADDR
      add constraint PK_T_SOH_SUBREQ_LINK_INST_ADDR primary key (SUBREQ_ADDRESS_ID, SUBREQUEST_ID);
    alter table T_SOH_SUBREQ_LINKED_INST_ADDR
      add constraint FK_T_SOH_SUBREQ_LINKED_INST626 foreign key (SUBREQ_ADDRESS_ID)
      references T_SOH_SUBREQ_INSTALLATION_ADDR (SUBREQ_ADDRESS_ID);
    (3) Partitioning is done on Parent Table
    CREATE TABLE T_TMP_PARTITION_LOGS
      LOG_MSG  VARCHAR2(250),
      LOG_TIME TIMESTAMP(6)
    CREATE TABLE T_SOH_SUBREQ_INSTALL_ADDR_PT
    PARTITION BY RANGE (CREATED_DATE)
    (PARTITION P_2007 VALUES LESS THAN (TO_DATE('01-JAN-2008','dd-MON-yyyy')),
    PARTITION P_2009 VALUES LESS THAN (TO_DATE('01-JAN-2010','dd-MON-yyyy')),
    PARTITION P_2011 VALUES LESS THAN (TO_DATE('01-JAN-2012','dd-MON-yyyy')),
    PARTITION P_2012 VALUES LESS THAN (TO_DATE('01-JAN-2013','dd-MON-yyyy')),
    PARTITION P_RECENT VALUES LESS THAN (MAXVALUE))
    AS SELECT * FROM T_SOH_SUBREQ_INSTALLATION_ADDR WHERE 1=2;
    insert into t_tmp_partition_logs(log_msg,log_time) values('01_CreateTable: T_SOH_SUBREQ_INSTALL_ADDR_PT Table Created', systimestamp);
    (4) Script for REDEFINITION
    declare
      v_username varchar2(50);
      v_exception varchar2(220);
      l_num_errors PLS_INTEGER;
      v_source_table  varchar2(35) := 'T_SOH_SUBREQ_INSTALLATION_ADDR';
      v_interim_table varchar2(35) := 'T_SOH_SUBREQ_INSTALL_ADDR_PT';
      v_file_name     varchar2(20) := '02_Redefine';
    BEGIN
      insert into t_tmp_partition_logs(log_msg,log_time) values(v_file_name || '.sql --> Starts', systimestamp);
      select USERNAME into v_username from USER_USERS where rownum <= 1;
      insert into t_tmp_partition_logs(log_msg,log_time) values(v_file_name || ': UserName-'|| v_username, systimestamp);
      begin
          DBMS_REDEFINITION.CAN_REDEF_TABLE(v_username, v_source_table, DBMS_REDEFINITION.CONS_USE_PK);
          insert into t_tmp_partition_logs(log_msg,log_time) values(v_file_name ||': '|| v_source_table ||' After CAN_REDEF_TABLE', systimestamp);
          DBMS_REDEFINITION.START_REDEF_TABLE(
            uname      => v_username,
            orig_table => v_source_table,
            int_table  => v_interim_table);
          insert into t_tmp_partition_logs(log_msg,log_time) values(v_file_name ||': '|| v_source_table ||' After START_REDEF_TABLE', systimestamp);
          DBMS_REDEFINITION.COPY_TABLE_DEPENDENTS(
            uname      => v_username,
            orig_table => v_source_table,
            int_table  => v_interim_table,
            copy_indexes => 1,
            copy_triggers => TRUE,
            copy_constraints => TRUE,
            copy_privileges => TRUE,
            ignore_errors => TRUE,
            num_errors => l_num_errors);
          insert into t_tmp_partition_logs(log_msg,log_time) values(v_file_name ||': '|| v_source_table ||' After COPY_TABLE_DEPENDENTS - l_num_errors:' || l_num_errors, systimestamp);
          DBMS_REDEFINITION.SYNC_INTERIM_TABLE(v_username, v_source_table, v_interim_table);
          insert into t_tmp_partition_logs(log_msg,log_time) values(v_file_name ||': After SYNC_INTERIM_TABLE on '|| v_source_table, systimestamp);
          begin
           DBMS_REDEFINITION.FINISH_REDEF_TABLE(
            UNAME      => v_username,
            ORIG_TABLE => v_source_table,
            INT_TABLE  => v_interim_table);       
          insert into t_tmp_partition_logs(log_msg,log_time) values(v_file_name ||': After FINISH_REDEF_TABLE on '|| v_source_table, systimestamp);
         EXCEPTION
         WHEN OTHERS THEN
           DBMS_REDEFINITION.ABORT_REDEF_TABLE(
            UNAME      => v_username,
            ORIG_TABLE => v_source_table,
            INT_TABLE  => v_interim_table);
           insert into t_tmp_partition_logs(log_msg,log_time) values(v_file_name ||': Aborted '|| v_source_table, systimestamp);
          end;     
        insert into t_tmp_partition_logs(log_msg,log_time) values(v_file_name ||': '|| v_source_table ||' redefined', systimestamp);
          exception
              when others then
                v_exception :=substr(SQLERRM,1,150);
                insert into t_tmp_partition_logs(log_msg,log_time) values(v_file_name ||'-EXCEPTION:'|| v_source_table ||'-' || v_exception, systimestamp);
      end;
      insert into t_tmp_partition_logs(log_msg,log_time) values(v_file_name ||'.sql <-- Ends', systimestamp);
    exception
      when others then
        v_exception := substr(SQLERRM,1,175);
        insert into t_tmp_partition_logs(log_msg,log_time) values(v_file_name ||'-EXCEPTION:' || v_exception, systimestamp);
    END;
    ==> NOW THE ISSUE
    My child table T_SOH_SUBREQ_LINKED_INST_ADDR is having another foreign key column TMP$$_FK_T_SOH_SUBREQ_LIN4 with the interim table T_SOH_SUBREQ_INSTALL_ADDR_PT.

  • Install for Elements 12 on Windows 8 laptop yields an interface with tiny letters and unusable screen. Looks like a resolution issue for the application. Can that be changed?

    Installing on laptop with 12" screen, Windows 8.1. Is there a reason that the application,when started, is so tiny?

    Installing on laptop with 12" screen, Windows 8.1. Is there a reason that the application,when started, is so tiny?

  • Remote Server issue with the application manager

    I am trying to download photoshop from creative cloud but the application manager program gives me this message "the remote server is not responding in a proper manner" why? what do I do now?

    me too - same problem
    Windows 7 64-bit SP1 - no problems on any other connections ...

  • CSS and JS version control is causing issues with the Application Cache.

    Hi there,
    I am creating a Web App for use on an iPad and I have been using Adobe Muse to do this.
    The Web App needs to work offline for the most part so I have been using the Application Cache in HTML5 to do this. Everything is caching correctly to the iPad (Safari Browser), however, after a while, the browser is unable to retrieve the CSS and JS complonents of the site from the Application Cache. I have deduced after much mucking around, that the HTML references to the CSS and JS files have version control stuck on the end of it. This seems to work fine when online as the version number after the ? is ignored by the browser.
    When the browser is accessing the CSS and JS files from the application cache, it appears to require the version control number as well. This is where the entire site falls over. It sometimes takes about a day of being offline but eventually, the CSS and JS files must be purged from the browser cache and then they are unable to be resolved from the Application Cache.
    This is really annoying as I am having to go through every HTML file to remove the CSS and JS version numbers.
    Does anyone know if this Muse feature can be switched off (no version controlling on JS and CSS file) or will I have to use another product such as Dreamweaver?

    just to let you know, it turns out not to be the JVM (at least directly).
    the real problem seems to be the order of loading specific dll's. I noticed that the only differences (other than the blow up) was that MSVCRT.dll was being loaded far earlier than without the dummy dll.
    I removed the dummy dll I mentioned before, and went into the project workspace properties. I moved the .lib file for the dll that was actually pulling MSVCRT in to be first in the list, then in the driver program moved the .lib file for the new dll to be first in it's list.
    Everything worked.
    I'm not sure the exact bug there, but my current thought is: The MSVCRT.dll must be loaded prior to the .NET runtime dll (MSVCRT70) or say bye-bye.

  • Adobe Flash Player : Are there issues for the Mac?

    Should I install Adobe Flash Player on my iMac?
    Are there benefits and or issues that I should be aware of?

    Providing you only download it from Adobe you should be fine - although there are security concerns relating to Flash from time to time. When they become known OS X's inbuilt X Protect will disable it until a new updated 'safe' version is available. Adobe also update it fairly regularly, so if you do install it set its preferences to allow for updates.
    As to whether you need it, only you can decide. It adds functionality to web-browsing so without it you may encounter websites that don;t display all their content.
    Many users live without it or install it, but also install a Safari (if that;s the browser you use) extension called Click to Flash which disables Flash content, only displaying it if you choose to by clicking on the placeholder.
    An alternative is to use Google Chrome which has its own version of Flash built-in. In that case you don't need a separate install of Flash. However, the downside is you have Google looking over your shoulder .

  • We are currently having issues fetching the applications and services list.

    Is there anywhere to get an ETA or some sort of status update instead of wearing out the refresh button?

    I'm still experiencing the same issue.  Has the fix been made available yet?  Eagerly awaiting acces!
    **EDIT I'm sorry, didn't account for the time zone difference.  I thought that the previous post was from hours ago.  **

  • Having issues opening the application 'SKYPE'

    Can anyone help me open the skype application. ive tried downloading it a few times, but still nothing. I'm tearing my hair out here, im only a newbie to the imac system, it was given to me.
    Please help, someone, anyone???
    imac g4 version osx 10.2.8   Mac OS X (10.2.x)  

    When you download any Mac application, it decompresses to something called a "Disk Image" that should appear on your desktop with a name like "Skype.dmg".
    You have to click on that .dmg, whereupon a window will open. In the window you will see a number of icons, one of which is the actual Skype application, and probably a few other icons as well.
    You need to drag the "skype" application icon out of that window on to your desktop.
    At that point it will be installed on your computer, and should open without any trouble.
    If you feel you might need any of the other things that were in the dmg window, drag them to the desktop as well.
    After that, and when you're happy the Skype is running and you can use it, you don't need to keep that -dmg file unless you reall want to. You can just trash it.

  • "The application was unable to start correctly (0x000007b) with borderlands on bootcamp

    Hi !
    First, excuse my english : I'm french.
    I'm trying to run Borderlands (the first, not the 2) on bootcamp with Windows 7 but when I lunch it, I have a textbox wich says : "The application was unable to start correctly (0x000007b)."
    I have a MacBook Pro 15'' retina early 2014 and I've runed Watch Dogs so I think Borderlands shouldn't be so difficult to run...
    Anyway.
    Can someone help me ? I've been looking for answers for 2 hours now and I still don't have figure it out.

    it's not a bootcamp issue really
    the application was unable to start correctly (0x000007b)
    gives
    http://answers.microsoft.com/en-us/windows/forum/windows_7-performance/the-appli cation-was-unable-to-start-correctly/16765d09-bc69-4ebb-8471-54b1fa176ba1
    http://www.bitdefender.com/support/how-to-solve-error-message-%22the-application -was-unable-to-start-correctly-(0x000007b)-click-ok-to-close-the-application%22- 1106.html

  • Spry Image Slideshow with Filmstrip Layering Issue during photo transition in IE

    Hi,
    I finally got my slideshow working in IE, but now there is some sort of funny layering issue when the pictures transition. Has anyone had a similar problem and know the solution? My slideshow is located at www.lukesfitnessbootcamp.com.
    Thanks!

    I have a similar problem. I've added a note to reference your problem. I've not got an answer to date.
    Cliff

  • "You can't open the application "Flash" because it is not support on the architecture"

    Looking for some help with this.
    I recently had a system corruption on the MAC machine here in my office.
    The user was suppose to save his work to the servers which they didn't.
    The users that was using the Mac ended up losing all there data as the hard drive failed.
    As a precaution I decided when I was rebuilding the MAC to replace the dead 250MB hard drive with 2x1TB hard drives.
    I would then create a RAID1 (Mirror) with the two hard drive so if a single drive fails the users can continue to work without interruptions or losing any work.
    Mac installation went without an issues. Then the Adobe installation appears to go okay, however as I was double-checking the installs for the Flash and Indesign programs were grayed out wiht that no smoking sign symbol on them. When attempting to run the programs all I recieved was the following Error:
    "You can't open the application "Adobe InDesign CS4" because it is not support on the architecture"
    or
    "You can't open the application "Flash" because it is not support on the architecture"
    All other programs for the CS4 open and run without any issues.  The CDs I have are for a multi-user license.
    System spec are:
    Model Name:                             Mac Pro
      Model Identifier:                      MacPro3,1
      Processor Name:                      Quad-Core Intel Xeon
      Processor Speed:                      2.8 GHz
      Number Of Processors:            2
      Total Number Of Cores:          8
      L2 Cache (per processor):        12 MB
      Memory:                                  8 GB
      Bus Speed:                               1.6 GHz
      Boot ROM Version:                 MP31.006C.B05
      SMC Version:                          1.25f4
    Does anyone have a solution?

    The usual reason for that error is that the application isn't installed. As for why they didn't install, that I can't tell you.
    Bob

  • Mysterious issues with the pen tool in flash (CS3 & CS4)

    i have searched tirelessly for the answer to this problem and still have no answer. when using the pen tool to create shapes, occasionanally when i click to add the next point the line segment jumps over to a previously added point. also, sometimes when i add a point, the point mysteriously starts moving on the screen all by itself. i have used illustrator for many years and it's pen tool is perfect in so many ways and it is counterproductive to have to jump to illustrator to do any pen tool work and then import it into flash
    anybody have this issue or know why this might be happening?

    Hello
    I have the same issue. I think it is a bug.
    Sometimes when I  delete points with <delete> key on keyboard, flash also deletes randomly frames on locked layers with all of its contents.
    You have to start tricking over these issues, if you do not want to be nervous. Like using a one key -shortcut substitute of Ctrl+Z
    Sometimes it's happening, because there are not perfectly overlapping shapes on each other on one layer, .
    Sometimes because there are a parenting issue, flash sometimes breaks, if you draw to deep under the "root" of the
    project.
    Or if you have a lot of vectrice on one layer. But I am just guessing too.

  • Media Encoder issue - The application was unable to start correctly (0xc0000022)

    I've just installed Adobe Media Encoder CC and upon opening the application I receive this error:
    How should I fix this?

    This is a Dynamic Link error.
    DL is technology linking DVA applications together.
    Do you by any chance have mixed versions of DVA application?  Like Premiere Pro CC 2014 and AME CC (2013)?
    That could possibly cause such issue.  You should use matching releases as much as possible. 
    So if you update one video product (Premiere Pro, AE, Prelude, AME, Audition) you should update all the other ones.
    If that's not the case, open up task manager, Force End Dynamic Link task.  Then try to launch AME.
    If still no help, reboot the system and then try to launch AME.
    If still have this issue, hold the shift key then launch AME (This will reset AME preferences).
    --Nariman

Maybe you are looking for

  • My Macbook Pro won't boot from External HD

    Could anyone out there, maybe Ned or Peter who helped me last time tell me why it wont boot from an image i have loaded onto the HD? I managed to restore the image onto the HD using disk utility but when i press the power button and hold down 'Alt' i

  • Play count for imported items

    Here's a new one for me... Starting with this latest version, when I burn a CD, it automatically marks the Play Count for those items at 1. Anyone else encounter this? Is there a fix?

  • K9N2 Diamond question.

    I have a problem with getting Sata port 5 and 6 to do any thing for me. I have been reading round on this forum and found that port 5 and 6 are only active in ACHI mode. This realy is a problem, as my SSD disk don't suport ACHI mode and my plextor dv

  • Referentail Integrity Error when changing Entity Name

    I updated the metadata file to change a Entity name and when I tried to load I received an Integrity error because of some old Journal Entries from 2001-2003. Is there a way around this without modifying the journal entries? Metadata referential inte

  • Printing via usb9107

    I try to configure a printer (hp laserjet 3050) connected to usb port on my router usb9107. I configured the printer using cups (rel. 1.3.5) interface as "http://192.168.255.1:1631/printers/My_Printer" and i selected the driver as generic PCL and and