Why aren't my % directives being executed ?

I have a Java page Dropdown.jsp which is expecting a parameter passed to it. The JSP has some <% scriplet directives to determine the value of the parameter and to determine the value of a field. However, the <% directives do not seem to be parsed. In my example below I end up getting 2 input fields instead of one - one with "GOT VALUE" and the other with "NO VALUE".
My JSP is as follows :-
<%@ page language="java" contentType="text/html" %>
<%@ page import="java.io.*, java.util.*, java.text.*" %>
<title>Drop Down List 1</title>
<script language="javascript">
function requestList()
alert("In requestList");
     document.dropdown.submit();
</script>
</head>
      <body onLoad="requestList()">
<form name="dropdown" method="POST"
action="http://localhost:8080/GlobusBrowserWeb/servlet/BrowserServlet">
<%
String Args = "";
if (request.getParameter("xxx") != null)
%>
    <input  name="routineArgs" value="GOT VALUE">
<%
else
%>
   <input  name="routineArgs" value="NO VALUE">
<%
%>
<input type="submit">
</form>
</body>
</html>Sarah.

I think your scriptlet is working, because it seems that there is no error in your page, But onLoad your function alerts you and then immediatly performs the submit operation. So you can see that whether ths input fields are populated or not. You should try your code without
document.dropdown.submit();
Hope it helps

Similar Messages

  • Why aren't Groups settings being applied correctly?

    I've been testing the Profile Manager's settings for Groups and it doesn't seem to be getting applied correctly.
    I have an image and computer I'm testing that has a local admin account. This is the same local admin account on all of our company's macbooks.
    On the server, I have a Test Group and a Test user. The Test user is a network account and is the one and only member of the Test Group. In Profile Manager, for the Test Group, the only setting I have set up is for Restrictions. I set it up to restrict access to Sharing, Profiles, and Security & Privacy to the members of the Test Group only.
    What happens is, when these settings are applied to a computer, it restricts access to those System Preferences to the local admin account as well. Why is this happening? Obviously, the local admin account is not a network user, nor is it in the Test Group. I cannot figure this out or understand what's going on.
    The only other bit of information that may or may not help is I am running 10.8.1 Server and the client is running 10.7.4.
    I don't have other specifics right now, but this isn't the only weirdness when testing settings for other Profiles with regards to the settings not being applied as expected.
    Thanks in advance.

    When you add new contact you are adding the contact to your default contacts account. Your default contact account is set in Settings > Mail, Contacts, Calendars > Contacts > Default Account. If this account is checked in the Contacts app Groups view, you will see the new contacts in the Contacts app. Otherwise not.
    I suspect your problem is that your default contact account is not set to the account you think it is.

  • Why aren't new contacts being added from incoming texts and/or recent calls loading in main Contacts?

    Everytime I get a text and I click the "Info" button and then "add new contact"... There name appears at the top of the screen and in the caller id/text message screen, however when I go to contacts the new addition isn't loading up.
    Then when I went to Groups and to "Show ALL Contacts" I can see the new additions. However I also see EVER SINGLE email address listed seperately from my Yahoo account. I am so confused. Is there a way to get the new contacts added to display in my contacts list, without it also displaing my Yahoo email contacts?!??!

    When you add new contact you are adding the contact to your default contacts account. Your default contact account is set in Settings > Mail, Contacts, Calendars > Contacts > Default Account. If this account is checked in the Contacts app Groups view, you will see the new contacts in the Contacts app. Otherwise not.
    I suspect your problem is that your default contact account is not set to the account you think it is.

  • Why aren't some thumbnails being generated?

    Any idea what may be causing this?
    Screen shot here:
    http://img246.imageshack.us/img246/9484/picture3mih.png

    This happened once in my long experience with Aperture - support was no help. I ended up doing a hail-mary and deleted all of the thumbnails for the projects in question from the Aperture library package and then Aperture would regenerate them.
    If you try this make a good backup first or try it on a copy.
    RB

  • Why aren't my emails being automatically deleted from my ipad when I delete them from my iPhone

    Is there a setting that I have to program on my mini ipad so when I delete an email on my iPhone it automatically deletes it from my mini ipad?

    If you have an IMAP email account the actions should be synchronized across all devices, phone iPad and computer.
    If you have a POP account try Settings>Mail, contacts, calendars>Your email account>Advanced>Delete from Server>When removed from inbox.

  • Call to java bean but code not being executed.

    Making a call to my javabean class called ch06_03.java from a jsp program shown below:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title>Using a java package.</title>
    </head>
    <body>
    <% beans.ch06_03 messager = new beans.ch06_03(); %>
    The message is: <%= messager.msg() %>
    </body>
    </html>
    The call from jsp to javabean program is only returning the hello from java and NOT EXECUTING ANY OF THE CODE in the msg() method. I am checking my table landings_hold and nothing is there, my log file shows nothing. Why is the code not being executed except for the return statement?
    My javabean program is shown below:
    package beans;
    import java.io.*;
    import java.util.*;
    import java.text.*;
    import java.sql.*;
    public class ch06_03 {
    StringTokenizer st1;
              String val1, val3, val4, val5, val9, val10, val11, val12, val13, val14, val16;
              String val2, val6, val7, val8, val15, val17, val18, val19, val20;
              int cnt;
              String filetext = "Starting RIFIS Upload";
              java.util.Date d = new java.util.Date();
              SimpleDateFormat form = new SimpleDateFormat("dd/MMM/yyyy hh:mm:ss");
              String dateString = form.format(d);
    public String msg() throws Exception {
         try {
         Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@xxxxx.xxxx.xxx:1521:xx","xxxxxx","xxxx");
              Statement st = conn.createStatement();
         File f = new File("C://upload");
              FileWriter outFile = new FileWriter("C://RIFIS/log/logfile.txt", true);
              outFile.write(System.getProperty("line.separator"));
              outFile.write(filetext+" - "+dateString);
              if (f.isDirectory())
              { String [] s = f.list();
              for (int i=0; i<s.length; i++)
              { outFile.write(System.getProperty("line.separator"));
                   outFile.write("Found file - "+f+"/"+s);
              FileReader file = new FileReader(f+"/"+s[i]);
                   File inputFile = new File(f+"/"+s[i]);
                        File outputFile = new File("C://RIFIS/archive/"+s[i]);
                   BufferedReader buff = new BufferedReader(file);
                   boolean eof = false;
                   String val0="";
                   ResultSet rec = st.executeQuery("SELECT landings_hold_batch_seq.nextval FROM dual");
                        while(rec.next())
                        { val0 = rec.getString(1); }
                        cnt=0;
                        while (!eof)
                        { String line = buff.readLine();
                        if (line == null)
                        { eof = true; }
                             else
                             { cnt = cnt+1;
                                  st1 = new StringTokenizer(line,",");
                                  val1 = st1.nextToken();
                                  val2 = st1.nextToken();
                                  val3 = st1.nextToken();
                                  val4 = st1.nextToken();
                                  val5 = st1.nextToken();
                                  val6 = st1.nextToken();
                                  val7 = st1.nextToken();
                                  val8 = st1.nextToken();
                                  val9 = st1.nextToken();
                                  val10 = st1.nextToken();
                                  val11 = st1.nextToken();
                                  val12 = st1.nextToken();
                                  val13 = st1.nextToken();
                                  val14 = st1.nextToken();
                                  val15 = st1.nextToken();
                                  val16 = st1.nextToken();
                                  val17 = st1.nextToken();
                                  val18 = st1.nextToken();
                                  val19 = st1.nextToken();
                                  val20 = st1.nextToken();
                                  st.executeUpdate("INSERT INTO LANDINGS_HOLD (lh_id, lh_batch, supplier_dr_id, supplier_unique_id, supplier_dealer_id, supplier_cf_id, supplier_vessel_id, unload_year, unload_month, unload_day, state_code, county_code, port_code, itis_code, market, grade, reported_quantity, unit_measure, dollars, lh_loaddt, lh_loadlive, purch_year, purch_month, purch_day)" +
                        "VALUES (0,'"+val0+"','"+val1+"',"+val2+",'"+val3+"','"+val4+"','"+val5+"',"+val6+","+val7+","+val8+",'"+val9+"','"+val10+"','"+val11+"','"+val12+"','"+val13+"','"+val14+"',"+val15+",'"+val16+"',"+val17+",SYSDATE,NULL,"+val18+","+val19+","+val20+")");
                             } // while else end
                        } // parent while end
                        FileReader in = new FileReader(inputFile);
                        FileWriter out = new FileWriter(outputFile);
    int c;
                        while ((c = in.read()) != -1)
                        { out.write((char)c); }
                        in.close();
                        out.close();
                        outFile.write(System.getProperty("line.separator"));
                        outFile.write("Number of records inserted - "+cnt);
                        outFile.write(System.getProperty("line.separator"));
                        outFile.write("Copied upload file to archive directory");
                        outFile.write(System.getProperty("line.separator"));
                        outFile.write(f+"/"+s[i]+" - Has been removed from upload directory");
                        buff.close();
                        inputFile.delete();
                   } // for end
                   outFile.write(System.getProperty("line.separator"));
                   outFile.write("Upload Complete...NO ERRORS");
                   outFile.write(System.getProperty("line.separator"));
                   outFile.write("*************************************************************");
                   outFile.write(System.getProperty("line.separator"));
                   conn.close();
              } // if end
              else
              { outFile.write("No files to process"); }
              outFile.flush();
              outFile.close();
              } // try end.
              catch(Exception e)
              { FileWriter errFile = new FileWriter("C://RIFIS/log/errfile.txt", true);
              errFile.write(System.getProperty("line.separator"));
              errFile.write("ALERT....ALERT....ALERT");
              errFile.write(System.getProperty("line.separator"));
              errFile.write("Error Occurred in ReadSource.java - RIFIS Upload");
              errFile.write(System.getProperty("line.separator"));
              errFile.write("My Error: " + e);
              errFile.write(System.getProperty("line.separator"));
              errFile.write("*************************************************************");
                   errFile.flush();
                   errFile.close();
              } // catch exception end.
         return "Hello from java";
         } //public msg block
         public ch06_03()

    Since you didn't use code-formatting tags ([ code ] and [ /code ] without the spaces) it's kinda hard to look at it. But I'm sure it DID execute much more than just the return statement - maybe you're not closing a file or db connection, or maybe you're seeing a cached page, so it actually isn't executing ANYTHING on the server (is your browser set to never check for newer pages so it (almost) always returns from cache, for example?)

  • Why aren't all of my photos showing up that I am trying to save directly from my email? particularly jpegs?

    Why aren't all of my photos showing up that I am trying to save directly from my email on my iPad2? particularly jpegs?
    Usually i just hold my finger down and am able to save all the photos attached in an email and now only certain photos are actually being saved. And in some instances the actual image is not there but instead just the word "jpeg"
    Why? and or how do I fix this....
    I loved being able to do the one step hold and save all from emails :-( Now its hold, save all and then pray that they actually make it in my photo album
    HElp)))))))))

    When you first enable photo stream on your Mac it only downloads photos from the last 30 days, as older photos are no longer in iCloud.  If the missing photos are older photos, that's probably the reason.

  • Why isn't my text being corrected as I type? Why aren't I able to access versions in my Apps?

    Why isn't my text being corrected as I type? Why aren't I able to access versions in my Apps?

    Which Apps?

  • Why aren't my scanned photos showing up in iphoto? I have an HP scanner with the option to import directly to iphoto. It says "sending to destination" but it never gets to iphoto. I scanned hundreds of photos several months and it worked fine - now it won

    Why aren't my scanned photos showing up in iphoto? I have an HP scanner with the option to import directly to iphoto. It says "sending to destination" but it never gets to iphoto. I scanned hundreds of photos several months and it worked fine with the photos going directly into iphoto - now it won't work. Any suggestions?

    As the feature is part of your scanner set up nd not iPhoto, you'd need to ask the makers of that for help.
    Regards
    TD

  • Why aren't my songs previously playable on my iPad/iPhone (tho not purchased directly from iTunes) no longer playable on my devices?

    Why aren't my songs previously accessible on my I/Pad 2/iPhone 4s devices in "Music" appearing in faint print &amp; graphics no longer accessible?  I had downloaded them into iTunes on my PC and previously synced them.  Suddenly after recent syncing they were inaccessible.  Why?  (I previously downloaded an IOS_5 platform to my PC to use iCloud.  Was working until recently.)

    I too am having this problem. Its really frustrating. In fact i have my setting to have all music on my phone however the phone displays I have 2986 and the itunes reads 2987. I'm one off on this area. In addition some of my purchased music does not show in my purchased list on the phone. It does show on the itunes account on the computer and in the overall albums just not in the purchased. I drug the purchased song from the albums to the purchased playlist and tried to have it re-sync... did not work.. I tryed re-booting the phone, and restoring from back up all failed.
    Another problem I have found since the IOS7 updates is the phone doesn't keep my music where it was when I get out of my car. I used to love that I would get out of the car in the middle of my playlist go in the store come out and it would pick up right where it left off. Now I get back in the car and it begins playing random music of all my entire library. I love all my music however I don't want to listen to Christmas and Halloween music all the time. I don't want to remove these from the phone as I want them always available. I just want the function to go back to how it was.
    Oh and the last thing, sometimes when I turn my phone sideways and am listening to music the collage of albums shows but freezes so I cant turn the phone back and change the music. I like having the capablility of turning the phone to see pictures and things auto turn but not this collage of albums if it's gonna delay me swictching or skipping songs.
    Any ideas for these issues? Is apple aware and working on these?

  • Why is keyPressed() not being executed in this code..??

    HI,
    I am trying to develop a simple game program but what is banging my head is the keyPressed(KeyEvent evnt) is not being executed, i.e. the System.out.println("XXXX") inside this method is not being reached and hence shows no any output. Any suggestion would be appriciated. The code goes like this....
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    import javax.swing.Timer;
    import java.awt.event.*;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.RenderingHints;
    import java.awt.geom.*;
    public class ArrowGame
      static GameField gfield;
      private static void createGUI()
        JFrame.setDefaultLookAndFeelDecorated(true);
         JFrame frame=new JFrame("Arrow Game");
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        gfield=new GameField();
         frame.getContentPane().add(gfield,BorderLayout.CENTER);
         frame.setVisible(true);
         frame.pack();
      public static void main(String args[])
        SwingUtilities.invokeLater(new Runnable()
           public void run()
             createGUI();
      static class GameField extends JPanel implements ActionListener, KeyListener, MouseListener
        Timer timer;
        int w,h;
         int arrowPos;
         double dynamicX=1.5;
         double ovalX;
         final double ovalY=2.0;
         final double ovalW=45.0;
         final double ovalH=45.0;
         double ovalXX=(ovalX+10);
         final double ovalYY=(ovalY+10);
         double ovalXXX=(ovalXX+10);
         final double ovalYYY=(ovalYY+10);
         private boolean shotTriggered=false;
        GameField()
           setPreferredSize(new Dimension(525,450));
           addMouseListener(this);
           addKeyListener(this);
         public void paintComponent(Graphics g)
           super.paintComponent(g);
          w=getWidth();
           h=getHeight();
           Graphics2D g2=(Graphics2D)g;
          g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
           g2.setRenderingHint(RenderingHints.KEY_RENDERING,RenderingHints.VALUE_RENDER_QUALITY);
           g2.setColor(Color.darkGray);
           g2.fillRect(0,0,w,h);
           drawTarget(g2,w,h);
           drawArrow(g2,w,h);
         private void drawTarget(Graphics2D g2,int w,int h)
           ovalX+=dynamicX;
           ovalXX+=dynamicX;
           ovalXXX+=dynamicX;
           if (ovalX < 0 && ovalXX < 10 && ovalXXX < 20)
             ovalX=0;
              ovalXX=10;
              ovalXXX=20;
             dynamicX=1.5;
           else if (ovalX > (w-45) && ovalXX > (w-35) && ovalXXX > (w-25))
              ovalX=(w-45);
              ovalXX=(w-35);
              ovalXXX=(w-25);
              dynamicX=-1.5;
           g2.setColor(Color.green);
           g2.fill(new Ellipse2D.Double(ovalX,ovalY,ovalW,ovalH));
           g2.setColor(Color.blue);
           g2.fill(new Ellipse2D.Double(ovalXX,ovalYY,(ovalW-20),(ovalH-20)));
           g2.setColor(Color.red);
           g2.fill(new Ellipse2D.Double(ovalXXX,ovalYYY,(ovalW-40),(ovalH-40)));
         private void drawArrow(Graphics2D g2,int w,int h)
           arrowPos=w/2;
           g2.setColor(Color.white);
           g2.drawLine(arrowPos,((h/2)+175),arrowPos,h);
         public void keyPressed(KeyEvent evnt)
           int code=evnt.getKeyCode();
           System.out.println(code);
         public void keyTyped(KeyEvent evnt){}
         public void keyReleased(KeyEvent evnt){}
         public void mousePressed(MouseEvent evt)
           if (timer!=null)
             timer.stop();
              timer=null;
           else
             timer=new Timer(75,this);
             timer.start();
         public void mouseReleased(MouseEvent evt){}
         public void mouseEntered(MouseEvent evt){}
         public void mouseExited(MouseEvent evt){}
         public void mouseClicked(MouseEvent evt){}
         public void actionPerformed(ActionEvent event)
           repaint();
    };regards,
    Jay

      GameField()
        setPreferredSize(new Dimension(525,450));
        setFocusable(true); //<-----------------------------------------
        addMouseListener(this);
        addKeyListener(this);
      }

  • Wrong code being executed in 10g

    Hi all,
    I'm having a problem where my form is picking up the wrong source code.
    I have formA which calls formB. FormA and formB both have an application library attached with common code. In the pre-form trigger of both forms they call a procedure eaq$event_form which in turn calls a procedure ma$pre_form. These procedures are both contained in the application_library and a local copy of ma$pre_form which does something other than the generic code is placed in formA (but not formB).
    When the forms are run, the local copy of ma$pre_form in formA fires instead of the application_library version which is what I want, but when formA calls formB using call_form(formB,NO_HIDE,DO_REPLACE,NO_QUERY_ONLY,NO_SHARE_LIBRARY_DATA), formB's pre-form trigger fires and picks up the application library version of eaq$event_form, but then picks up formA's version of ma$pre_form instead of the application library version! How can this be???
    Incidentally if I call ma$pre_form directly from formB in the pre-form trigger it picks up the application library version correctly, but indirectly calling it via eaq$event_form does not work (even if I put a local copy of the procedure in formB!)
    Now this all works in client server as I'd expect, but since migrating to 10g it doesn't.
    Does anyone have any ideas?

    Hi,
    Sorry for the late reply, but I was off for the Holidays. Anyway.
    I have tested your scenario step by step. and it works just the way you're saying.
    But, what's happening here is just as Steve have mentioned in his second post.
    <quote>All the codes are in the same "bucket"</quote>
    And as I mentioned in my first post the local unit precedes the library, and that's why you are seeing the message from the local unit.
    I changed the name of the local unit from MY_PRE_FROM to MY_PRE_FORM_LOCAL, and it worked just fine with me.
    I suggest you try it, it should work.
    So when we run formA we should see the following messages
    'in generic call'
    'in formA local'
    Here what you are seeing the the precedences of the local unit over the library unit whenever they share the same name.
    but logically you should see the library code MY_GENERIC_CALL being executed and showing a message of
    PROCEDURE MY_GENERIC_CALL IS
    BEGIN
         message('in generic call');
         my_pre_form;
    END;and in turn calling to MY_PRE_FORM and the latter shows the message
    PROCEDURE my_pre_form IS
    BEGIN
    message('in lib my pre-form');
    END;so you should see:
    in generic call
    in lib my pre-form
    and what's happening with you is the local unit is being preceded from forma over the library unit. As if you are calling the local unit from the library. or at least this is what seems to be happening.
    Changing the local unit's name is making the difference.
    Regards,
    Tony Garabedian

  • HT204406 I used Match, and now there are artists missing when I search by artist, yet they are in my library when I search by song. If they are in many song list,  why aren't they in my artist list? Also I can't sort my songs by artist on iPhone,  so thes

    I used Match, and now there are artists missing when I search by artist, yet they are in my library when I search by song. If they are in many song list,  why aren't they in my artist list? Also I can't sort my songs list by artist on iPhone,  so their music is basically lost in space....help

    It's not clear from your post, but you do realise
    that if you import a cd as a compilation, it will not
    appear under artists? This is done to save the iPod
    being cluttered up with single artists entries who
    might have only one song listed.
    I wasn't aware of that. It's true that I haven't been using the "compilation" tag for a long time. I've only started using it with iTunes 7 as otherwise with Coverflow I would have one album cover for each artist in a compilation. Before that my compilations weren't tagged as such as that is quite probably why each artist from compilations showed up when browsing by artists.
    Message was edited by: Didou

  • Wrong map being executed in Process Flow

    I created a Process Flow that executes 3 maps and a PL/SQL procedure.
    The process flow functions to write data to a Unix file system.
    The first map when executed by itself writes the correct string as the first header within the file. But when I execute the same map, named HC_ENTHDR_TEMP_MAP, within the Process Flow the wrong header is written to the file.
    I've tried droppping the map and redeploying it. I've tried dropping the map within the Process Flow reinserting it and redeploying the Process Flow. These actions do not solve the problem. When the map is executed within the Process Flow, the wrong header is written. When the map is executed outside the process flow the correct header is written.
    Any help would be appreciated. It's as if the WorkFlow schema has the an invalid pointer to a map that I can't get rid of.

    Hi,
    Sorry for the late reply, but I was off for the Holidays. Anyway.
    I have tested your scenario step by step. and it works just the way you're saying.
    But, what's happening here is just as Steve have mentioned in his second post.
    <quote>All the codes are in the same "bucket"</quote>
    And as I mentioned in my first post the local unit precedes the library, and that's why you are seeing the message from the local unit.
    I changed the name of the local unit from MY_PRE_FROM to MY_PRE_FORM_LOCAL, and it worked just fine with me.
    I suggest you try it, it should work.
    So when we run formA we should see the following messages
    'in generic call'
    'in formA local'
    Here what you are seeing the the precedences of the local unit over the library unit whenever they share the same name.
    but logically you should see the library code MY_GENERIC_CALL being executed and showing a message of
    PROCEDURE MY_GENERIC_CALL IS
    BEGIN
         message('in generic call');
         my_pre_form;
    END;and in turn calling to MY_PRE_FORM and the latter shows the message
    PROCEDURE my_pre_form IS
    BEGIN
    message('in lib my pre-form');
    END;so you should see:
    in generic call
    in lib my pre-form
    and what's happening with you is the local unit is being preceded from forma over the library unit. As if you are calling the local unit from the library. or at least this is what seems to be happening.
    Changing the local unit's name is making the difference.
    Regards,
    Tony Garabedian

  • Why or When should we use Execute Immediate in PLSQL??

    Hi Frnds,
    Long Ago i have received a interview question that ...
    How can U create a table in the PLSQL object(Function or procedure)?
    But the thing y should we use execute immediate?
    In which scenario we should we should use????????????
    Why or When should we use Execute Immediate in PLSQL????

    OR
    http://stackoverflow.com/questions/18375990/oracle-what-does-execute-immediate-means
    For DML you'd use it when running statements that you don't have available at compile time, e.g. if the column list is based on a selection from the user.
    In your case it's being used because DDL cannot be run as static SQL from within PL/SQL. Only certain query, DML and TCL commands are valid. Anything else has to be treated as dynamic.
    I'd say it's rare to need to use DDL from a PL/SQL block. TRUNCATE might be reasonable; if you find anything creating or dropping objects on the fly then that might be more of a concern as it can suggest a suboptimal data model.
    EXECUTE IMMEDIATE itself does not automatically commit; but if you execute DDL then that will behave the same as if you ran it outside PL/SQL, so it will commit in your case, yes.
    Incidentally, I'm not sure why your code is using an intermediate variable to hold the statement; that's useful if you want to display what it's going to run maybe, but you don't seem to be doing that. What you have could be done as:
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BD_BIDS_EXT_DET';
    Thank you

Maybe you are looking for

  • (flash 8) video no se ve

    hola, gracias a francisco moreno e podido insertar muy bien el video en la pelicula, pero tngo un problema, cuando lo habro sale un ventana en blanco y no sale el video. que ruta le deberia poner si tengo el swf en la misma carpeta que el video, y el

  • Solaris 10 x86 Rel 01/06

    Hi all; I have just downloaded latest version of solaris 10 x86 Rel 01/06 and tried to installed it. But after first CD completion system is not showing anything to me and become hang. I tried the same more than three times. How can i solve the probl

  • Printable Files for Third Party

    Newbie here. I am trying to create printable files, which are self contained, and can be independently printed by a thrid party. I am wondering if BI Publisher is capable of creating a format where the graphical layout is only stored once, and then t

  • Update to Photoshop CC (14.1) crashes

    I just ran the update to PS 14.1 and it crashed ('update failure', Win7/64). Now PS won't start anymore ('invalid nternal file signature'). How do I fix that?

  • 10.4.6 Destruction

    I just finished a reinstall of 10.3 because the 10.4.6 installation created major havoc. The following happened to my dual 1.8Ghz G5 PowerMac after install: 1. My main monitor was stuck at 640x480 and after zapping my PRAM my secondary monitor was al