Shortcut (accelerator key) on radiobutton or other control ?

Hi all
How to implement accelerator keyboard shortcuts on a radiobutton groups in a dialog ?
The keyboard shortcuts are shown with an underlined char on each label of the radiobutton group.
Windows wordpad.exe use this method in the 'Search & Replace' dialog ?
Is it possible to use this with a checkbox controls ?
Thanks in advance from a newbee

Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
*Don't make any changes on the Safe mode start window.
*https://support.mozilla.com/kb/Safe+Mode

Similar Messages

  • How to activate JMenu from other frame using accelerator key

    Hi.
    I'm developing an application for my final year project.
    i set up my application to have multiple frame open at the same time (like sunone studio in SDI mode). only one JFrame contains the JMenuBar.
    i can activate this menu bar using the accelerator key when the containing JFrame has focus. however, i donot know how to make the Menu activate when the accelerator key is pressed on other frame. press help, thanks in advance.

    does any one have some idea.
    the solution i found seem not suit my need.
    i want to be able to pull down (and get the focus transfered to) the jmenu in menubar of another frame using the menu's mnemonics. using InputMap does not seem to fit since i need to the menmonic of menu is not in the input map.

  • Accelerator keys for a JFrame containing JTextPane

    Hi, I have written a text editing window which extends JTextPane, and is embedded in a JFrame with a menubar. I have attached accelerator key shortcuts to each JMenuItem. However, none of them work, because my extension of JTextPane implements KeyListener, and thus controls keyboard input. How do I get the accelerator keys to still work? In general they are all Ctrl-key combinations with no meaningful function in the JTextPane.

    The only way I have found around this problem is to make your JFrame a KeyListener, and add it as a KeyListener of your JTextPane. In the keyPressed method of your JFrame call the processKeyEvent method. That will route the key to the menu. I have used this for a JTable and JTree under my JFrame, but not a JTextPane. It should work the same.
    I have heard rumors that this will be fixed in 1.4. Pretty lame that it is so difficult to do.

  • Accelerator keys on actions

    I have a menu where i insert a lot of actions like this:
    ActionMap actions = menuBar.getActionMap();
    // fill actions with a lot of actions
    JMenu fileMenu = (JMenu) menuBar.add(new JMenu(Utils.getTextKey("menu.file")));     fileMenu.add(new JMenuItem(actions.get("action.save")));
    Each action has:
    - ACCELERATOR_KEY
    - DEFAULT
    - SMALL_ICON
    values set, and they show up in the menu with icon and a pretty shortcut with another color. But the accelerator keys doesn't work.
    So I try to make a InputMap:
    InputMap inputs = menuBar.getInputMap(JPanel.WHEN_IN_FOCUSED_WINDOW);
    for (int i = 0; i < actionList.length; i++) {
    String name = (String) actionList.getValue(Action.DEFAULT);
    actions.put(name, actionList[i]);
    inputs.put((KeyStroke) actionList[i].getValue(Action.ACCELERATOR_KEY), name);
    The accelerator keys still doesn't work!
    The MenuBar is inside a JPanel that is inside the main JPanel.
    The rest of the application is inside a lot of JPanels and JTabs and others.
    How is this supposed to work?

    Yeah, I tried that too...
    JCheckBoxMenuItem gridToggle = new JCheckBoxMenuItem(actions.get("action.grid_toggle"));
    gridToggle.setAccelerator((KeyStroke)actions.get("action.grid_toggle").getValue(Action.ACCELERATOR_KEY));
    gridMenu.add(gridToggle);
    I even tried to give the JMenuItem another KeyStroke thos way, overriding the action, and the menu had the last kaystroke, but doesn't work.
    Is there any magic that has to be initialized on the outermost frame or something to make those accelerators work?

  • Accelerator Key

    I would like to create a shortcut key, such as Ctrl+space or Ctrl+z, that users can press when they get to a field which has a drop down list to display the list without having to use their mouse and click on the down arrow. The lists are either displayed from a Choice List or run a sql query to a database.
    I looked at using an Accelerator key but cannot get that to work.
    Is what I want to do possible? Any ideas on how I can accomplish it?
    Thanks in advance.
    Mary

    Yes we are using Form Designer 5.0. The objects I'm using are Drop Down List Boxes.
    I didn't know about the DropOnEnter=True property (I'm kind of new at this) but that works well if I have a Choice List typed under List in the properties of the object, but if I run a query in code it doesn't work. If, in the properties, I change the DropOnEnter=True I need to also change the DropDownStyle to DropDownList (according to something I read). If I do that, it works perfect when I have a choice list but the drop down list won't even display with a mouse click for the db query. If I have the DropDownStyle set to DropDown Combo, the list will display from the query when I enter the field, but when I leave the field after pressing Enter to select one item, the data disappears.
    I have tried playing with different settings under Properties as well as looking at the code under the onExit and DropDownClick events for the object but am not sure.
    Here is the code under the two events which might give you some insight. I tried playing with the defaultselection and currentselection but as of yet haven't gotten it to work.
    It would be great if it worked just like it does with the Choice List.
    OnDropDownClick
    Dim oRS
    Dim strList
    Dim szSQL
    psrelcode.Clear()
    If (psrelcode.ListCount = 0) then
    if rbbus.Value = rbbus.OnValue then
    szSQL = "Select reldesc,relcode from relate where relcode = 'ADV' OR relcode = 'AKA' OR relcode = 'SUB' OR relcode = 'PAR' OR relcode = 'FKA' order by reldesc"
    Set oRS = WFDataClient.ConvertToRecordset(WFDataClient.ExecuteReturnDataSetWithConnName(szSQL,"conn _son2"))
    else
    rbindiv.Value = rbindiv.OnValue
    szSQL = "Select reldesc,relcode from relate where relcode = 'ADV' OR relcode = 'OC' OR relcode = 'PTR' OR relcode = 'PADV' OR "_
    & "relcode = 'SP' OR relcode = 'EXPW' OR relcode = 'FKA' OR relcode = 'HEIR' OR relcode = 'TRUST' OR relcode = 'COOWN' OR "_
    & "relcode = 'DIR' OR relcode = 'PRINC' OR relcode = 'CODEF' OR relcode = 'COCSL' order by reldesc"
    Set oRS = WFDataClient.ConvertToRecordset(WFDataClient.ExecuteReturnDataSetWithConnName(szSQL,"conn _son2"))
    End if
    Do Until oRS.EOF
    strList = strList & Trim(oRS(0)) & ";" & Trim(oRS(1)) & vbNewline
    oRS.MoveNext
    Loop
    psrelcode.ChoiceList = strList
    psrelcode.DefaultSelection = 0
    End if
    OnExit
    Dim oRS
    Dim strList
    Dim szSQL
    psrelcode.Clear()
    form.BusyCursor = True
    If (psrelcode.Text <> "") Then
    szSQL = "Select reldesc,relcode from relate where reldesc = '" & psrelcode.Text & "'"
    Set oRS = WFDataClient.ConvertToRecordset(WFDataClient.ExecuteReturnDataSetWithConnName(szSQL,"conn _son2"))
    If (oRS.recordCount > 0) then
    if (oRS.RecordCount = 1) then
    psrelcode.Text = Trim(oRS(0) & "")
    ReCode.Text = Trim(oRS(1) & "")
    psrelcode.DropDownStyle=1
    else
    psrelcode.Text=""
    ReCode.Text = ""
    end if
    Else
    psrelcode.Text = ""
    ReCode.Text = ""
    form.BusyCursor = False
    msgbox "No records found matching your criteria. Please try again.",vbinformation,"Relationship Lookup"
    form.GoToField(psrelcode)
    End if
    Else
    psrelcode.Text=""
    ReCode.Text = ""
    End if
    psrelcode.CurrentSelection = 0
    form.BusyCursor = False
    Thank you in advance.
    Mary

  • Javafx accelerator keys

    I have found information about how to setup accelerator keys, but they seem to be attached to the scene instead of the control.  This would work fine, but it seems that even when the control has been removed, replaced or even disabled the control the accelerator key still wants to fire.  Is there another way to do this, for example have the action event of a button fire when you press "CTRL-S", but only when the button is active and visible.
    Thank you

    I'm sorry for editing so late...............
    The problem that accelerators not showing on the menu item is on MAC.
    THe problem is only when there;s not modifier like a Comm or Ctrl ....and the accelerator is just say F6......
    In that case the accelerator F6 is not displayed in the menuitem as it does with modifiers...and evn on Win.

  • Sound keys on keyboard no longer control sound. What should I do to fix this?

    Sound keys on keyboard no longer control sound. What should I do to fix this?

    Hey Bill,
    Check to see if the option for "Use all F1, F2, etc. keys as standard function keys." is turned off. When it is turned on, you would need to hold the Fn key while hitting one of those keys will make it work they way icons are displayed. To find out where this option is, go to System Preferences > Keyboard and in the Keyboard tab is where you want to be. Take a look at the article below for more information. 
    How to change the behavior of function keys on your Mac
    http://support.apple.com/en-us/ht3399
    Takre care,
    -Norm G. 

  • How to add radiobutton in table control

    dear all
    i want to add radiobutton in table control and want to select the corresponding data
    & display that selected data in another screen
    please guide.
    Moderator Message: Please search for available information before posting.
    Edited by: kishan P on Jun 3, 2011 4:08 PM

    Hi,
    Go through the below link.
    <<link removed by moderator>>
    Hope it will be useful to you.
    Edited by: kishan P on Jun 3, 2011 4:07 PM

  • JTabbedPane w/ Accelerator Keys

    I need to add accelerator keys to the tabs of a JTabbedPane, much like the accelerators in a JMenuItem (i.e. under-score for Alt-F, or CTRL-X, etc...).
    Any suggestions?
    Thanks!

    It doesn't support accelerator, but it does support mnemonics. Check out the API for more information.

  • Compile for Debug accelerator key

    Hello all,
    it seems it's not possible to set an accelerator key for the "Compile for debug" command, at least I cannot find how to.
    Any ideas? If it's not possible, I would like to suggest it for a future release.
    With kind regards,
    Ronald

    It's not possible currently, you can log the request over at the exchange sqldeveloper.oracle.com
    -kris

  • Acct X for trans./event key BSX is a K control account.

    Dear Experts:
    I am not so familiar with FI and one question need your help:
    When I was trying to post a goods receipt against one purchase order I created earlier, I got an error message: "Account 199999 for trans./event key BSX is a K control account'
    For account 199999, the account group is Recon. account and acct type is Vendors.
    Can anybody let me know the solution to this issue? Thank you all in advance!
    Best Regards!
    Tim

    Hi Eli:
    Thanks for your reply. But if I delete the account in OBYC, I will get another error message: "Account determination for entry TDCC BSX 0001 ___ ZZXX not possible". If I maintain the entry: "0001     ZZXX     19999" in BSX in OBYC, I will get the error above.
    Do you know how to resolve that?
    Thanks~
    Tim

  • Accelerator key - is this a bug in Swing?

    Hello to everyone.
    I've written this Swing app which has JMenu.
    Anyway, i have set accelerator keys on most of JMenuItems but here is what is not working:
    JMenuItem exPaperXML = new JMenuItem("Paper XML");
    exPaperXML.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_F10, 0));As you can see, I tried to set F10 to be accelerator key for this JMenuItem.
    It doesn't work. It doesn't fire exPaperXML.actionPerformed(..) event, but
    instead it highlights File JMenuItem (which doesn't have accelerator key set at all).
    For example, I have set F9 as accelerator key for another JMenuItem and it works fine.
    What do you think, is this a bug in Swing?
    My JDK version is 1.4.2_05
    Thanks!

    1) Read the JMenuBar API.
    2) Click on the "JMenuBar Key Assignments" link
    3) Click on "Key Java"
    4) Note how F10 is used to select the first item.camickr thank you for quick reply.
    Is there a way to override this default action?
    Thanks.

  • RE: (forte-users) Accelerator keys under MS Windows95/98/NT

    This message is in MIME format. Since your mail reader does not understand
    this format, some or all of this message may not be legible.
    ------_=_NextPart_001_01BEF001.9C8C0B50
    Content-Type: text/plain
    Unfortunately, ALT key is not recognized as a validkey modifier on Windows
    That isn't entirely true. The ALT key is recognized. I've used it
    successfully
    under Windows 95 and NT. The only annoying side-effect is that you get the
    standard operating system beep when you perform the keypress.
    -----Original Message-----
    From: "Ajith Kallambella" [SMTP:[email protected]]
    Sent: Thursday, August 26, 1999 1:43 PM
    To: "[email protected]" [SMTP:[email protected]];
    "[email protected]" [SMTP:[email protected]]
    Subject: Re: (forte-users) Accelerator keys under MS Windows 95/98/NT
    The Window class has a method named SetAsFunctionKey
    and an event named FunctionKeyPress. When used
    in combination, the former can be used to configure
    various accelerator keys for the window widgets
    and the latter can be used to trap them.
    For more details, take a look at Forte online help.
    Unfortunately, ALT key is not recognized as a valid
    key modifier on Windows, but is only available on
    Unix and VMS - for reasons beyond my comprehension :(
    Hope this helps
    Ajith Kallambella M.
    Forte Systems Consultant.
    From: "Burns, Troy" <[email protected]>
    To: "'[email protected]'" <[email protected]>
    Subject: (forte-users) Accelerator keys under MS Windows 95/98/NT
    Date: Thu, 26 Aug 1999 13:56:07 -0400
    Let's say I have a pushbutton on a window and I've given it
    label text of "&Search". In past developer-lives, the ampersand
    is what gives the button the ability to respond to ALT-S. This
    doesn't appear to be the case in Forte. What do I need to do
    to make this work?
    Thanks in advance,
    Troy Burns
    E-mail: [email protected]
    Marriott Vacation Club International
    941-688-7700 ext. 4408
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: [email protected]
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: [email protected]
    ------_=_NextPart_001_01BEF001.9C8C0B50
    Content-Type: text/html
    Content-Transfer-Encoding: quoted-printable
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
    <HTML>
    <HEAD>
    <DEFANGED-META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
    charset=3Dus-ascii">
    <DEFANGED-META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
    5.5.2448.0">
    <DEFANGED-TITLE>RE: (forte-users) Accelerator keys under MS Windows =
    95/98/NT</TITLE>
    </HEAD>
    <BODY>
    <P><FONT SIZE=3D2>&gt; Unfortunately, ALT key is not recognized as a =
    valid</FONT>
    <BR><FONT SIZE=3D2>key modifier on Windows</FONT>
    </P>
    <P><FONT SIZE=3D2>That isn't entirely true. The ALT key is recognized. =
    I've used it successfully</FONT>
    <BR><FONT SIZE=3D2>under Windows 95 and NT. The only annoying =
    side-effect is that you get the</FONT>
    <BR><FONT SIZE=3D2>standard operating system beep when you perform the =
    keypress.</FONT>
    </P>
    <P><FONT SIZE=3D2>-----Original Message-----</FONT>
    <BR><FONT SIZE=3D2>From: &quot;Ajith Kallambella&quot; =
    [SMTP:[email protected]] </FONT>
    <BR><FONT SIZE=3D2>Sent: Thursday, August 26, 1999 1:43 PM</FONT>
    <BR><FONT SIZE=3D2>To: &quot;[email protected]&quot; =
    [SMTP:[email protected]];</FONT>
    <BR><FONT SIZE=3D2>&quot;[email protected]&quot; =
    [SMTP:[email protected]]</FONT>
    <BR><FONT SIZE=3D2>Subject: Re: (forte-users) Accelerator keys under MS =
    Windows 95/98/NT</FONT>
    </P>
    <BR>
    <P><FONT SIZE=3D2>The Window class has a method named =
    SetAsFunctionKey</FONT>
    <BR><FONT SIZE=3D2>and an event named FunctionKeyPress. When =
    used</FONT>
    <BR><FONT SIZE=3D2>in combination, the former can be used to =
    configure</FONT>
    <BR><FONT SIZE=3D2>various accelerator keys for the window =
    widgets</FONT>
    <BR><FONT SIZE=3D2>and the latter can be used to trap them.</FONT>
    </P>
    <P><FONT SIZE=3D2>For more details, take a look at Forte online =
    help.</FONT>
    </P>
    <P><FONT SIZE=3D2>Unfortunately, ALT key is not recognized as a =
    valid</FONT>
    <BR><FONT SIZE=3D2>key modifier on Windows, but is only available =
    on</FONT>
    <BR><FONT SIZE=3D2>Unix and VMS - for reasons beyond my comprehension =
    :(</FONT>
    </P>
    <P><FONT SIZE=3D2>Hope this helps</FONT>
    </P>
    <P><FONT SIZE=3D2>Ajith Kallambella M.</FONT>
    <BR><FONT SIZE=3D2>Forte Systems Consultant.</FONT>
    </P>
    <BR>
    <P><FONT SIZE=3D2>&gt;From: &quot;Burns, Troy&quot; =
    &lt;[email protected]&gt;</FONT>
    <BR><FONT SIZE=3D2>&gt;To: &quot;'[email protected]'&quot; =
    &lt;[email protected]&gt;</FONT>
    <BR><FONT SIZE=3D2>&gt;Subject: (forte-users) Accelerator keys under MS =
    Windows 95/98/NT</FONT>
    <BR><FONT SIZE=3D2>&gt;Date: Thu, 26 Aug 1999 13:56:07 -0400</FONT>
    <BR><FONT SIZE=3D2>&gt;</FONT>
    <BR><FONT SIZE=3D2>&gt;Let's say I have a pushbutton on a window and =
    I've given it</FONT>
    <BR><FONT SIZE=3D2>&gt;label text of &quot;&amp;Search&quot;.  In =
    past developer-lives, the ampersand</FONT>
    <BR><FONT SIZE=3D2>&gt;is what gives the button the ability to respond =
    to ALT-S.  This</FONT>
    <BR><FONT SIZE=3D2>&gt;doesn't appear to be the case in Forte.  =
    What do I need to do</FONT>
    <BR><FONT SIZE=3D2>&gt;to make this work?</FONT>
    <BR><FONT SIZE=3D2>&gt;</FONT>
    <BR><FONT SIZE=3D2>&gt;Thanks in advance,</FONT>
    <BR><FONT SIZE=3D2>&gt;</FONT>
    <BR><FONT =
    SIZE=3D2>&gt;---------------------------------------------</FONT>
    <BR><FONT SIZE=3D2>&gt;Troy Burns</FONT>
    <BR><FONT SIZE=3D2>&gt;E-mail: [email protected]</FONT>
    <BR><FONT SIZE=3D2>&gt;Marriott Vacation Club International</FONT>
    <BR><FONT SIZE=3D2>&gt;941-688-7700 ext. 4408</FONT>
    <BR><FONT SIZE=3D2>&gt;</FONT>
    <BR><FONT SIZE=3D2>&gt;--</FONT>
    <BR><FONT SIZE=3D2>&gt;For the archives, go to: <A =
    HREF=3D"<a href=
    "http://lists.sageit.com/forte-users">http://lists.sageit.com/forte-users</a>" =
    TARGET=3D"_blank">http://lists.sageit.com/forte-users</A> and =
    use</FONT>
    <BR><FONT SIZE=3D2>&gt;the login: forte and the password: archive. To =
    unsubscribe, send in a new</FONT>
    <BR><FONT SIZE=3D2>&gt;email the word: 'Unsubscribe' to: =
    [email protected]</FONT>
    <BR><FONT SIZE=3D2>&gt;</FONT>
    </P>
    <BR>
    <P><FONT =
    SIZE=3D2>_______________________________________________________________=
    </FONT>
    <BR><FONT SIZE=3D2>Get Free Email and Do More On The Web. Visit <A =
    HREF=3D"<a href="http://www.msn.com">http://www.msn.com</a>" =
    TARGET=3D"_blank">http://www.msn.com</A></FONT>
    </P>
    <P><FONT SIZE=3D2>--</FONT>
    <BR><FONT SIZE=3D2>For the archives, go to: <A =
    HREF=3D"<a href=
    "http://lists.sageit.com/forte-users">http://lists.sageit.com/forte-users</a>" =
    TARGET=3D"_blank">http://lists.sageit.com/forte-users</A> and =
    use</FONT>
    <BR><FONT SIZE=3D2>the login: forte and the password: archive. To =
    unsubscribe, send in a new</FONT>
    <BR><FONT SIZE=3D2>email the word: 'Unsubscribe' to: =
    [email protected]</FONT>
    </P>
    </BODY>
    </HTML>
    ------_=_NextPart_001_01BEF001.9C8C0B50--

    Hi,Beau Leo, I am having problem installing Oracle9i Database Rel.2 on my pc.
    I read the suggestion and solution you posted for fixing Oracle 8.1.x installation
    probblem, and since my pc also hung at 48% while installing Oracle 9i software,
    I wonder if the same problem in the Oracle8 Vs.Pentium4 also exists for Oracle9i.
    I have Windows2000,256RAM, Pentium3 1Ghz, and 13.8 free diskspace. But the installation always
    hangs at 48%, my computer will just shut down and restart automatically without
    even showing an error message. I have tried installing the Enterprise edition for 3
    times already but everytime encountered the same problem. I've also tried custom installation
    by selecting not to create database, but it also hung.
    Before I started each installation, I always made sure that my registry and environment
    path are cleared and that all the partially-installed Oracle files are deleted.
    I hope that you or anyone who has a solution for this problem could be so kindly to help me out.
    Thank you in advance.
    ailee

  • Accelerator keys in MAC !!!!

    I've set accelerator keys for Refresh Action(F5) using..............
    putValue(Action.ACCELERATOR_KEY, KeyStroke.getKeyStroke(KeyEvent.VK_F5,
    0));
    thought it works on pressing F5....the accelerator is not displayed alongwith the MenuItem in the menubar. : (
    { However other accelerators for which I'm setting accelerators are working fine and showing 'Comm sign' + C........say for copy.................where i did this..........
    putValue(Action.ACCELERATOR_KEY, KeyStroke.getKeyStroke(KeyEvent.VK_C,
    Toolkit.getDefaultToolkit().getMenuShortcutKeyMask()));
    Can Somebody suggest????....
    ALso can you tell me how can i set an accelerator for Help key in MAC..which is Command Key + '?'
    Actually I need the Key code for '?' key
    Thanks : )

    I'm sorry for editing so late...............
    The problem that accelerators not showing on the menu item is on MAC.
    THe problem is only when there;s not modifier like a Comm or Ctrl ....and the accelerator is just say F6......
    In that case the accelerator F6 is not displayed in the menuitem as it does with modifiers...and evn on Win.

  • Keys fn fn (or other) does not activate the dictation only functions "Edit" "Start Dictation .... on MacBook Pro, Please give me the solution Thanks.

    keys fn fn (or other) does not activate the dictation only functions "Edit" "Start Dictation .... on MacBook Pro, Please give me the solution
    Thanks

    Welcome to Apple Support Communities
    It's possible that Dictation is set up to be turned on with a different key. Open System Preferences > Dictation & Speech, and choose the key you want to use to activate Dictation next to "Shortcut". Read > http://support.apple.com/kb/ht5449

Maybe you are looking for

  • Firefox redirects me to wrong sites 50% of the time. Only on Firefox

    I get redirected when on the Firefox brwser 50% of the time == This happened == Every time Firefox opened == User Agent == Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4

  • TS4345 Can I use Migration Assistant to get info from a Macbook Pro that has a dead screen?

    I have a MacBook Pro 17 that the screen died on. I have a new MacBook Pro coming tomorrow and need to try to find a way to get the info from the old one to the new one. From the online info I saw on Migration Assist you need both screens to work to g

  • Oracle AMIs too big to bundle?

    Hello, I have started an instance based on the public Oracle 11g EE 32-bit image, and created a database following the prompts. Without storing any data, I shut down the DBConsole, Listener and Oracle Instance, then try to bundle it, but get the foll

  • Graphics in InDesign Export to PDF Pixelated

    I lay out a small paper, containing a few ads, stories & features. These ads and features are linked INDD files and contain text and linked images in PDF, AI and PSD formats. I recently acquired CS6. Since that point, when I export the project into P

  • Automatic batch pick up

    Hi gurus, I have a finished product which is batch activated in REM scenario. No components of it are batch active. While backflushing using MFBF the system is giving the error "please enter a batch". To avoid this i have activated internal number as