Line in red doesn't work, why?

var nbTunes:Number = 43;
var listeTunes:Array = new Array();
var noTune:Number= 1;
var max:Number = 43;
var pick:Number = -1;
var tune:Sound = new Sound(soundloader_mc);
for (var i:Number = 1; i <= max; ++i)
do{
  pick = random(nbTunes) + 1;
  trace(pick);
while(! this.Available(pick))
listeTunes.push(pick);
trace (listeTunes);
this.Play();
tune.onSoundComplete= function(){
Next();
btnStop.onRelease= function(){
tune.stop();
btnPlay.onRelease= function(){
tune.start();
btnBack.onRelease= function() {
BackTrack();
btnNext.onRelease= function() {
Next();
function BackTrack(){
if (noTune > 1){
  noTune-= 1;
else{
  noTune= max;
this.Play();
function Next(){
if (noTune < max)
  noTune+= 1;
else{
  noTune= 1;
this.Play();
function Play(){
this.WriteTune();
var addZero:String = "" ;
addZero.String = (noTune - 1) < 10 ? "0" : "" ;
trace("addZero: " + addZero.String) ;
tune.loadSound("Track No" + addZero.String + listeTunes[noTune - 1] + ".mp3", true); 
function WriteTune(){
trackNumber_txt.text = noTune + " / " + max;
function Available(choice:Number):Boolean{
var isAvailable = true;
for(var j:Number = 0; j < listeTunes.length; ++j){
  if (listeTunes[j] == choice){
   isAvailable = false;
return isAvailable;

Thanks, it works now.
I'm trying to learn ActionScript3 while finding snippets of code on Google to help me get started, but I guess I end up with code from earlier versions of ActionScript w/out my knowledge.  It's not easy for me to distinguish between the versions as I'm a novice at this.
Example, in the following code, bigNum does have a dot to it even though it is just a regular variable.
playbutt.addEventListener(MouseEvent.CLICK, playSound);
function playSound(e:Event):void
SoundMixer.stopAll();
var num:Number = Math.ceil(Math.random()*43);
bigNum.text = num < 10 ? "0"+String(num) : String(num);
var path:String = "Track No" + bigNum.text + ".mp3";
trace(path);
var s:Sound = new Sound(new URLRequest(path));
s.play();
SoundChannel(1).addEventListener(Event.SOUND_COMPLETE, playSound);
Ron

Similar Messages

  • I have downloaded my latest flash player and it still doesn't work, why?

    I have downloaded my latest flash player and it still doesn't work, why?

    Lightroom doesn't use the Camera Raw plug-in. All of the Camera Raw technology is part of the Lightroom program. You will either have to upgrade to Lightroom 5 or use the DNG converter to create digital negative copies that can be used with Lightroom 4.

  • Hi I'm new in this Ae and i loved it and started to get into editing but when i watch videos on how to use effects like magnify and CC light burst 2.5 it doesn't work why?

    hi I'm new in this Ae and i loved it and started to get into editing but when i watch videos on how to use effects like magnify and CC light burst 2.5 it doesn't work why?

    First, I want to clear up some vocabulary issues. After Effects is not intended for editing video. Editing involves cutting shots together to tell a story. Premiere Pro edits video. While you technically can cut video together in AE, Premiere is much, much better for that.
    After Effects is used for creating shots - visual effects, compositing, motion graphics, animation, color correction, color grading, etc.
    What exact version number of AE (down to the decimal points) are you using? Plus the questions Todd asked, plus the info in the link he gave.
    Also, if you're new to AE, you should really start here. This resource will give you a foundation in how to actually use After Effects that will probably clear up your current problem and prevent much more frustration in the future.

  • I push the cloud botton on the appstore to return the past purchased apps but it doesn't work.why?

    i push the cloud botton on the appstore to return the past purchased apps but it doesn't work.why?

    Oh gosh, this is ancient history for me.
    First, I remember some sort of third party boot enabler being required to install OSX on some G3s.  Not sure if it included iBook. http://eshop.macsales.com/OSXCenter/XPostFacto/Framework.cfm?page=XPostFacto.htm l
    Second, which exact set of installer discs?  They have to be black colored retail discs, not grey ones which came with a specific model Mac and will only boot that model.
    What are the exact specifications of the computer?  Does it have sufficient RAM?  You're asking a lot for a G3 to run Tiger.

  • Help: v('p1_test'):=1; doesn't work why?

    I want to update states on p34_level_1, 2, 3, 4 etc..
    But it seems I can use v('p34_level_1') one way?
    for example:
    Variable_Value:= v('p34_level_1'); -- <----works correctly
    but I cant go:
    v('p34_level_1'):= Variable_Value; -- <----DOESN'T work
    Below show my code basically i want to loop through some fields and update the contents with values,
    any ideas? or suggestions?
    I get this error:
    ORA-06550: line 17, column 28: PLS-00103: Encountered the symbol ":" when expecting one of the following: := . ( % ;
    declare
    count_levels number(12,0);
    begin
    -- Count levels
    select count(level_id)
    into count_levels
    from wi_ccqual_level
    where bu = :p1_buid;
    -- update page
    FOR i IN 1 .. count_levels
    LOOP
    v('P34_LEVEL_' || i): = i;
    --i = i;
    END LOOP;
    END;

    Hi Vanadium
    Function v('ITEM') just reads item values from APEX environment.
    If you want to update item values from PL/SQL you should use apex_util.set_session_state API
    Syntax: apex_util.set_session_state(item,value)
    So you should write: apex_util.set_session_state('P34_LEVEL_'||i , i );
    I hope this helps you
    Oscar

  • My KeyListener doesn´t work, why?

    Hi!
    I am trying to ge my KeyListener working.
    My code is as follows:
    class C extends JPanel
              public C()
                   addMouseListener(new MListener());
                            addKeyListener(new KListener());Furher down in the code I have this:
    class KListener extends KeyAdapter
                public void keyPressed(KeyEvent e)
                       System.out.println(KeyEvent.getKeyText(e.getKeyCode()) + " was pressed");
                public void keyReleased(KeyEvent e)
                     System.out.println(KeyEvent.getKeyText(e.getKeyCode()) + " was released");
           }I do not get any errors when compiling the code but the KeyListener doesn´t work. The mouse listeners work perfekt.
    What´s wrong with my key listener?

    Add your keyListener to the JFrame and it will probably work, the JFrame has the focus when you use your JPanel.
    package Junk;
    import java.awt.Dimension;
    import java.awt.event.KeyAdapter;
    import java.awt.event.KeyEvent;
    import javax.swing.JFrame;
    class Junk extends JFrame {
      Junk(){
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        addKeyListener(new KListener());
        setPreferredSize(new Dimension(256, 256));
        setVisible(true);
      public static void main(String[] args){
        new Junk();
      class KListener extends KeyAdapter {
        public void keyPressed(KeyEvent e) {
                System.out.println(KeyEvent.getKeyText(e.getKeyCode()) + " was pressed");
              public void keyReleased(KeyEvent e) {
             System.out.println(KeyEvent.getKeyText(e.getKeyCode()) + " was released");
    }

  • MacBok pro Audio line in port  doesn't work for microphone input Why?

    I turn line-in port  on in System preferences/sound but no reaction. Using within third party applications like Hear or Amadeus the recording via head set microphone is without problem. What is wrong with the Mac os ?

    Actually, I've found the following problem with mine:
    If the jack is stereo jack, the computer is in "line in" mode, where you need higher signal level (approx. 500mV afaik) which no passive microphone will provide. If the jack is mono, it "looks" for an external microphone and it works.
    Both sockets (in and out) of the MBP are intelligent, in the sense that they detect what's connected based on the jack configuration.
    I have a headset with a stereo pink jack (the microphone) and it is not working. Another microphone that I have, with a mono jack works flawlessly.

  • Grant permissions on sys.sql_logins doesn't work: why?

    Using admin user I try to run:
    3> GRANT SELECT ON sys.sql_logins TO someuser
    4> go
    Msg 15151, Level 16, State 1, Server ..., Line 2
    Cannot find the object 'sql_logins', because it does not exist or you do not have permission.
    1>
    Why is that?

    Hi Martin
    No, it won't work.
    Features that are Not Supported in SQL Database
    GRANT/REVOKE/DENY endpoint, server-level, server principal, and system object permissions
    and related system tables such as sys.server_principals and sys.server_permissions.
    If you have any feedback on our support, you can click
    here.
    Eric Zhang
    TechNet Community Support

  • Method to return ArrayList or Vector doesn't work, why?

    Hi, I try to return a ArrayList or Vector from a method but it does not work.. wondering why and how to fix it? Thanks:)
    class Class1{
          public static main(...){
              Class2 test = new Class2();
              ArrayList<String> resp = test.class2method(...);
              if(resp.get(4).equals(...)) {        
    class Class2{
        public ArrayList class2method(int NumInt1, int NumInt2, ...) {
           ArrayList<String> arrayTesting = new ArrayList<String>(13);
           responses.set(2, Integer.toString(NumInt1));
           responses.set(3, Integer.toString(NumInt2));
           responses.set(4, Integer.toString(NumInt3));
           responses.set(5, Integer.toString(NumInt4));
           responses.set(6, Integer.toString(NumInt5));
           return responses;
    }

    what is responses? don't you want to return
    arrayTesting?yes, responses is arrayTesting, sorry did notmention
    that.what do you mean? is the code you posted a typo or
    what you actually have in your code?It's more than 1000 lines codes so I decided not to posted them but here is part of them. My point is that i tried to return a ArrayList or Vector even with a simple code, it does not work. Thanks for your help.
    public class DemoScript {
        public DemoScript() throws IOException {
            // register the shutdown hook
            Runtime.getRuntime().addShutdownHook(new Thread() {
                public void run() {
                    System.out.println("close prog");
                     endApp();
        public void endApp() {
            System.out.println("done!");
            System.exit(0);
         public static void main(String[] args) {
              Parameters p = new Parameters();
              VMF vm = null;
                   //Elements: [0]time, [1]MsgType, [2]NumInt1, [3]NumInt2, [4]NumInt3, [5]NumInt4, [6]NumInt5, [7]NumLong,
                   //               [8]String1, [9]String2, [10]String3, [11]String4, [12]String5
    //               ArrayList<String> responses = new ArrayList<String>(13);
              try {
                   MyScript my = new MyScript();
                   if(args.length == 5) {
                       p.vmHost = args[1]; p.vmPort = Integer.parseInt(args[2]);
                       p.guiHost = args[3]; p.guiPort = Integer.parseInt(args[4]);
                  } else if(args.length == 4) {
                       p.vmHost = args[1]; p.vmPort = Integer.parseInt(args[2]); p.guiHost = args[3];
                  } else if(args.length == 3){
                       p.vmHost = args[1]; p.vmPort = Integer.parseInt(args[2]);
                  } else if(args.length == 2){
                       p.vmHost = args[1];
                  } else {
                       System.out.println("Usage: java MyScript [port #] [voice mail hostname] <voice mail socket #> <GUI hostname> <GUI socket #>");
                       System.out.println("Default: <voice mail socket #> = "+p.vmPort+", <GUI hostname> = "+p.guiHost+", <GUI socket #> = "+p.guiPort);
                       System.exit(-1);
    //               String hostname;
                   //int port;
                   /* Check for input arguments */
                   //if(args[0] != null){
                   //     port = Integer.parseInt(args[0]);
                   //     hostname = args[1];
                   //} else {
                   //     port = 2000;
                   //     hostname = "10.0.0.228";
                   //System.out.println("tews");
                   vm = new VMF(p.vmHost, p.vmPort, p.guiHost, p.guiPort);
                   vm.logon();
                   //vm.portAbort(4);/*
                   vm.portCapture(3, 0);
                   //vm.portAbort(4);/*
                   //vm.portOnhook();
                   //vm.portOffhook();
                   ////vm.portStop(3);  //to stop a port current operation
                   //vm.portWaitring(); //vm will not resp until port detects ring
                   //vm.portOffhook();
                   //vm.portGetdigits(5, 7);
                   //vm.portDialdigits("201");
                   //for(int i=0;i<100000000;i++);
                   //vm.portCallprogress(3, 0, 10);
                   //System.out.println("d");
                   //for(int i=0;i<1000000;i++);
                   //vm.portGetdigits(5, 7);
                   //vm.portRecordfile(30, 1, "\\\\kanapak.ctlinc.local\\VMfiles\\test.wmv");
                   //vm.portClearDTMF();
                   //vm.portPlayfile("\\\\kanapak.ctlinc.local\\VMfiles\\test.wmv");
                   //vm.portPlayprompt(2);
                   //vm.portSpeaknumber(3845);
                   //vm.portSpeakdigits("1639123478866478909");//75655656566657867867*");
                   //vm.portExternalcall(4, "933");
                   ArrayList<String> response = vm.portInternalcall(2, "201");
                   System.out.println(response.get(4));
                   if(response.get(4).equals("DONE")) {
                        vm.portPlayprompt(1); vm.portPlayprompt(2);
                   } else if(response.get(4).equals("GONE")) {
                   vm.portSpeakttsstring("hello. This will create ");//a project with all of the proper SWT and JFace imports. Version 4.1.1 latest build released (SWT visual inheritance, enhanced SWT GridLayout support, non-visual beans, custom !!!SWT widgets, code generation enhancements, expose property, etc.)");
                   vm.portRelease();
                   vm.logoff();
                   vm = new VMF(p.vmHost, p.vmPort, p.guiHost, p.guiPort);
                   vm.logon();
                   vm.portCapture(Integer.parseInt(args[0]), 0);
                   vm.portOnhook();
                   vm.portOffhook();
                   //          vm.portGetdigits(5, 7);
                   //vm.portRecordfile(30, 1, "\\\\kanapak.ctlinc.local\\VMfiles\\test.wmv");
                   //vm.portClearDTMF();
                   //vm.portPlayfile("\\\\kanapak.ctlinc.local\\VMfiles\\test.wmv");
                   vm.portPlayprompt(86);
                   //          vm.portSpeaknumber(3845);
                   //vm.portSpeakdigits("1639123478866478909");//75655656566657867867*");
                   //vm.portExternalcall(4, "933");
                   //vm.portInternalcall(9, "82045");
                   //vm.portSpeakttsstring("hello. This will create");// a project with all of the proper SWT and JFace imports. Version 4.1.1 latest build released (SWT visual inheritance, enhanced SWT GridLayout support, non-visual beans, custom !!!SWT widgets, code generation enhancements, expose property, etc.)");
                   vm.portRelease();
                   vm.logoff();
              } catch (IOException e) {
                   e.printStackTrace();
              } catch (InterruptedException e) {
                   //catch "STOP PORT"
                   vm.logoff();
    class VMF {
        public ArrayList<String> portInternalcall(int rings, String dial_string) {
             if (logon_status == 0) {
                   System.err.println("Error: logon required");
                   logoff();closeAndExit();
              } else if (capture_status == 0) {
                   System.err.println("Warning: portCapture required");logoff();closeAndExit();
              } else if (rings <1 || rings >999 || !checkDigits(dial_string)) {
                   System.err.println("Warning: portInternalcall( [1-999] , \"[0-9,A-D,F,P,a-d,f,p,*,#]\" )");
             breakString(dial_string);
             ostruct.write("", "IVR", "123", 188, captured_port, rings, 0, 0, 0, 0, str1, str2, str3, str4, str5);
             sendToGUI("s", "", "IVR", "123", "188", Integer.toString(captured_port),
                       Integer.toString(rings), "0", "0", "0", "0", str1, str2, str3, str4, str5);
             readStream();
             recToGUI("r", Integer.toString(MsgType),Integer.toString(NumInt1),Integer.toString(NumInt2),
                        Integer.toString(NumInt3),Integer.toString(NumInt4),Integer.toString(NumInt5),
                        Integer.toString(NumLong),String1,String2,String3,String4,String5);
              responses.set(2, Integer.toString(NumInt1)); responses.set(3, Integer.toString(NumInt2));
              responses.set(4, Integer.toString(NumInt3)); responses.set(5, Integer.toString(NumInt4));
              responses.set(6, Integer.toString(NumInt5));
              return responses;
    }

  • 6303i Classic modem doesn't work - why?

    In the 6303i user manual:  "You can use your device as a modem by connecting it to a compatible PC. For details, see the Nokia Ovi Suite documentation"
    Based on this I just bought a 6303i and wasted a morning trying to get the modem to work.  I can connect to it using Hyperterminal, interrogate it, find out what network it's connected to (AT+COPS), what the call quality is (AT+CSQ), but as soon as I type ATD [phone no] it returns ERROR.
    Why does AT+CSQ, +COPS etc work but ATD doesn't?

    nowadays, nokia phones which comes with computer compatibles(connectivity) and gprs enable, also can be used as a modem.
    I hope you are not typing your phone no. in atd command. it should be somewhat like *99#(contact your sp).
    to use your phone as a modem, no need to go such detail(but if for some reason you need).
    and there are lots of thread/topic on this forum
    hope someone add more input on this issue

  • Audio line out mysteriously doesn't work due to software

    My topic doesn't seem to fit in with any of the forum topics, so I chose this one as the closest fit.
    Now, my line out audio stopped working. Now before you think I'm crazy and I submitted a question for what is obviously bad hardware, listen to this.
    This happened before about a year and a half ago. I thought it was a faulty line out jack, and since computer was still under warranty, I took it in. They told me there was nothing wrong. I took the computer home and it worked just fine. hmmmmm
    Now it happened again. I checked my speakers first by connecting to another computer. They worked fine. I rebooted the computer in Windows and the line out plays just fine into the external speakers! I reboot back into OSX and it stops working! Any ideas what is going on?
    Of course I have the line out selected in the sound preferences. I can select internal speaker and I get audio from the computers speaker. Go back to line out and it's a blank. And yes, the volume is turned up.

    Here's my advice...
    Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, then reinstall the combo update for Intel-based Macs...
    http://www.apple.com/support/downloads/macosx10411comboupdateintel.html
    Repair Permissions afterwards, reboot.

  • I have a iBook G3 and I'm trying to install OS X 10.4 but it doesn't work, why?

    I recieved my OS X 10.4.1 install discs today so I put disc into my iBook and rebooted it. As I did the apple logo appeared after the bong, no loading wheel appeared then a load of writing appeared. The last line said: "panic: We are hanging here...". At the top I noticed two error lines and they read: "Error: Extension archive doesn't contain software for this computer's CPU type." and
    "Error: Couldn't unpack multi-extension archive.". What does all of this mean and how do i fix it? If anyone needs more parts of the writing on the black screen I am willing to give it to you. Thanks

    Oh gosh, this is ancient history for me.
    First, I remember some sort of third party boot enabler being required to install OSX on some G3s.  Not sure if it included iBook. http://eshop.macsales.com/OSXCenter/XPostFacto/Framework.cfm?page=XPostFacto.htm l
    Second, which exact set of installer discs?  They have to be black colored retail discs, not grey ones which came with a specific model Mac and will only boot that model.
    What are the exact specifications of the computer?  Does it have sufficient RAM?  You're asking a lot for a G3 to run Tiger.

  • Line-in mic doesn't work; both preferences selected

    I can't get a Line-in microphone to work on imovie VO, or elsewhere.
    I've selected Line-in on both the Personal Preferences and the preferences on imovie.
    And I've tried two different new microphone headsets.
    Can someone please tell what I'm doing wrong?

    Pieter,
    I'm not at my big Mac right now (..the one with iMovie '08..) and so I can't test things: I'm travelling with my G4 PowerBook laptop, and iMovie '08 isn't (..can't be..) installed on that. So I can't test this for you; sorry.
    I don't remember having had a problem with audio input in iMovie '08, but maybe someone else can give you more info. (I think I've used a Saffire FireWire input device, and condenser mic, with iM'08, but can't remember the details right now.)
    It may be that the 'GarageBand Fix' might help: go to GarageBand, play a few notes on a virtual instrument, then quit GB. That may reset the audio to its proper settings. And as Klaus1 always recommends.. "Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz."
    I'm sorry that I can't presently help any more than that..

  • Nextval('id_increment') doesn't work - why?

    sorry for crossposting this as i just joined and asked in the newbie section..
    I've got a main method as a driver to test a database insertion and in the line not working is -
    Customer c = new Customer (select nextval('id_increment'),"Mark","Jones");
    the error is to do with nextval...
    java.lang.Error: Unresolved compilation problem:
         Invalid character constant
    I've never used a database with java before and the line worked fine before I made the sequence. Inserting a 1 or 2 for example had worked fine before this.
    Any suggestions on where to look next would be appreciated. Thanks.

    main is just a simple test driver - the database accepts a sequenced integer, a string for name and a string for address...
    package week07;
    import java.sql.*;
    public class main {
         * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
    try {
         Customer c = new Customer (select nextval('id_increment'),"Mark","Jones");
         c.insertInDB();
         System.out.println("finished insertion");
    catch(SQLException ex)
    System.out.println("bugger");
    System.out.println();
    ex.printStackTrace();
    Customer.java are just getters and setters and constructor, I've addes an insert method I'm testing...
    package week07;
    import database.Database;
    import java.sql.*;
    * @author Steven Clark
    public class Customer {
         * @param args
         private int id;
         private String name, address;
         public Customer(int id, String name, String address) {
              super();
              // TODO Auto-generated constructor stub
              this.address = address;
              this.id = id;
              this.name = name;
         public String getAddress() {
              return address;
         public void setAddress(String address) {
              this.address = address;
         public int getId() {
              return id;
         public void setId(int id) {
              this.id = id;
         public String getName() {
              return name;
         public void setName(String name) {
              this.name = name;
    public void insertInDB() throws SQLException
              Database db = new Database();
              db.update("insert into customer values ('" + getId()
                        + "', '" + getName()
                        + "', '" + getAddress() + "')");
              db.disconnect();
    Finally, the table in postgreSQL is just those 3 fields - id with a sequence as primary key, a name and address. There's a sequence for id.
    I'm not sure where I've gone wrong and wonder if my syntax in teh main method calling nextval() is somehow wrong?

  • I want to do a border-radius with box shadow and it doesn't work, why?

    This should be simple but it's not working and I don't know why. I think the problem is in the html.
    I simply want to have a div with an image inside that is circular and has an inset shadow and is centered on the page.
    /*here is my css*/
    #div3 {
    -webkit-margin:25px auto;
    -webkit-border-radius:50%;
    .box-shad{
    -webkit-box-shadow: 15px 15px 15px #8 inset;
    <!-- here is my html -->
    <body>
      <div class="gridContainer clearfix">
      <div id="div3" class="fluid"><div class="box-shad"><a href="index.html"><img src="images/Big-tree-trans1.png" width="900" height="700" alt=""/></a></div>
      </div>
    </body>
    Here is my website: www.adjacentdimensionsmedia.com

    I want a different drop shadowed image on each page. Is there a way to do that?
    Sure.  Copy & paste the following code into a new, blank document.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Document</title>
    <style>
        margin: 0;
        padding: 0;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    img {
        max-width: 100%;
        vertical-align: baseline
    body { background: #069 }
    header, footer {
        clear: both;
        width: 100%;
        padding: 0 2%;
        background: #CCC;
        color: #000;
        min-height: 50px
    article {
        clear: both;
        width: 75%;
        min-height: 600px;
        padding: 0 2%;
        background: #FFF;
        color: #069;
        margin: 0 auto;
    .shadow img { box-shadow: 1px 3px 5px #333 }
    .radius img {
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
    .border img { border: 20px solid #069 }
    .center {
        text-align: center;
        margin: 0 auto
    </style>
    </head>
    <body>
    <header>Header</header>
    <article> <h1>Main content area</h1>
    <div class="shadow radius border center">
    <!--INSERT YOUR UNIQUE IMAGE BELOW-->
    <img src="http://placehold.it/500x325.jpg"> </div>
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    <p> </p>
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    </article>
    <footer>Footer</footer>
    </body>
    </html>
    Nancy O.

Maybe you are looking for

  • How can I use a single query panel with two view criteria?

    Hi all, I have a requirement to allow users to change the "display mode" on a search results tree table for an advanced search page. What this will do is change the structure of how the data is laid out. In one case the tree table is 3 levels deep, i

  • Attach a picture to a form

    Hi, I'm creating a form people need to fill in (adobe pro X), but they can also attach a picture we can use later on for a certificate. I used the "button" option and used a javascript "event.target.buttonImportIcon();" this imports the picture but d

  • Trace file analysis: High cpu timings for FETCH

    Hi! I am doing a 10046 trace file analysis for a performance problem we see on a customer site, but we can't reproduce the problem on our local reference test system. Basically, the cpu timings for FETCH calls for a SELECT statement are ten times as

  • JavaScript Links & Frames issue

    Hi, I have a DHTML Folder Tree, also known as a TreeView. That is, an expandable/collapsible tree of links. In a frame-less layout everything works great. In a frame-based layout, it doesn't work on Safari/Konqueror. There are two frames: the left fr

  • Create and approve batch record first. message: EBR015

    HI All,                      when i am doing UD for Early inspection lot (04 inspection type) i getting the error message "create and approve batch record first. message: EBR015" PLEASE HELP ME, Regards, sbabu