How to make content horizontal swipe in single standard frame in Indesign CS6?

How to make content horizontal swipe in single standard frame in Indesign CS6?

This sounds like a question for the DPS forum. We don't handle DPS questions here:
Digital Publishing Suite

Similar Messages

  • How to make contents of DIV on page I'm leaving fade out?

    I am trying to figure out how to make the contents of a DIV on the page I'm clicking away from fade out. I know how to make the next page load with a fade in. So I'm half way there (I guess).  Wix has a lot of designs that use this effect. Here's a link to an example:
    http://www.wix.com/website-template/view/html/633?originUrl=http%3A%2F%2Fwww.wix.com&numbe r-of-page=1&position-in-page=1
    This is the code that I use to make a DIV load with a fade in:
    I add this CSS code under the DIV that I want to apply the fade in effect to:
         animation: fadein 2s;
        -moz-animation: fadein 2s; /* Firefox */
        -webkit-animation: fadein 2s; /* Safari and Chrome */
        -o-animation: fadein 2s; /* Opera */
    And I add this extra code to the CSS styles sheet:
    @keyframes fadein {
        from {
            opacity:0;
        to {
            opacity:1;
    @-moz-keyframes fadein { /* Firefox */
        from {
            opacity:0;
        to {
            opacity:1;
    @-webkit-keyframes fadein { /* Safari and Chrome */
        from {
            opacity:0;
        to {
            opacity:1;
    @-o-keyframes fadein { /* Opera */
        from {
            opacity:0;
        to {
            opacity: 1;

    Success!!! Thank you! Although I did have to change one more thing. See bold text below.
    One more question. What if I wanted to apply this effect to two ID's instead of one? Would it be as simple as adding a comma and then the ID in quotes like this?.... $(#container", "#footer")
    $(document).ready(function() {
        $("#container").css("display", "none");
        $("#container").fadeIn(2000);
        $("a.transition").click(function(event){
            event.preventDefault();
            linkLocation = this.href;
            $("#container").fadeOut(1000, redirectPage);       
        function redirectPage() {
            window.location = linkLocation;

  • How to make a handwriting font look like real handwriting in InDesign CS5

    This is a script I've written (AppleScript) that addresses the  problem most handwriting fonts have — they look like fonts, mostly  because they're settled so regularly along the baseline and their glyphs  are so uniform.
    It began as a way for me to address a  need for a project I was working on, something designed to look like a  scrapbook. I was using the "Journal" typeface designed by Fontourist  (http://www.dafont.com/journal.font), which gave me a good balance of  readability and organic feel, but of course it had the same issues as  all other fonts of its ilk.
    To address that I wrote a  script to trawl the taxt frames in a specified CS5 INDD document,  looking fist to see if they had that font as their active one, after  which the script shifts each glyph up or down the baseline by a random  amount, gives each glyph a random stroke weight change, and finally  tints each glyph a random amount off of its basic tint.
    Each  of these changes is very subtle, with the result being something that  looks considerably more organic and hand-made than the font did out of  the can. The script should be easily modified by anyone who wants to run  it using a different font instead of "Journal". Here it is. Enjoy!
    -- This script changes the  baseline offset, stroke width, and color tint
    -- of any type set in the "Journal" typeface to randomized values,  giving
    -- the text a much more organic look and feel.
    -- Written by Warren Ockrassa,  http://indigestible.nightwares.com/
    -- Free to use, modify and distribute, but I'd prefer attribution.
    -- Note that this script can take quite a while to execute with  larger
    -- or more complex files.
    set theItem to 0
    set theItem to choose file with prompt "Select a CS5 InDesign  document to modify..."
    if theItem is not equal to 0 then
         tell application "Adobe InDesign CS5"
             open theItem
             tell active document
                 -- Determine how many text frames we need to change
                 set myFrames to the number of text frames
                 if myFrames is not equal to 0 then
                     set theFrame to 1
                     repeat until theFrame > myFrames
                         set myText to text frame theFrame
                         set myFont to applied font of character 1 of myText  as string
                         -- Check to make sure we're only modifying text  frames
                         -- that have been set in the "Journal" typeface
                         if word 1 of myFont is "Journal" then
                             repeat with thisCharacter in (characters of  myText)
                                 -- Randomize the values of baseline shift,  stroke, and tint
                                 set baselineShift to ((random number from -5  to 5) / 10)
                                 set strokeWeight to (((random number 10)) /  100)
                                 set myTint to (100 - (random number 10))
                                 set fillColor to fill color of thisCharacter
                                 set baseline shift of thisCharacter to  baselineShift
                                 set stroke color of thisCharacter to  fillColor
                                 set stroke weight of thisCharacter to  strokeWeight
                                 set fill tint of thisCharacter to myTint
                                 set stroke tint of thisCharacter to myTint
                             end repeat
                         end if
                         set theFrame to (theFrame + 1)
                     end repeat
                 end if
             end tell
         end tell
         beep
         display dialog "Modifications finished!" buttons {"Groovy!"} default  button 1
    else
         display dialog "Operation cancelled" buttons {"OK"} default button 1
    end if

    For the fonts, the really cheap and dirty method would probably be to load the names of the fonts you want to use into an array variable in the AppleScript, then get a random index count to grab one of the font names out of that array.
    The script as it exists now goes character by character - you'd want to revise it so it went word by word instead, or else you'd end up setting each word's character to one of your random font choices. Instead of
    repeat with thisCharacter in (characters of  myText)
    you'd do something like
    repeat with thisWord in (words of  myText)
    As for loading an array variable in AppleScript - I've not done that before, but it's probably something like:
    set myFontArray to {"Papyrus", "Arial", "Comic Sans"}
    The curly braces are necessary, as it appears that AppleScript supports lists rather than arrays (a minor but not entirely unimportant detail). Anyway, from there, you'd grab one font at a time, randomly, probably like this:
    set myWordFontNumber to random ( length of myFontArray ) - 1
      set myWordFont to item myWordFontNumber of myFontArray
    You do the first line to get a random number based on the number of items in your list of fonts. You subtract 1 from it because the count on the actual list begins at 0 rather than 1, which means that sometimes you'll get a random number that's actually 1 larger than the number of items in the list, and you'll never see the first item (which is at position 0). This is a very old-school gotcha when working with arrays and lists - a ten-item list will count from 0 to 9, not 1 to 10.
    From there, you'd set the given word in your text frame's font to the name of the font you pulled out of the myFontArray variable. You'll want to make sure that the font names you load into your list are the actual names of the fonts you're working with - the examples I used here probably won't work.
    Please note that this is just a high-level gloss of what you'd need to do in order to modify the script. You'll have to hit the AppleScript documentation (and InDesign's scripting documentation) to get the precise syntax.

  • How To Use The Pen Tool in Adobe Illustrator, Photoshop and InDesign CS6 | Creative Suite Podcast: Designers | Adobe TV

    In this episode of the Adobe Creative Suite Podcast Terry White shows how to use the Pen Tool to create Art, Frames and to trace images in Photoshop CS6. If you've never used the Pen Tool before, this is your video!
    http://adobe.ly/STegFg

    With the pen tool in Indesign, is there a way of making the points not join if you want to make a few single lines?

  • How can I enable CJK typesetting options in English version of InDesign CS6?

    Hi,
    I've installed InDesign CS6 recently in English (International). I need to typeset a Chinese text vertically.
    I've heard of shareware plugins like "World Tools Pro" that can enable CJK special typesetting options, but I need a cheaper approach.
    Does anyone know how to typeset CJK text with a freeware plugin or internally without plugins?

    Thank you for your prompt reply! I understand that it's not easy for developers to make a plug-in without profit, especially in the Creative industry nowadays... So maybe a "free" plug-in is not what I should demand for, right?
    I've heard of a way to "sort of" enable the CJK editing options by playing some regedit magic! (HERE) But I hate this because it changes my entire UI into other language... (well I'm a Chinese and English reader but I've stuck to English version of InDesign for a long time... ) So may someone suggest some other possible ways to change settings internally like regedit-ing other than plugins?
    BTW, when googleing, somebody actually says that using a Chinese/Japanese/Korean version of Microsoft Word to type the CJK text and copying it to Id afterwards may work... Well I've tried but it seems to fail. Also someone suggests that since Illustrator's text box support some "pseudo-CJK options" (vertical text, rotating text, but the language can still NOT be recognised as CJK...), just copy the paragraph made in Illustrator to InDesign will work. But the latter method doesn't allow further editing of text. (most likely because the copied content is soon recognised as vector image in Id) Are these all true?

  • How Do I Mass Search and Replace Swatch Colors In Entire Indesign CS6 Document?

    I've jumped from CS4 to CS6 and its been a little while since, but just trying to refamiliarize myself with the many Features of Indesign CS6.
    Here's my issue: I have a really old CS4 document I've opened up and saved in CS6. I have to change all swatch colors throughout the document from pantone swatch 295 C to updated pantone swatch 293 C.
    Question, without my having to go through the entire document one object at a time looking for each object, HOW do i perform a Mass search and replace of Color swatch references from 295 C to 293C.
    I thought i could just click swatch properties and update the color... but No... that doesnt work as swatch properties is just grayed out
    I'm sure i've overlooked something but a refresher on how to mass find and replace color in a document would be great.
    Thanks and looking forward to hearing from someone.

    Thanks for the tips.... both seem like good options without my having to purchase a 3rd party software to accomplish this...
    I must admit... Because I've been stuck in Web Design and Motion Graphics for the past couple of years, when I re-opened my old print work from the CS4 days into CS6 it is obvious I have some catch up to do....
    I was almost embarrassed to admit I had forgotten the technique of Alias one color to another using Ink Manager... I had to look it up and found this helpful tutorial http://indesignsecrets.com/alias-one-color-swatch-to-another.php
    Thanks for both solutions....

  • How to make a horizontal line in java html browser?? without hr

    I use java html browser
    I want to make a black horizontal line
    the <hr> line is not good
    for my customer it seems that there is a double spacing in this case
    I tried to write
    <td style = "BORDER-BOTTOM: 1px solid #000000"> ...
    but it does not work
    I suppose this style is not supported by the default StyleSheet
    I tried to write
    <td bgcolor="black" height=1>
    but the table has all rows with equal sizes
    therefore the real height is too big
    Please help me
    I tried to write
    <table border="1">... </table>
    even in this case I have table without any border

    Hi,
    the best way might be to use a blind table with all cells set to have a border on the bottom. The problem is that the standard Java runtime does not render such setting automatically. There is plenty of work involved to adapt it and still it then would work only in the adapted version and not the standard runtime environment.
    Anyway, you can find a working example of how to accomplish individual borders around table cells in open source application SimplyHTML at http://www.lightdev.com/dev/sh.htm
    Ulrich

  • How to make a photo into a single or 2 colored stamp/vector type image

    I'm fairly new to photoshop and have seen designs like the few I've posted below and I want to know how I can make my pictures into items like those. I tired doing a search but I'm not even sure what this type of image & techinque is called, so the search ended in failure. I have the newest edition of photoshop as well as photoshop, photoshop elements and corel painter essentials. Any help is greatly appreciated!!

    Dayana
    Please excuse if I go over some things that you aleady know, but again I do not want to take anything for granted that would prevent us from moving forward on your project.
    When you wrote
    When I go to Blu-Ray on the Status it says No Burners detected, and with AVCHD it says Busy.
    1. Does your burn dialog have a field named burner location:? If so, does your Blu-ray burner show up as a choice in its drop down list?
    2. And, with that "...with AVCHD it says Busy", have you selected Publish+Share/Disc/AVCHD disc and inserted a Blu-ray disc instead of a DVD disc, when you get the Busy message? The choice of Blu-ray is a Blu-ray disc; the choice for AVCHD is only a DVD disc. So, please clarify that point.
    3. Have you tried Publish+Share/Disc/AVCHD disc with a DVD double layer single sided disc?
    4. As a note..the maximum bitrate for burn to DVD-VIDEO on DVD disc 4.7 GB/120 minutes and 8.5 GB/240 minutes is the same, that is 8.00 Mbps. Whereas, the maximum bitrate is much higher for the AVCHD burn to DVD disc and the Blu-ray burn to Blu-ray disc (about 15.74 to 15.50 Mbps for AVCHD DVD, and about 20.19 to 24.0 Mbps for Blu-ray disc format on Blu-ray disc. More details on the exact values if needed.
    What is the bitrate of the AVCHD file that you have imported to the Timeline? See if you agree...if the source has a higher bitrate than the export bitrate, would not you expect smaller file size for the export? And if the source has a lower bitrate than the export bitrate, would not you expect a larger file size for export?
    Do some mini tests runs to prove or disprove that. Look at the Space Required and Bitrate reading in the burn dialog when you have a given disc in the burner tray.
    Please review.
    Thanks.
    ATR
    Add On...
    Do you have the equipment that will play back AVCHD DVD as well as Blu-ray disc format on Blu-ray disc?

  • How to make contents to be displayed in sam window by selec node in JTree

    hi,
    am a starter only, i need some help in JTree.
    I was able to make a tree using JTree.
    But the problem is..i want the contents corresponding to each node selected, at right side of the window..
    Just like we select node of a tree which is left side of the window its content will appear at that mouse click..right side of the same window
    Edited by: priya_1984 on Jun 21, 2008 2:25 AM

    Read the JTree API and follow the link to the Swing tutorial on "How to Use Trees", where you will find a working example.

  • How to make content of DVD so that copies cannot be burned from it. uncopiable.

    How to I format my DVD so that its content cannot be copied by others?

    Hi
    You can't - or rather I can't - Only big companies as EMI, SONY etc can pay for that service.
    So I made a small not on it.
    DVD Copy-protect
    No there is non in standard iDVD.
    The most common solution is to put a logo that stays on top of the full movie.
    e.g.. Copyrighted to . Or made by etc.
    Not even if You buy FinalCut Studio and get DVD-Studio Pro. You will not get this.
    The Copy-protection in DVD-Studio Pro is just a flag set to alert DVD-producers
    to make this in DVD-burning Companies.
    There is such protections to Commercial materials and to astronomical costs.
    And one can figure to what need, when there are no really secure Copy-protection.
    One can only plead to respect the Copyrights
    NEWS ! Karsten got a very interesting solution
    sites.google.com/site/karstenschluter/diy-dvd-copy-protection
    Yours Bengt W

  • How to make content fit on one disc.

    Sort of new to this. I have a 5.5 GB DVD project I want to fit on one single layer DVD. How do I make it fit without sacrificing too much quality?
    Is there an automatic way to change bit rate, etc to make it fit?
    Thanks

    PDTV is exactly right.
    You indicated you left the encoding to default settings of the program.
    That doesn't work very well, because the audio is uncompressed, and the settings in the preferences may not be consistent with the length of your video.
    For example, if you have 120 minutes of video and the default settings are maximum bit rate of 7.5, it won't fit, and your audio will be uncompressed aiff.
    Set a bit rate in Compressor suitable for the length of your video, and encode your audio to Dolby 2

  • How to make multiple headers for a single pages doc

    Hi,
    I am trying to submit works of short fiction to markets such as Asimov's and Analog.  Their online submission guidelines typically call out a format like the one described here;
    http://www.shunn.net/format/store.html
    This seems like a very reasonable thing to want to do with Pages.
    I can match this format beautifully in Pages, with one exception.  The format they are asking for has a word count in the header of page one, and on the subsequent pages a header that looks like "Story title / author name / page #".  I can't figure out how to do this.
    Question 1.) Is it possible to do this at all in Pages (iOS or OSX)?
    Question 2.) If so, how?
    Question 3.) Is there a ready-made template for this, for iOS, anywhere that I may download or purchase?
    Thanks -
    C

    For the time being, I can only respond to Pages for iOS. OS X I'll need to check when I get home (or perhaps someone else will beat me to it). You may wish to post in the Pages for Mac forum for better exposure.
    In Pages for iOS you are limited to a single header and footer. There is no Section structure so no way to do different headers/Footers for different pages (as you can do in MS word for example). To modify the Header and insert the text you want: Tap the Tools icon (wrench in upper right), then Document Set up. Tap in the header field, then tap and hold to use the menu to insert pages numbers, then type the text you need.
    Quite possibly. Check the app store. Or you may be able to set this up in Pages for OS X and import it into Pages on the iPad. I'm not certain the sections will import however.
    Also consider using a different app, such as word for iOS or any of the numerous other word processing apps available.

  • How to make a horizontal TilePane report its height correctly?

    I have what I thought was a simple task -- place a horizontal TilePane inside of a resizable parent, and have it use as many rows as its current width would suggest.  Setting its prefColumns to zero accomplishes that.  Unfortunately, it also causes it to report a height equal to the child height times the number of children.  In other words, it reports a height that would be achieved with a single column.  That's a big fail if I want to stack two or more of these panes vertically in another container.
    On the other hand, if I specify a positive number of columns (or accept the arbitrary default of 5), then it will never use fewer columns than that, even if the container is resized to be narrower, and (related to the point above) if it uses more than that number of columns because the container is wide enough, then it again reports its height as too large (because it's basing its height computation on prefColumns).
    Is there any way to get it to do the right thing?

    I'm not seeing that at all. In my test (see below) the heightProperty(), or getHeight(), appear to always report the actual height of the tile pane correctly.
    To stack tile panes vertically on top of each other, I would just put them in a VBox. The VBox will dynamically take care of laying them out correctly. If you really wanted to lay them out yourself (in a Pane or StackPane, for example), you could probably bind the layoutY property of each one to a Binding expression representing the sum of the heights of the tile panes above. But that's a lot of work simply to replicate the job of a VBox .
    import javafx.application.Application;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Insets;
    import javafx.geometry.Orientation;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Label;
    import javafx.scene.layout.HBox;
    import javafx.scene.layout.TilePane;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class TilePaneTest extends Application {
    @Override
      public void start(Stage primaryStage) {
      final VBox root = new VBox();
      final VBox tilePaneContainer = new VBox();
      final int NUM_TILE_PANES = 3 ;
      final TilePane[] tilePanes = new TilePane[NUM_TILE_PANES];
      for (int i=0; i<NUM_TILE_PANES; i++) {
          tilePanes[i] = new TilePane(Orientation.HORIZONTAL);
          tilePanes[i].setPrefColumns(0);
          tilePanes[i].setPadding(new Insets(3));
          tilePanes[i].setStyle("-fx-border-width:1px; -fx-border-color:blue;");
          tilePaneContainer.getChildren().add(tilePanes[i]);
          final int index = i ;
          tilePanes[i].heightProperty().addListener(new ChangeListener<Number>() {
                    @Override
                    public void changed(ObservableValue<? extends Number> observable,
                            Number oldHeight, Number newHeight) {
                        System.out.printf("Tile pane %d has height %.1f%n", index, newHeight.doubleValue());
      Button newTileButton = new Button("New Tiles");
      newTileButton.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent event) {
                    int paneNumber = 0 ;
                    for (TilePane tilePane : tilePanes) {
                        Label label = new Label(String.format("Tile pane %d%nTile%d", ++paneNumber, tilePane.getChildren().size()));
                        label.setStyle("-fx-border-width: 1px; -fx-border-color: black;");
                        tilePane.getChildren().add(label);
      HBox controls = new HBox();
      controls.getChildren().add(newTileButton);
      root.getChildren().addAll(controls, tilePaneContainer);
      primaryStage.setScene(new Scene(root, 400, 400));
      primaryStage.show();
      public static void main(String[] args) {
      launch(args);

  • How to make content of af:popup dynamic? Component Value is not updating.

    HI,
         I am not able to update the component used in af:popup dynamically.
         In my case, the value of the component used in the popup is updated every time before opening the popup.
         I am building the af:popup. I am using component binding for my components. And I am setting data in the component using the component in the Managed bean only. The getter method for every component that I bind gets called only once i.e. while loading of the page. So when ever I change any thing in the component in managed bean, it is not reflecting in JSPX page. Coz it not calling the getter method of the component, so it is not getting the updated status for the component. But if you refresh the page you will get the updated component.
         Following is the sample code to simulate my problem,
         JSPX Page:-
    <af:commandButton text="RCF Dialog (Without Script)" id="button1"
    windowHeight="600" windowWidth="600">
    <af:showPopupBehavior popupId="samplePopup" alignId="button1"
    align="afterEnd"/>
    </af:commandButton>
    <af:popup id="samplePopup" clientComponent="false"
    contentDelivery="lazyUncached">
    <af:dialog title="Sample Dialog Test" modal="true"
    cancelVisible="true" okVisible="true">
    <af:inputText label="Label 1" value="#{searchField.myValue}"/>
    <af:inputText label="Label 2" binding="#{searchField.textField}" />
    </af:dialog>
    </af:popup>
    Managed Bean:-
    public static int count = 1;
    private String myValue = null;
    private CoreInputText textField = new CoreInputText();
    public String getMyValue(){
    String value = "MESSAGE_" + count;
    System.out.println("Count ==>" count " Value ==>"+value);
    count++;
    return value;
    public CoreInputText getTextField() {
    //Get called only once at the page load.
    textField.setValue(getMyValue()+"_XXX");
    return textField;
    public void setTextField(CoreInputText textField) {
    //Get called every time dialog is opened.
    this.textField = textField;
    Please let me know what to do make the content of the af:popup dynamic.
    Any suggestions are welcome.

    HI,
    I have simulate my problem using one text field component in side the popup. It is the same way that i am using. In my case there is more code in the constructor of the dialog bean.
    Following is the code,
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
    xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=windows-1252"/>
    <f:view>
    <af:document title="Popup Demo">
    <af:form>
    <af:spacer width="10"/>
    <af:commandButton text="RCF Dialog (With Script)" id="button"
    actionListener="#{mainScreen.processAcion}"/>
    <f:verbatim>
    <![CDATA[
    <script>
    function launchSampleDialog() {
    var popup = AdfPage.PAGE.findComponent("samplePopup");
    var hints = {};
    hints[AdfRichPopup.HINT_ALIGN] = AdfRichPopup.ALIGN_OVERLAP;
    hints[AdfRichPopup.HINT_ALIGN_ID] = "button";
    popup.show(hints);
    </script> ]]>
    </f:verbatim>
    <af:popup id="samplePopup" clientComponent="false" contentDelivery="lazyUncached" >
    <af:dialog title="Sample Dialog Test" modal="true" id="dialogId" cancelVisible="true" okVisible="true">
    <af:inputText label="Label 1" />
    <af:inputText binding="#{dialogBean.textField}" />
    </af:dialog>
    </af:popup>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    //Main Screen Bean set in session scope.
    public class MainScreenBean {
         private static int count = 1;
         public void processAcion(ActionEvent event){
    String updatedData = "ABCDEFG__" + count;
    System.out.println("Inside process Action of Main Bean. Data set in Scope ==>" +updatedData );
    FacesContext facesContext = FacesContext.getCurrentInstance();
    facesContext.getExternalContext().getSessionMap().remove("dialogBean");
    AdfFacesContext afContext = AdfFacesContext.getCurrentInstance();
    afContext.getProcessScope().put("updateData", updatedData);
              count++;
    ExtendedRenderKitService service = Service.getRenderKitService(facesContext, ExtendedRenderKitService.class);
    service.addScript(facesContext, "launchSampleDialog();");
    //Popup Dialog Bean set in session scope.
    public class DialogBean {
    private RichInputText textField = null;
    public DialogBean() {
    textField = new RichInputText();
    textField.setLabel("Custom TextField");
    AdfFacesContext afContext = AdfFacesContext.getCurrentInstance();
    textField.setValue(afContext.getProcessScope().get("updateData"));
    System.out.println("Data From Scope in Dailog Bean = " + afContext.getProcessScope().get("updateData"));
    RequestContext.getCurrentInstance().addPartialTarget(textField);
    public RichInputText getTextField() {
    System.out.println("Inside getter for the component in Dailog Bean. Value = " + textField.getValue());
    return textField;
    public void setTextField(RichInputText textField) {       
    AdfFacesContext afContext = AdfFacesContext.getCurrentInstance();
    //Uncomment following line and run again. It will start showing updated value. But this will get called many times.
    //textField.setValue(afContext.getProcessScope().get("updateData"));
    System.out.println("Inside setter for the component in Dailog Bean. Value = " + textField.getValue());
    this.textField = textField;
    }

  • How to make content Pane on JFrame looks like Moving

    Hi guys,I have to make a Content Pane look like Race Track which is constantly moving as the cars moves forward.

    Yeah, you might want to check out SwingWorker
    http://java.sun.com/products/jfc/tsc/articles/threads/update.html
    .. and put the cars in threads.

Maybe you are looking for