Re: trying to create custom video transistions....

Im trying to create custom transistions to a video project im working on .. I want to use a custom image that i created and am having problems making it work like a video transition that is installed with FC .. Im not sure if i have to use XML files or if its as easy as just putting the transistion in my video, which i tried, and the results were not good ..
Any help or link to another site would be greatly appreciated..

The templates used by your new theme in apex(that you created when you copied) would still be referencing your old css path.
So update check the templates used in your new theme for the referred css files
<li>In Your new theme's page templates check for the directory path that point to the old theme and modify that
For example(I am using theme2 here)
  <link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_2/css/theme_4_0.css" type="text/css" />
  <!--[if IE]><link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_2/css/theme_4_0_ie.css" type="text/css" /><![endif]-->
  <!--[if IE 6]><link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_2/css/theme_4_0_ie6.css" type="text/css" /><![endif]-->
  <!--[if IE 7]><link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_2/css/theme_4_0_ie7.css" type="text/css" /><![endif]-->Change the string in the CSS file path from theme_2 to theme_10 , assuming that it is in the same directory as the other themes. Else modify it appropriately.
Do this for all page templates(or atleast the ones you use).

Similar Messages

  • I am trying to create a video of my desktop using Quicktime (10.0). I have no sound. I have checked my system preferences and everything looks good there. Why am I lacking sound on my video?

    I am trying to create a video of my desktop using Quicktime (10.0). I have no sound. I have checked my system preferences and everything looks good there. Why am I lacking sound on my video?

    You might also post this question in the Quicktime forum https://discussions.apple.com/community/mac_os/quicktime

  • NI Configurator 4.1 - Crash when trying to create custom tab

    For some reason I have problems when trying to create custom tab in NI Configurator 4.1.
    Every time the result is same: Error - NIFCONF_ERROR_APPLICATION_EXCEPTION - Parameter is incorrect...
    Any help in this?
    br. Jouko

    ANNOUNCEMENT:
    We have just released a new version 4.1.1, which has fixed this issue.
    Get download and update through the link below:
    http://joule.ni.com/nidu/cds/view/p/id/3320/lang/en
    Thanks.
    Chris

  • Please help me avoid twisting my head off trying to create a video of iphone screenshots that will play on an iphone

    I'm trying to create some job aid videos for a client.
    Some of these are going to be how to do things on their iphones.
    I've used the screencapture facility on my phone to snap a dozen or so screen caps.
    I've moved them to my PC
    I've buit a project (in C8) that is sized 640 x1136 but when I punblish them as video (to you tube) it comes out landscape.
    So I created a version that was 1136 x 640 and rotated all my objects by 90 degrees.
    This works, but if I try working like this my head will screw off.
    There must be an easier way.....
    Can anyone help please.
    Thansk
    Alan

    Pooja
    That will certainly help geting the screen into Captivate.
    But the problem then happens when I try to publish to Video and send it to YouTube.
    When I full screen it it looks like this.
    To fix that I rotated all the objects to -90
    The video looks OK but it means when working on it I have a screen that looks like this
    And I don't want to end up looking like this!

  • Error when trying to create custom object

    Hi,
    The error below occurs when I am trying to create a new form that was created using the customer object 1 form.
    No language independent code exists for value 'English - United States' and type 'OCC_CUST_ZOBJ_1_LOV_3' with language 'ENU' in table 'S_LST_OF_VAL'.(SBL-DAT-00510)
    Has anyone seen this before?
    thanks

    David, I would recommend contacting On Demand customer care.

  • Trying to create HTML5 Video Playlist in Edge Animate - I can't get it to work. Please help!?!?

    Hi All,
    I am creating an interactive site through Edge Animate and am in the process of trying to create a HTML 5 Video Playlist to function within Edge Animate.
    Current Process - Example:
    I have 3 videos that need to be played on a certain page.
    I created a symbol and dragged the videos to the stage and hidden them within that symbol's timeline.
    I then use thumbnail images in a side playlist to either .remove(); .hide(); a video and .show(); the next.
    However when I do a hide / show option, the video continue to plays in the background if I don't also create an if/else statement to pause it.
    My concern with pausing it is that it will continue to load and dramatically slow down the load time of the site.
    References:
    I found this which looks very helpful but don't know how to add this to edge composition.
    http://demosthenes.info/blog/909/Create-An-Automatic-HTML5-Video-Playlist
    Please help or put me in the right direction to create a playlist would be hugely... AMAZINGLY.. helpful.
    Thanks,
    Jason

    Hi Joe,
    Thank you so much for your help on this one. It is hugely appreciated!!
    I have been working frantically to implement your solution to get this working. I used the 'change src' method.
    I have added all my code below in case anyone wants the solution in the future.
    Could you please help below as I am now totally stuck with the <track> and 'event listener issues' !!
    Issue #1:
    I am having major problems with loading the 'closed captions' track element.
    Everything I click for the video to change source / to the next video, the closed caption track adds to the video and doesn't 'unload' the previous one. You then end up with multiple different subtitle tracks on the video screen
    - The closed captions / subtitles are not showing up in Google Chrome either?
    Issue #2:
    I can't get the event listener in edge animate to work for 'playing' and 'ended'. Can you please help and point me in the correct direction??
    Screenshot (showing what happens after the 3rd video is loaded)
    This is the Code I am currently using in the "Creation Complete" of this Symbol.
    SET UP OF VIDEO PLAYER AND FIRST VIDEO
    var vid = sym.$("video_Chapter5");
    vid.html('<video id="ch5video" width="100%" height="auto" margin= "0 auto"  \
    position ="relative"  poster="video/video1_poster.jpg"  controls="controls" </video> \
    <source id ="videomp4src" src="video/Video_mp4_1.mp4" type="video/mp4" </source> \
    <source id ="videoogvsrc" src="video/Video_ogv_1.ogg" type="video/ogv" </source> \
    <source id ="videowebmsrc" src="video/Video_webm_1.ogg" type="video/webm" </source> \
    <track id ="trackvtt" kind="subtitles" src="video/Video_1_Script.vtt" srclang="en" label="English" hidden </track>');
    VARIABLE IDS
    $(document).ready(function() {
      var videoID = 'ch5video';
      var sourceID1 = 'videomp4src';
      var sourceID2 = 'videoogvsrc';
      var sourceID3 = 'videowebmsrc';
      var trackID = 'trackvtt';
      var vid1mp4 = 'video/Video_mp4_1.mp4';
      var vid2mp4 = 'video/Video_mp4_2.mp4';
      var vid3mp4 = 'video/Video_mp4_3.mp4';
      var vid4mp4 = 'video/Video_mp4_4.mp4';
      var vid1ogv = 'video/Video_ogv_1.ogv';
      var vid2ogv = 'video/Video_ogv_2.ogv';
      var vid3ogv = 'video/Video_ogv_3.ogv';
      var vid4ogv = 'video/Video_ogv_4.ogv';
      var vid1webm = 'video/Video_webm_1.webm';
      var vid2webm = 'video/Video_webm_2.webm';
      var vid3webm = 'video/Video_webm_3.webm';
      var vid4webm = 'video/Video_webm_4.webm';
      var script1vtt = 'video/Video_1_Script.vtt';
      var script2vtt = 'video/Video_2_Script.vtt'; 
      var script3srt = 'video/Video_3_Script.vtt'; 
      var script4vtt = 'video/Video_4_Script.vtt';   
      var newposter1 = 'video/video1_poster.jpg';
      var newposter2 = 'video/video2_poster.jpg';
      var newposter3 = 'video/video3_poster.jpg';
      var newposter4 = 'video/video4_poster.jpg';
    VIDEO PLAYLIST THUMBNAIL BUTTONS - TO CHANGE VIDEO IN PLAYER
      sym.$('btn1').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid1mp4);
      sym.$('#'+sourceID2).attr('src', vid1ogv);
      sym.$('#'+sourceID3).attr('src', vid1webm);
      sym.$('#'+trackID).attr('src', script1vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter1);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn2').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid2mp4);
      sym.$('#'+sourceID2).attr('src', vid2ogv);
      sym.$('#'+sourceID3).attr('src', vid2webm);
      sym.$('#'+trackID).attr('src', script2vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+trackID).load();
      sym.$('#'+videoID).attr('poster', newposter2);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn3').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid3mp4); 
      sym.$('#'+sourceID2).attr('src', vid3ogv); 
      sym.$('#'+sourceID3).attr('src', vid3webm);
      sym.$('#'+trackID).attr('src', script3srt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter3);
      sym.$('#'+videoID).get(0).play();
      sym.$('btn4').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid4mp4);
      sym.$('#'+sourceID2).attr('src', vid4ogv);
      sym.$('#'+sourceID3).attr('src', vid4webm);
      sym.$('#'+trackID).attr('src', script4vtt);  
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter4);
      sym.$('#'+videoID).get(0).play(); 
    EVENT LISTENER FOR PLAYING - TO CREAT BACKGROUND /LIGHT BOX SCREEN
    sym.$('#'+videoID).get(0).addEventListener('playing', function () {
    sym.getSymbol("backscreen_Ch5").$("backscreen").show();
    sym.getSymbol("backscreen_Ch5").play("play");
    EVENT LISTENER FOR ENDED - TO PLAY NEXT VIDEO IN SERIES
    sym.$('#'+videoID).get(0).addEventListener('ended', function () {
    //code to play next video

  • Trying to create custom theme but not able to find it.

    Hi,
    I am using Oracle 10g Database Express and APEX 4.0 and am trying to create a custom theme based on an existing one.
    I have created a theme_100 folder in the filesystem as a copy of theme_8 and have edited the css file & changed the colours of the images using Infraview graphics editor.
    I then have uploaded them into the DB using the WebDav function and can see the files when I run http://localhost:8080/i/themes/theme_100/
    However, within the application builder when I create an application and choose a theme, mine is not showing.
    Can you help me with whatever steps I am missing?
    Regards
    Adrian

    The templates used by your new theme in apex(that you created when you copied) would still be referencing your old css path.
    So update check the templates used in your new theme for the referred css files
    <li>In Your new theme's page templates check for the directory path that point to the old theme and modify that
    For example(I am using theme2 here)
      <link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_2/css/theme_4_0.css" type="text/css" />
      <!--[if IE]><link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_2/css/theme_4_0_ie.css" type="text/css" /><![endif]-->
      <!--[if IE 6]><link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_2/css/theme_4_0_ie6.css" type="text/css" /><![endif]-->
      <!--[if IE 7]><link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_2/css/theme_4_0_ie7.css" type="text/css" /><![endif]-->Change the string in the CSS file path from theme_2 to theme_10 , assuming that it is in the same directory as the other themes. Else modify it appropriately.
    Do this for all page templates(or atleast the ones you use).

  • Trying to create custom tag library

    I'm a novice trying to create a simple custom tag library application. As such I need a couple import statements like
    import javax.servlet.jsp.*;
    import javax.servlet.jsp.tagext;
    This statements will not compile. I'm using Java 2 1.4_03 and WSDP 1.3. My CLASSPATH currently holds
    c:\jwsdp\common\lib\servlet-api.jar
    and
    c:\j2sdk\lib\mysql-connector-java-3.0.11-stable-bin.jar.
    I've got JAVA_HOME set to c:\j2sdk and JWSDP_HOME set to c:\jwsdp.
    Thank you very much for any assistance you are able to render.

    Thanks for your reply. I'm using the TextPad editor, which uses CLASSPATH.
    I've figured out the answer. I needed to add
    c:\jwsdp\common\lib\jsp-api.jar
    to my CLASSPATH.
    Again, thanks.

  • Trying to create custom calculators.

    Hi would like to create custom calculators. So a visitor to my website can enter their info and recieve instant quotes ect. Something similar to an excel sheet that would calculate a loan, or whatever.
    Thanks

    I have used the Form Calculator Dreamweaver extension available at the following link:
    http://kaosweaver.com/extensions/details/Form%20Calculator
    It may help you with your needs. You can use it for free, but the extension's creator kindly asks for donations if you find it useful. If you're using Dreamweaver CC you'll have to convert the extension to the .zxp format first since I believe this extension is only available as .mxp.

  • Video blurry with motion when trying to create WMV video to share

    I have a Sony HDR-cx350.  I am currently using PE 9.    In the past using my standard def camcorder and PE 7.0 when I wanted to share a video for online I would usually select "share - windows media" and use the LAN preset to create a WMV file that I would upload to photoshop.com and share with friends.    Now with new camcorder and PE 9.0 using these setting any motion in the video become blurry/jagged.    The only way to improve on this is to go into the advanced settings and increase the average video bitrate setting which make the file get large fast.  I dot believe I am using the best project presets to use because PE changes it for me.  But based on MEDIA info below maybe you can tell me what the best project presets would be.    Please HELP  my son's football season is starting soon and the coaches depend on me to shoot game film to share with the coaches.  TIA  FILE INFO using MEDIA INFO PROGRAM  CompleteName                     :es\DCL video 2011\20110615103137.m2ts Format                           : BDAV Format/Info                      : Blu-ray Video FileSize/String                  : 71.7 MiB Duration/String                  : 53s 14ms OverallBitRate/String            : 11.3 Mbps OverallBitRate_Maximum/String    : 18.0 Mbps  Video ID/String                        : 4113 (0x1011) MenuID/String                    : 1 (0x1) Format                           : AVC Format/Info                      : Advanced Video Codec Format_Profile                   : [email protected] Format_Settings_CABAC/String     : Yes Format_Settings_RefFrames/String : 2 frames Format_Settings_GOP              : M=1, N=30 CodecID                          : 27 Duration/String                  : 52s 986ms BitRate_Mode/String              : Variable BitRate/String                   : 10.6 Mbps BitRate_Maximum/String           : 16.0 Mbps Width/String                     : 1 440 pixels Height/String                    : 1 080 pixels DisplayAspectRatio/String        : 16:9 FrameRate/String                 : 29.970 fps ColorSpace                       : YUV ChromaSubsampling                : 4:2:0 BitDepth/String                  : 8 bits ScanType/String                  : Interlaced ScanOrder/String                 : Top Field First Bits-(Pixel*Frame)               : 0.228 StreamSize/String                : 67.1 MiB (94%)  Audio ID/String                        : 4352 (0x1100) MenuID/String                    : 1 (0x1) Format                           : AC-3 Format/Info                      : Audio Coding 3 Format_Settings_ModeExtension    : CM (complete main) CodecID                          : 129 Duration/String                  : 53s 56ms BitRate_Mode/String              : Constant BitRate/String                   : 256 Kbps Channel(s)/String                : 2 channels ChannelPositions                 : Front: L R SamplingRate/String              : 48.0 KHz BitDepth/String                  : 16 bits Compression_Mode/String          : Lossy Video_Delay/String               : -67ms StreamSize/String                : 1.62 MiB (2%)  Text ID/String                        : 4608 (0x1200) MenuID/String                    : 1 (0x1) Format                           : PGS CodecID                          : 144 Duration/String                  : 52s 487ms Video_Delay/String               : -67ms

    I feel your pain. The Adobe forum software does some odd "stuff" with formatting, and once that happens, there seems to be nothing to do about it. I have been caught in that "trick bag," more times, than I can count.
    As for Encoding to WMV, Adobe programs, are not known to do a good job of this, and that is both PrE and PrPro. For years, many users recommended Windows Media Encoder, which was free from MS, and to use that, one would Export/Share to an intermediate file, then use WME to do the WMV Encode. MS discontinued the old WME, but one user (Neale, IIRC) found a replacement. Unfortunately, I do not recall the name, but it was something like MicroSoft Media Encoder Live, or similar. That user tested the new, replacement utility, and thought that it also did a much better job, than PrE/PrPro.
    Still, quality, and especially with motion (either subject, or camera) needs a good Bit-Rate to produce good results, however at the expense of large files. As all Encoders are not created equal, the best that one can do is to find one, that does a good job, and then experiment with the Bit-Rate to get highest quality at a manageable file size. This is the same "balancing act," that we all fight with.
    Good luck, and maybe those, with better memories, can come up with the name of the MS WMV Encoder.
    Hunt

  • I am getting a warning message when i am trying to create a host-named sitecollection.

    Hi guys,
          I am trying to create a host-named site collection. I have created the root site collection. After that i have tried to create customer root site. I have doing this process with the guidance of this link.
    http://technet.microsoft.com/en-us/library/cc424952.aspx#section2a
    When i tried to create a customer root site. I am getting a warning message
    " WARNING: The port specified for the new host header site does not match any known bindings in the specified Web
    Application.  The new site will not be accessible if the Web Application is not extended to an IIS Web Site serving
    this port."
    I couldn't when this warning message comes. I tried to bind the server with webapplication which is created for host-named site collection. No use.
    Can anyone help me to solve. And i wanna know why this error message comes!!!
    Thanks in advance
    Rajendran.

    First, you shouldn't create a host named site collection on a Web app that has host header named.  Doing that implements host names at two different levels and will not work reliably.  Second I'm not sure what you mean when you say you didn't
    use the FQDN but used just the domain name.  A Full url will always be either an FQDN or a shorter Netbios name.  If you use a Netbios name it simply assumes the local AD domain of the workstation to create an FQDN as the url  There is no way
    to use just the domain name.  For example, Contoso.com is the domain name.  Server.contoso.com or WEbsite.contoso.com are FQDNs.  YOu can also use a shorter version that is just server or website, but when those resolve in TCP/IP they would
    still resolve using server.contoso.com or website.contoso.com if the workstation where your browser is was in the contoso.com domain.  What is the URL for your root site and your host named site?
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • New to iMovie, create live video and audio?

    Hello, I am trying to create a video of a live musical performance to post on youtube and have figured out how to use the isight to get a video but can I use the biult in mics to record live audio with the video?

    Hello, Nateomite
    As Karsten says, you will certainly get better results and much more convenience with a camcorder.
    However, if you decide to use your MacBook, the built-in mic can record audio with your video:
      in iChat: iChat > Video > Record Chat records both video and audio.
      in iMovie: http://docs.info.apple.com/article.html?path=iMovie/7.0/en/10172.html
              tells you how to record using your MacBook's built-in iSight (and mic.)
      Other movie/video recording apps may work differently, but most allow sound with video.
    EZ Jim
    Message was edited by: EZ Jim for other apps
    G5 DP 1.8GHz w/Mac OS X (10.5.7) PowerBook 1.67GHz (10.4.11)   iBookSE 366MHz (10.3.9)  External iSight

  • Error message while creating customer.

    Hi there,
    I am trying to create customer using Tcode XD01.
    I have input the Account Group, Company Code, Sales Organisation, Distribution Chanell & Division and on pressing Enter I am getting the error message 'Sales area ITCS RS AG is not defined for customers'.
    ITCS - my sales Org
    RS - Distribution Chanell
    AG - Division.
    I have already done the assignment in SPRO and sales Area is already set up.
    Please help.
    regards,
    Subhrojit

    Hi
    Check whether u have maintained the common Distribution channel and Common Division in VOR1 and VOR 2 transaction codes.
    If not maintain the same, and also maintain S.org+Common D.Ch + Common Division.
    Regards
    Vamsi Javaji,

  • Bapi to  create customer Master

    Dear all,
    As far i know there is no standard bapi to create a customer.  There i s standard fm used her is SD_CUSTOMER_MAINTAIN_ALL. I tried to create customer master using this and making the function module as remote enabled. i tried to created a  zbapi and use this fm inside of this. Please tell me if any idea on this.If any body knows   please help me in this.
    Regards,
    Madhu.

    Dear Alain
    Once again thanks for your reply. I passed customer no to extract data of a customer . But it is not extracting any data .
    I am thinking to fill all the fields of the table by seeing hoe it is extracting the data . can you give me some idea on this .
    DATA: ls_i_main   TYPE cmds_ei_main,
            ls_e_main   TYPE cmds_ei_main,
            lt_custs    TYPE cmds_ei_extern_t,
            ls_cust     TYPE cmds_ei_extern,
            ls_head     TYPE cmds_ei_header,
            ls_instance TYPE cmds_ei_instance.
      CONSTANTS: lc_obj_task TYPE cmd_ei_object_task VALUE 'M'.
      ls_instance-kunnr = '0000100001'.
      ls_head-object_instance = ls_instance.
      ls_head-object_task = lc_obj_task.
      ls_cust-header = ls_head.
      APPEND ls_cust TO lt_custs.
      ls_e_main-customers = lt_custs.
      CALL METHOD cmd_ei_api_extract=>get_data
        EXPORTING
          is_master_data = ls_e_main
        IMPORTING
          es_master_data = ls_i_main.
          "es_error       = pe_error.
    Regards,
    madhu.
    Edited by: madhurao123 on Mar 31, 2010 1:17 PM

  • How to create custom template for webcenter portal application

    Hi,
    I created webcenter portal application in my jdev using the webcenter portal application template provided by the webcenter framework.
    I tried to create custom template for my application by following steps:
    1. Created new application using webcenter portal application template with all default package structure.
    2. Right click pagetemplates folder under webcontent package and select new option.
    3. New gallery opens up.
    4. Selected JSF under webtier and JSF Page Template under items in the right hand side and clicked Ok button.
    5. New wizard opens up for creating new JSF page template.
    6. Gave template name(file name) and Page Template Name(template def name).
    7. Selected checkbox staing start a Quick Start Layout and selected three column layout and selected Ok.
    8. Selected checkbox for Create Associated ADFm Page Defination(so that page templates can be changes at run time).
    9. Created some Facet Definations (header, footer, content1, content2, LHN, RHN).
    10. Clicked Ok button which will create custom template.
    11. Added some Panel Group Layout component from Component Palette.
    12. Created new page (.jspx) with this template.
    Now when I try to add producer portlets created using Producer Portlet application template and connected to the above application using WSRP2.0, I'm facing problem.
    The prolem is that I'm not able to add more than one portlet in one single page?
    Kindly let me know whether the steps followed by me is wrong some where and needs to corrected and let me know how I can add more than one portlet to page?
    Basically I cant see more than one placeholders in my page to add portlets.

    Thanks Yannick.
    In the step 9 I had mentioned that I created various facet definations (header, footer, content, content1 RHN and LHN).
    Is this is not facet you are talking about or should I drop facet ref from the resource palette?
    Can't I add moer than one portlet to my page at design time itself?
    Annoying since in weblogic portal we do this at design time(.portal).

Maybe you are looking for

  • Using Multiple Keyboard/Mice on single Mac Pro

    Hi Folks, I've tried to search this topic, with no joy. Basically, I would like to run a Mac Pro with dual monitors, and 2 users, working simultaneously. In this app, I would like each user to be able to run applications on their own screen and use s

  • Sales bom line item in billing for information

    Dear All, I have the scenario of Header pricing and line item stock reduction. Now  the client needs in the billing the line item of header should appear for only information purposes. Please suggest how can we do this how do we do this?

  • Component Inspector Parameters Missing

    When I launch the Component Inspector for a Multiple Choice Interaction, there are no parameters listed under the Parameter tab. I am used to MX2004, where there was a table and I could fill in all my values for questions, answers, etc. But now I'm i

  • NWDS 711: backward compatibility?

    Hi developers, I am customising the Billing Direct application by Sap using the publicly available SCAs. I would like to use NWDS 711 but the web applications are 1.4 based. What I have done so far: - installed JDK 1.4 on my laptop - configured proje

  • Communication program blocks interface

    Hy, I am developing an application which consists in a communication between a client and a server. If no GUI is present, then the application runs perfectly. Now I put two windows: one for the client and one for the server, both putting information