How to flip two videos in flash.. help :D

i have a movie that has a next button  on it that if clicked its going to flip/rotate and play the other movie,, here another problem if i click the next button it flip but the second movie clip is keep on pausing and playing how can i fix this?,,
tnx in advance..

then you can't easily 3d effects.  but if movieclip mc1 is one side of your coin and mc2 is the other and they have reg point at their width's center, you can still use the following:
var speed:Number=.2;
mc1.next_mc=mc2;
mc2.next_mc=mc1;
mc1.x=mc2.x;
mc1.y=mc2.y;
mc2.visible=false;
mc1.addEventListener(MouseEvent.CLICK,startRotateF);
mc2.addEventListener(MouseEvent.CLICK,startRotateF);
function startRotateF(e:MouseEvent) {
    e.currentTarget.addEventListener(Event.ENTER_FRAME,rotate1F);
function rotate1F(e:Event) {
    e.currentTarget.scaleX -= speed;
    if (Math.abs(e.currentTarget.scaleX)<speed ) {
        e.currentTarget.visible=false;
        e.currentTarget.next_mc.visible=true;
        e.currentTarget.next_mc.scaleX=e.currentTarget.scaleX;
        e.currentTarget.removeEventListener(Event.ENTER_FRAME,rotate1F);
        e.currentTarget.next_mc..addEventListener(Event.ENTER_FRAME,rotate2F);
function rotate2F(e:Event){
    e.currentTarget.scaleX += speed;
    if (e.currentTarget.scaleX>1-speed ) {
        e.currentTarget.removeEventListener(Event.ENTER_FRAME,rotate2F);

Similar Messages

  • Using iMovie-does anyone knows how to put two videos side by side in the same screen/

    Using iMovie-Does anyone knows how to put two videos side by side in the same screen?

    See iMovie Help here.
    http://help.apple.com/imovie/mac/10.0/#movb8c659f55

  • How to play two videos at the same time

    Hi everyone!
    Ok, so what I'm trying to do is basically play two videos, which are already saved on the computer, at the same time. I can get one video to play, but when i try to start another it just displays a blank screen.
    import javax.swing.*;
    import javax.media.*;
    import java.awt.*;
    import javax.media.protocol.*;
    public class TwoVideoTest {
         public static void main(String[]args) {
         MediaLocator locator1 = null;
         MediaLocator locator2 = null;
         try {
         locator1 = new MediaLocator("file:/C:/truck1.mpg");
         locator2 = new MediaLocator("file:/C:/truck2.mpg");
         } catch(Exception e) {
         System.out.println("COULNDT CREATE LOCATORS IN MAIN TEST CLASS");
                          System.exit(-1);
         Player player1 = null;
         Player player2 = null;
                     try {
          player1 = Manager.createRealizedPlayer(locator1);
         player2 = Manager.createRealizedPlayer(locator2);
                      } catch(Exception e) {
              System.exit(0);
         JFrame frame = new JFrame();
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JPanel panel1 = new JPanel();
       JPanel panel2 = new JPanel();
        panel1.add(player1.getVisualComponent());
       frame.getContentPane().add(panel1);
       frame.setSize(new Dimension(500,500));     
       frame.setVisible(true);
       player1.start();
       player2.start();
    }

    HELLO AGAIN! I guess i post too soon....
    So i modified my code and now the videos play together. Threads, sigh.
    But the audio that comes with the video doesn't appear to be starting at the same time. And this problem I ASSURE you i have no clue how to handle. And yes i know, the two video audios will overlap, but this a test for heavens sake!
    Anyways, heres the modified code in case it will help anyone
    import javax.swing.*;
    import javax.media.*;
    import java.awt.*;
    import javax.media.protocol.*;
    public class Video implements Runnable{
         String url;
         MediaLocator locator;
         Player player;
         JPanel panel;
         public Video (String url,JPanel panel) {
              this.url = url;
              try {
                   locator = new MediaLocator(url);
                   player = Manager.createRealizedPlayer(locator);     
                   panel.add(player.getVisualComponent());
                   player.start();
              } catch (Exception e) {
                   System.out.println("ERROR CREATING MEDIALOCATOR");
                   System.exit(-1);
         public void run() {
              try {
              Thread.sleep(100);
              } catch(Exception e) {}
         public static void main(String[]args) {
            JFrame frame = new JFrame();
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JPanel panel1 = new JPanel();
              JPanel panel2 = new JPanel();
              panel1.setPreferredSize(new Dimension(100,100));
              panel2.setPreferredSize(new Dimension(100,100));
              Thread thread1 = new Thread(new Video("file:/C:/truck1.mpg",panel1));
              Thread thread2 = new Thread(new Video("file:/C:/truck2.mpg",panel2));
              frame.getContentPane().add(panel1);
              frame.getContentPane().add(panel2);
              frame.setSize(new Dimension(500,500));     
              frame.setVisible(true);
              thread1.start();
              thread2.start();
         

  • How to add youtube video to flash

    I am still new to AS. Looking for a detailed tutorial/explanation on adding/embeding  a youtube video to flash.
    If anybody has a descent example that would work too. Also i would like the youtube video to play in the flash file.

    http://code.google.com/apis/youtube/flash_api_reference.html
    Quote from google api ref:
    Getting Started
    You can use a chromeless player or an embedded player in your  application. Both players support the same functions. However, the  embedded player displays standard controls, including a play/pause  button, a progress bar, a volume control, and more. The chromeless  player, on the other hand, does not display any controls, so you will  need to develop your own custom player controls in Flash.
    Loading the chromeless player
    If your application is using a chromeless player, use the  following URL to load the player in your application:
    http://www.youtube.com/apiplayer?version=3
    Loading the embedded player
    If your application is using an embedded player, use the  following URL to load the player in your application. In the URL,  replace the string VIDEO_ID with the 11-character YouTube video ID of the  video that the player will show.
    http://www.youtube.com/v/VIDEO_ID?version=3
    The
    Player  API demo lets you compare the two player
    http://code.google.com/apis/youtube/youtube_player_demo.html
    http://www.youtube.com/v/VIDEO_ID?version=3
    Heres some really quick code. You'll have to play with it but this will get you well under way:
    var myVideo:Loader = new Loader();
    Security.allowDomain("www.youtube.com");
    myVideo.contentLoaderInfo.addEventListener(Event.COMPLETE, showVideo);
    //myVideo.load(new URLRequest("http://www.youtube.com/apiplayer?version=3"));
    myVideo.load(new URLRequest("http://www.youtube.com/v/6U-sTcbZuq0&feature=rec-LGOUT-farside_rn-4r-1-HM" + "?version=3"));
    function showVideo(e:Event):void
         myVideo.x = stage.stageWidth * .5;
         myVideo.y = stage.stageWidth * .5;
         stage.addChild(myVideo);
    If you have any questions please let me know. Otherwise, please mark the question as answered Thanks,
    Jesse

  • How to view two video files synchronously?

    i have some questions about video/audio merging !
    first, i have two video chips a and b ,how can i merge them into only one file,and when i view it ,the two video chips will paly together, a is on the left,and b is on the right.
    second, i have two audio chips about telephoning. c is the record of one terminal,and d is the other record of terminal .i want to conbine c and d as only one file ,so,when i play it ,i will hear a full conversation.
    trird, how can i merge the video and audio files ,and then play it together.

    These are back-ups for the IFO files, which are used for play and control functions for the DVD.
    http://filext.com/file-extension/BUP
    You really need the VOB files to view or edit the DVD video.

  • Lining up Two Video clips-please help!

    So hi! I've been using premiere for about a year, I came from Sony Vegas Pro.
    Anyway, we had a shoot yesterday, a two camera interview on one subject. (7d &5dmII) both shooting 23.976fps and we recorded our audio with an external recorder.
    So, I lined up the audio by turning the turning the 'Show Audio in Time Units' on. This works great. I can move the audio to perfectly match up between the frames of the video in 1/4800 increments. Lovely. 
    After I lined up the audio I attempted to line up the two video tracks on top of each other (when the clap board strikes) and even though the Show Audio in Time Units is enabled, I can't perfectly line up these tracks. The track snaps between frames, making it impossible to line up. Yes, snapping is turned off. How do I move the video 'between the frames' so to speak? This was quite easy to do in Vegas.
    Thank you!

    Craig,
    I strongly agree. Back in those days, I never felt comfortable with video, even if we recorded it to 2" tape. I could not hold that up to the light and see my images! It was "the devil's work." Back then, there was no deck-to-deck editing, and only doing a diagonal cut and tape job - but you could not really see where you were cutting.
    Regarding NLE work nowadays, like you, I'd only go back for a "trip down memory lane." I can do on a simple laptop, 10,000 more things than I could ever do on an 8-plate Moviola - things that I could not even imagine back then. Had I been given a peak at PrPro in 2010, back in '72, I would never have been able to either believe it, or comprehend it.
    You know, every time that I see the word Bin, I can conjure up those laundry "bins," with racks above and either clips or clothes pins. I also remember squinting to try and read the cryptic notes in grease pencil at the head of each in the darkened edit booth. "is that a 5, or an 8? Oh SHOOT, I just smudged it!"
    Don't get me started on mixed formats. I'd never have considered mixing 8mm (split-16), S-8, 16mm and a bit of 35mm in an edit. Only recourse was a trip to the lab for prints, and we always knew that quality was going to differ greatly. Now, we just run the stuff through a conversion program, Import and edit happily, or nearly so.
    Yes, I will take that random crash/hang, and smile. If the Moviola crashed, we had to fly a tech from Dallas and then hold our breath. Of course we could jump over to our rewinds and splicing block, and still get a bit of work done - the "old fashioned way."
    The kids have no idea of easy they have it - right on their desktops. I envy them, 'cause they started with NLE and probably have creative ideas, that I will never have, just 'cause I still have a slightly closed view of things. I envy them!
    OK, back to our regularly scheduled programming...
    Hunt

  • How to make interactive video in Flash?

    Hello,
    We are trying to create an interactive video in Flash. Basically, we need to put this video in our game, and players should be able to pause/replay/play it.
    I found some tutorial about this topic, but all of them were created more than 2 years ago. They all use FLV/F4V files.
    But now, Adobe Media Encoder doesn't support exporting FLV file.
    As what mentioned in this page:
    removal of FLV and F4V export features from Adobe Media Encoder, After Effects, and Premiere Pro | After Effects regio…
    Flash team seems recommend users to input mp4. video rather than FLA video.
    So is that mean we can use mp4 file to do interactive video, adding Action Script on the importing mp4. video?
    Thank you.

    either use mp4 files or use an older ame.

  • How to make HD video smaller! HELP!

    OK...so I bought an HD camera and the quality is SICK!Almost a bit too sick...After I am done editing and I export using quicktime conversion to .MOV the video is HUMONGOUS!
    When I say humongous I do not necessarily mean the size of the file...I'm actually talking about the dimensions of the video.
    SO, how do I make the video smaller from FCE?...I mean the actual video's original size smaller (not how to zoom out on quicktime, that is obvious) I mean how to have the video size smaller.
    Thanks.
    -John

    There are way, way too many variables to answer that question. It's meaningless without knowing what your video is, action, dialog, animation, music, speech, one minute, one hour, and without knowing you're trying to do. People have written whole books on the subject of compression. You might try a google search for video compression. Look for what you're trying to compress for, where you're trying to get to.

  • How can I stream video with Flash?

    Hi guys!
    I have a placeHolder MC in my main movie.
    Within the placeHolder is an external swf containing an mpg
    video.
    How can I code the preloader of the external swf to stream
    the mpg?
    Thank you very much and I hope to hear from you.
    All the best,
    Mark

    if you mean stream as in streaming video, you need the
    communication server.
    if you mean preload the file, you can do so with various
    components in flash.
    loadMovie
    Loader
    MovieClipLoader
    and more that escape my mind atm.

  • How to unite two accounts? Please, help me! I have two accounts on pay basis (disk space , programs etc) - but I want to have the one.

    Please, help me!
    I have two accounts - [email protected] , and [email protected]
    on my iPads (3), iPhones (5), Mac (1)
    These two account belong to me exactly (to my name, credit card)
    but I would like to unite these accounts to one if its possible.
    Anotheк problem: Today I've started to manage my iCloud account and I saw that one of my kids has set up his e-mail (the third one!!!) as ID email.
    I would like to delate  it from all my accounts - how I can make it.
    Thank you if you can help me.
    Sincerely yours,
    Victor

    Welcome to the Apple community.
    iTunes and iCloud at two different accounts. You can delete any iCloud account you want to by going to settings > iCloud, scrolling down and tapping the delete button.
    Unfortunately you cannot merge iTunes account, nor can you transfer content from one to the other.

  • How to synchronise two videos?

    i declare two Players for play two different video files, and when the time pass, the lag time between players Increase, i.e, the first video lasts 80s, and the second lasts 90, when the first is finished, the lag time is 0.3s, how can i do for reduce it? thx!

    Hi,
    Firslty, when you have 3 cubes which are transparently partitioned.Why do you want to synchronize them. Is your objective to have similar outline in all the 3 cubes , thereby letting users access information of all 3 cubes from any cube.
    Generally, we see the following design.
              Virtual Cube     ------This cube is transparently paritioned to all the cubes ( 1 to 5)
    Cube1     Cube2     Cube3     Cube4     Cube5 -----These are individual cubes, where actual storage is there.
    Generally, users access Virtual cube for information retrieval.This way, you need to synchronize the outlines between virtual cube and the relevant cube1..5.
    Hope this adds value
    Sandeep Reddy Enti
    HCC
    http://hyperionconsultancy.com/

  • How to add two videos to one???

    Hello there,
    I making a program in which I can capture the video and save it to a file, suppose the file name is "foo".
    O.K. now every time I run the program it overrites the previous one(video file).
    So the problem is every time I run the program the video should be added to the previous one that is concatenated.
    That there are 2 videos
    1> one is stored on the disk already.
    2> other one is which is live and is going to be captured.
    Hope you can understand.
    Please help me.
    Thanks in advance.

    Thanks Captfoss,
    I got another idea
    I just used the Cancat class from Concat.java example.
    Here is the code\
    import java.awt.*;
    import java.net.*;
    import javax.media.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.media.format.*;
    import javax.media.protocol.*;
    import javax.media.control.*;
    import javax.media.Manager.*;
    import java.util.*;
    import java.io.*;
    import java.util.Vector;
    import java.io.File;
    import javax.media.control.TrackControl;
    import javax.media.control.QualityControl;
    import javax.media.Format;
    import javax.media.datasink.*;
    import javax.media.protocol.DataSource;
    import java.io.IOException;
    /* This program is to capture from a webcam and save it in disk */
    public class run extends JFrame implements ControllerListener,ActionListener
         Processor p; DataSink sink;
         MenuBar mb;
         MenuItem start,stop;
         Menu file;
         Vector dl;
         MediaLocator ml,oml;
         MediaLocator iml[] = new MediaLocator[2];
         DataSource ds,original,clone;
         Player player;
         ContentDescriptor cd;
         run()
              setVisible(true);
              setSize(800,600);
              setLayout(new BorderLayout());
              mb=new MenuBar();
              file=new Menu("File");
              start=new MenuItem("Start");
              // start button gets enabled only after the processor is realized
              // I start the processor and sink after clicking the start button
              // I start the processor and sink after clicking the start button
              start.setEnabled(false);
              stop=new MenuItem("Stop");
              // I use stop button to stop the processor and the sink
              file.add(start);
              file.add(stop);
              mb.add(file);
              setMenuBar(mb);
              start.addActionListener(this);
              stop.addActionListener(this);
              addWindowListener
              (new WindowAdapter()
                        public void windowClosing(WindowEvent we)
                             System.exit(0);
              try
                   dl=CaptureDeviceManager.getDeviceList(new VideoFormat(VideoFormat.YUV));
                   ml=((CaptureDeviceInfo)dl.firstElement()).getLocator();
                   //Manager.setHint( Manager.LEIGHTWEIGHT_RENDERER,true);
                   original = Manager.createDataSource(ml);
                   original = Manager.createCloneableDataSource(original);
                   clone = ((SourceCloneable)original).createClone();
                   player = Manager.createRealizedPlayer(original);
                   p=Manager.createProcessor(clone);
                   p.addControllerListener(this);
                   p.configure();
                   Thread.sleep(3000);
                   p.setContentDescriptor(new FileTypeDescriptor(FileTypeDescriptor.MSVIDEO));
                   p.realize();               
                   Thread.sleep(3000);
                   oml = new MediaLocator("file:/e:/J-Solve.avi");
                   iml[1] = ml;
                   iml[0] = new MediaLocator("file:/e:/J-Solve1.avi");
              catch (Exception e)
                   System.err.println("Got exception "+e);
         boolean fetchDeviceFormats()     
              Vector deviceList = CaptureDeviceManager.getDeviceList(new VideoFormat(null));
              CaptureDeviceInfo CapDevice = null;
              Format CapFormat = null;
              String type = "N/A";
              CaptureDeviceInfo deviceInfo=null;
              boolean VideoFormatMatch=false;
              for(int i=0;i<deviceList.size();i++)
                   // search for video device
                   deviceInfo = (CaptureDeviceInfo)deviceList.elementAt(i);
                   if(deviceInfo.getName().indexOf("vfw:")<0)
                        continue;
                   Format deviceFormat[] = deviceInfo.getFormats();
                   for (int f=0;f<deviceFormat.length;f++)
                        if(deviceFormat[f] instanceof RGBFormat)type="RGB";
                        if(deviceFormat[f] instanceof YUVFormat)type="YUV";
                        if(deviceFormat[f] instanceof JPEGFormat)type="JPG";
                        Dimension size = ((VideoFormat)deviceFormat[f]).getSize();
                        //camImgSize.addElement(type+" "+ size.width+"x" +size.height);
                        CapDevice = deviceInfo;
                        //camCapDevice.addElement(CapDevice);
                        System.out.println("Video device = "+ deviceInfo.getName());
                        CapFormat = (VideoFormat)deviceFormat[f];
                        //camCapFormat.addElement(CapFormat);
                        System.out.println("Video format = " + deviceFormat[f].toString());
                        VideoFormatMatch=true; // at least one
              if(VideoFormatMatch==false)
                   if(deviceInfo!=null)System.out.println(deviceInfo);
                   System.out.println("Video Format not found");
                   return false;
              return true;
         public void addNotify()
              super.addNotify();
              pack();
         public void actionPerformed(ActionEvent ae)
              try
                   if(ae.getActionCommand().equals("Start"))
                        sink.open();
                        sink.start();
                        p.start();
                        player.start();
                        System.out.println("start");
                        Concat concat  = new Concat();
                        if (!concat.doIt(iml, oml))
                                 System.err.println("Failed to concatenate the inputs");
                   else
                        player.stop();
                        p.stop();
                        p.close();
                        //Thread.sleep(1000);
                        sink.stop();
                        sink.close();
                        System.out.println("stop");
              catch(Exception e)
                   System.out.println("Some problem "+e);
         public synchronized void controllerUpdate(ControllerEvent ce)
              try
                   if (ce instanceof RealizeCompleteEvent)
                        Component comp;
                        System.out.println("Realized");
                        sink = Manager.createDataSink(p.getDataOutput(), new MediaLocator("file:/e:/J-Solve1.avi"));
                        start.setEnabled(true);
                        if ((comp = player.getVisualComponent()) != null)
                             add (BorderLayout.CENTER, comp);
                        else
                             System.out.println("No visual component");
                        //if ((comp = player.getControlPanelComponent()) != null)
                        //     add (BorderLayout.SOUTH, comp);
                        validate();
                        System.out.println("Updated");
              catch(Exception e)
                   System.out.println("Exception rasied "+e);
         public static void main(String s[])
              run r = new run();
    }But it gives exception
    Create processor for : file:/e:/J-Solve1.avi
    Create processor for : vfw://0
    Java.io.IOException:Capture device in use
    Cannot create processor for given URL : java.media.noProcessorException
    Error instantiating the class : com.sun.media.protocol.vfw.Datasource
    Failed to concatenate
    My idea is right, but there is a problem
    The catured ml is ok,
    but for on going capture for which my class and concat class both try to make a processor.
    Which gives this error.
    How to resolve this problem.
    Thanks in advance.

  • How to link two video stills clips tracks 1 and 2 ?

    Hi,
    I have two matching stills, one is marked up with guidelines as to where I wish the pan window to go, this is on video track 2, on track 1 is the pure image less these guidance notes. I have turned off default scale to frame size and this imported montage 'still' is larger than my project size. I now hope to position the still with the guidance lines and area showing start of pan for frame 1 and have the underlying matching image on track1 take up the same position also.
    I thus need to link both images so that moving the one moves the other. How do I do this ?
    Currenly I can move the track2 image but track 1 image doesnt follow with it.
    Once I have indicated using keyframes the path I want to follow, I shall turn off track 1 and have Premiere create a movie just with the good image showing.
    How do I link the two image tracks together ?
    I am otherwise following a tutorial at http://www.savevid.com/video/create-an-advanced-photo-montage-in-premiere-pro.html which does the montage pan though I have just one photo, on tracks 1 and 2.
    Envirographics.

    Hi,
    I have followed this advice, the pan route is now perfect along with some tweaking of the bezier handles to make it go straight along the top from west to east..
    However on the monitor it plays with comb like artefacts along edges , on the produced avi file from Export>Movie, one sees double, a balloon has two strings for example. Humans have a ghosted edge all around them. As the image stops moving at end of the pan I see the two ballon strings get closer and become one just as the pan ends. Its blurred, I also see tide marks in some places, back of a guys shirt, as if its in 256colour mode !Written using an authoring prog to dvd the TV playback is no better. Just nothing like the stills in the same  video from which a montage was made to use for this Ken Burns effect. Why is the pan a mess ? It was a bit jerky on the PC, I hoped TV viewing would see an improvement.
    I have done a right-click on the image, Field Options and checked Flicker Removal as seen in a thread, made no difference.
    I'd also Crop the vertical in PS to just what was needed for the Project's/Sequence's vertical Frame dimension.”…done that
    Project is:- , custom size 1152 x 768 PAL square pixel into which I brought a montage 3754 x 1221 also square pixel. This yields crisp detail even when zoomed in on in photoshop. So why the jerky double image effect ?
    I have read that Premiere is not as good as this as dedicated programs, another suggestion was do it in After Effects but I dont have that, and these other progs are $200 and I had expected more quality than this. Article at http://vimeo.com/3181326 didjnt get these problems.
    What have I not done or overlooked ?
    Envirographics

  • How to flip the videos in fcpx

    how do i flip videos in fcpx. thanks

    Flip how? There is a Flipped effect that might do what you want.

  • How to play HTML5 videos? Please help

    So I've used Firefox since ever it came out and now I have problems with playing videos on YouTube because of the HTML5, I currently have Firefox 35.0.1 and I even had 36 but the problem was still there, the only way I found to solve this was to downgrade to 31 since it still uses flash, please help me here, the videos won't play on Firefox but they will play in Internet Explorer.

    ''John99 [[#answer-691133|said]]''
    <blockquote>
    May be difficult to sort out if you are on the unsupported Firefox 31 I suggest you upgrade *
    If you do need to use Firefox 32 a safer method that works in some cases and in this sort of situation is to use the current up to date secure and supported version (Fx 35.0.1 at the moment), but spoof Fx31 by using an add-on to switch the User Agent String. There is even an add-on but for the opposite problem
    * https://addons.mozilla.org/en-US/firefox/addon/youtube-flash-video-player/
    Firefox 35 works for me playing Youtube HTML5 videos.
    I attach screenshots of
    *https://www.youtube.com/html5 offering HTML5, and using HTML5
    Click thumbnails for larger image
    YouTube has been making changes and may make further changes relating to different Firefox versions and the Flash/HTML options on YouTube. If anything the more likely problem is being offered only HTML and not FlashPlayer.
    Another complication, but again the other way round is that due to a series of security patches having been issued recently for FlashPlayer, so users may have old versions of FlashPlayer that Firefox blocks.
    ===*===
    More complicated but it is possible to install multiple versions of Firefox, but you should also use separate profiles for each version. It is something you may consider trying if you need to keep a working Firefox 31 for playing You Tube until you sort out Fx35.
    * http://kb.mozillazine.org/Testing_pre-release_versions#Installing_multiple_versions
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox
    </blockquote>
    This is what I get

Maybe you are looking for

  • ORA-20500+ ORA-02055+ORA-02068+ORA-03113

    i got this error in my front end .....any idea what might be the reason? Failed: ORA-20500: ORA-20500: ORA-20500: ORA-20500: ORA-02055: distributed update operation failed; rollback required ORA-02068: following severe error from MUDR2SEBL(db_link na

  • How do I get rid of firefox popups, please help, they are so annoying

    I had them once b4 and someone told me to install firefox again, but I did this, and it didn't work!A

  • Adding portlet to ocs portal

    I've built a Portal using the App Server 10g portal, now i was trying to do the same using an OCS portal installation, but i'm incurring in a strange problem: i cannot add any portlet to the page. In practice, the selected portlet (any portlet from l

  • How to specify for JVM the stack for ONE specific thread that invokes JNI

    Hello all! I'm 2 days now looking for a solution in several forums but even in Sun Java Forums nobody was able to come up with a solution. If you know a better forum to place it, please let me know. Description: I have an application that launches se

  • Tag value into tag as a parameter error

    It works here : <lib:tablanotas registroID="1" bimestreID="1" /> but when I do this <lib:tablanotas registroID="<%=reg%>" bimestreID="<%=bim%>" /> it doesn`t work neither <lib:tablanotas registroID="<c:out value="${sessionScope.reg}"/>" bimestreID="<