Noob needs help with SQLPLUS

I googled all over, here is my problem:
I cannot run sqlplus from command dos window, I get that ORA-12560: TNS:protocol adapter error, but I can run sqlplus from all programs--> oracleclient10g_1-->application development->SQLPLUS.
Why?

Making sqlplus work is one thing, but cloning a complete database is accelerating from 0 to 100 at the speed of a wink. I suggest you to get involved with recovery manager and recovery concepts. Once you understand how a recovery process is being carried out I suggest you this link: --> Clone a Database Using RMAN
~ Madrid
http://hrivera99.blogspot.com/

Similar Messages

  • Noob needs help with Logic and Motu live setup.

    Hello everyone,
    I'm a noob / semi noob who could use some help with a live setup using 2 MOTU 896HD's and Logic on a Mac.
    Here's the scenario:
    I teach an outdoor marching percussion section (a drumline and a front ensemble of marimbas and vibes). We have an amazing setup of live sound to amplify and enhance the mallet percussion. There is a yamaha PA system with 2 subs and 2 mains which are routed through a rack unit that processes the overall PA balance. I'm pretty sure that the unit is supposed to avoid feedback and do an overall cross-over EQ of the sound. Other then that unit, we have 2 motu896hd units which are routed via fire-wire. I also have a coax cable routing the output of the secondary box to the input of the primary box (digital i/o which converts to ADAT in (i think?)..?
    Here's the confusion:
    There are more then 8 inputs being used from the ensemble itself, so I need the 16 available inputs to be available in Logic. I was lead to believe that the 2nd motu unit would have to be sent digitally to the 1st motu unit via coax digital i/o. Once in Logic, however, I cannot find the signal or any input at all past the 8th input (of the 1st unit).
    Here's the goal:
    All of my performers and inputs routed via firewire into a Mac Mini running OSX and Logic pro.
    I want to be able to use MainStage and run different patches of effects / virt. instruments for a midi controller keyboard / etc.
    I want to be able to EQ and balance the ensemble via Logic.
    Here's another question:
    How much latency will I be dealing with? Would a mac mini with 4gb of ram be able to handle this load? With percussion, I obviously want the sound as latency free as possible. I also, however, want the flexibility of sound enhancement / modification that comes with Logic and the motu896hd units.
    Any help would be REALLY appreciated. I need the routing assistance along with some direction as to whether or not this will work for this type of application. I'm pretty certain it does, as I have spoken with some other teachers in similar venues and they have been doing similar things using mac mini's / logic / mainstage / etc.
    Thanks in advance,
    Chris

    You'll definitely want to read the manual to make sure the 896HDs are connected together properly. ADAT is a little tricky, it's not just a matter of cabling them together. Go to motunation.com if you need more guidance on connecting multiple devices. Beyond that initial hookup, here are a couple of quick suggestions:
    1. Open CueMix and see if both devices are reported there. If not, your connections aren't correct. Be sure to select 44.1kHz as your sample rate, otherwise you are reducing the number of additional channels. For instance at 88.2kHz you would get half the additional channels via ADAT.
    2. You may need to create an aggregate device for the MacBook to recognize more than the first 896HD. Lots of help on this forum for how to do that. Again, first make sure you have the 896HDs connected together properly.
    3. As for latency with Mainstage on the Mini, no way to know until you try it. Generally MOTU is fantastic for low latency work but Mainstage is a question mark for a lot of users right now. If the Mini can't cut the mustard, you have a great excuse to upgrade to a MacBook Pro.

  • Noob needs help with Media Encoder Settings

    Hi All,
    Please be gentle with me. I am very new to this.
    I am using PPCS4 full version on which I am trying to edit and export video from my Canon HF 10 using their AVCHD format.
    The Mac is a MAC PRO 2 x QuadCore 3.0Ghz, 1 x 320GB SATA and 3 x 1TB SATA disks with a 30" Apple Cinema Display.
    I can import and see the video running in the source window, it can be a bit choppy but i am putting dowm to the lack of RAM (more the way). My real problem is that when I export the files the result is, well bad. I either get what appears to be a line effect every other line on the screen or by using other settings it appears grainy.
    My Cam should be recording in 1080i HD and i expect to be able to put this stuff on a DVD / Blue-Ray disk or file and see as good an image as I see in the viewfinder. This I cannot seem to do.
    Any ideas?
    Thanks
    J

    Hi
    I don't understand...please let me know...
    did media encoder work before and it just suddenly stopped working ?  Or  is this the first time you tried using it and it just doesnt work from  your original installation ?  In other words , did it EVER work for you using the HD ?
    What source material are you using ? In other words, what type of video.  MOV and AVI can have many different types of video inside those file extensions...they are called "wrappers" insomuch as they can have a lot of different "codecs" being used in the video.  Can you tell us what the video is that you're using when AME fails to work ?
    Also tell more about your computer setup...how many hard drives? Did you set up your system like recommended in many threads here in the forums ?
    There are a lot of really good and smart people here who can help you, but they need as much information as possible so they can begin to understand what is going on with your problem. It does take some time and work on your part to put all that info into a message, but it's worth it because most times problems are solved because of it.
    ps...not meant to be a criticism because you were angry about problem, but some people probably didnt respond to your trouble right away because of your initial mssg being a little bit scary..  most people here are just users like you and help each other. nobody wants to risk being yelled at or deal with someone who is just angry and isn't really supplying enough information to help solve the problem.  That's just my opinion, and I'm glad your response to my mssg was less angry sounding.  Whew !

  • Noob needs help with this code...

    Hi,
    I found this code in a nice tutorial and I wanna make slight
    adjustments to the code.
    Unfortunately my Action Script skills are very limited... ;)
    This is the code for a 'sliding menue', depending on which
    button u pressed it will 'slide' to the appropriate picture.
    Here's the code:
    var currentPosition:Number = large_pics.pic1._x;
    var startFlag:Boolean = false;
    menuSlide = function (input:MovieClip) {
    if (startFlag == false) {
    startFlag = true;
    var finalDestination:Number = input._x;
    var distanceMoved:Number = 0;
    var distanceToMove:Number =
    Math.abs(finalDestination-currentPosition);
    var finalSpeed:Number = .2;
    var currentSpeed:Number = 0;
    var dir:Number = 1;
    if (currentPosition<=finalDestination) {
    dir = -1;
    } else if (currentPosition>finalDestination) {
    dir = 1;
    this.onEnterFrame = function() {
    currentSpeed =
    Math.round((distanceToMove-distanceMoved+1)*finalSpeed);
    distanceMoved += currentSpeed;
    large_pics._x += dir*currentSpeed;
    if (Math.abs(distanceMoved-distanceToMove)<=1) {
    large_pics._x =
    mask_pics._x-currentPosition+dir*distanceToMove;
    currentPosition = input._x;
    startFlag = false;
    delete this.onEnterFrame;
    b1.onRelease = function() {
    menuSlide(large_pics.pic1);
    b2.onRelease = function() {
    menuSlide(large_pics.pic2);
    b3.onRelease = function() {
    menuSlide(large_pics.pic3);
    b4.onRelease = function() {
    menuSlide(large_pics.pic4);
    I need to adjust five things in this code...
    (1) I want this menue to slide vertically not horizontally.
    I changed the 'x' values in the code to 'y' which I thought
    would make it move vertically, but it doesn't work...
    (2) Is it possible that, whatever the distance is, the
    "sliding" time is always 2.2 sec ?
    (3) I need to implement code that after the final position is
    reached, the timeline jumps to a certain movieclip to a certain
    label - depending on what button was pressed of course...
    I tried to implement this code for button number two...
    b2.onRelease = function() {
    menuSlide(large_pics.pic2);
    if (currentPosition = finalDestination) {
    this.large_pics.pic2.gotoAndPlay("s1");
    --> sliding still works but it doesn't jump to the
    appropriate label...
    (4) I wanna add 'Next' & 'Previous' buttons to the slide
    show - what would be the code in this case scenario ?
    My first thought was something like that Flash checks which
    'pic' movieclip it is showing right now (pic1, pic2, pic3 etc.) and
    depending on what button u pressed u go to the y value of movieclip
    'picX + 1' (Next button) or 'picX - 1' (Previous button)...
    Is that possible ?
    (5) After implementing the Next & Previous buttons I need
    to make sure that when it reached the last pic movieclip it will
    not go further on the y value - because there is no more pic
    movieclip.
    Options are to either slide back to movieclip 'pic1' or
    simply do nothing any more on the next button...
    I know this is probably Kindergarten for you, but I have only
    slight ideas how to do this and no code knowledge to back it up...
    haha
    Thanx a lot for your help in advance !
    Always a pleasure to learn from u guys... ;)
    Mike

    Hi,
    I made some progress with the code thanx to the help of
    Simon, but there are still 2 things that need to be addressed...
    (1) I want the sliding time always to be 2.2 sec...
    here's my approach to it - just a theory but it might work:
    we need a speed that changes dynamically depending on the
    distance we have to travel...
    I don't know if that applies for Action Scrip but I recall
    from 6th grade, that...
    speed = distance / time
    --> we got the time (which is always 2.2 sec)
    --> we got the disctance
    (currentposition-finaldestination)
    --> this should automatically change the speed to the
    appropriate value
    Unfortunately I have no clue how the action script would look
    like (like I said my action script skills are very limited)...
    (2) Also, one other thing I need that is not implemented yet,
    is that when the final destination is reached it jumps to a certain
    label inside a certain movieclip - every time different for each
    button pressed - something like:
    if (currentPosition = finalDestination) {
    this.large_pics.pic2.gotoAndPlay("s1");
    that statement just doesn't work when I put it right under
    the function for each button...
    Thanx again for taking the time !!!
    Mike

  • Noob needs help with hosting multiple sites

    Hello I am new to this multi hosting. I have looked on the forum for answers but haven't found any. I am trying to figure out how to host multiple sites. I have my dns working for my default site "example1.com", but need to know if I need to add another dns record for my second site. "example2.com". Also when I point to the new fold that has the second site in it and I assign it port 82 for testing purposes I get an error message saying 403 access forbidden. I need to find out how get permission to view the site for the public. Its in a separate folder on an external hard drive right now for testing purposes. Can any body help me or point me in the right direction? Thanks so much!!!
    -Kcam1999

    {quote}
    While what you are telling him is technically functional, it is not correct
    I beg to differ, Paul. You are the one that is not correct.
    CNAMES have been deprecated as of some years ago
    What? huh? really?
    Please show me any official document that states this (and not someone who just started a rumor because he didn't understand them). Indeed, the DNS RFC makes no such claim.
    {quote}
    I stand very much corrected. CNAMEs are not officially deprecated. Interestingly, your post cites precisely what happens when CNAMES used carelessly. How many transactions are needed to resolve Apple's CNAME chain below? RFC1912 (http://www.faqs.org/rfcs/rfc1912.html) has some recommendations that suggests Apple's own network folks have, like me and perhaps even others here, some learning to do. Is that a 'best practice?'
    {quote}> Then make sure you tell Apple since this site depends on the use of CNAMEs:
    dig discussions.apple.com
    discussions.apple.com. 492 IN CNAME discussions.apple.com.edgesuite.net.
    discussions.apple.com.edgesuite.net. 4427 IN CNAME a1399.b.akamai.net.
    a1399.b.akamai.net. 2 IN A 128.241.220.82
    a1399.b.akamai.net. 2 IN A 128.241.220.72
    In fact, it uses TWO CNAMES in a chain. Oh my.{quote}
    From RFC1912 (which I'm sure many have now read here), section 2.4 is as follows:
    {quote}... having chained records such as CNAMEs pointing to CNAMEs may
    make administration issues easier, but is known to tickle bugs in
    some resolvers that fail to check loops correctly. As a result some
    hosts may not be able to resolve such names.{quote}
    {quote}> It is not valid to say "don't use these because they could cause problems'. A records can be just as problematic, as can PTRs. Let's not even talk about MX.{quote}
    How, exactly, does is an A record problematic? No chains, no additional lookups, no wasted cycles...
    We differ here -- and if we are dealing with a newbie, we don't need to enter into unnecessary complexity UNTIL it is a requirement for their solutions.
    {quote}> There are many valid reasons to use CNAMEs in DNS, not least of which is the ease of moving a service if it uses CNAMEs. For example, if you have 10 A records all pointing at the same server and you want to migrate to a different machine you have to locate and update all 10 records. If they used a CNAME to the physical server you could move them all at once using a single change. This is especially important in cross-domain links where you may not control all the origin zone files.
    {quote}
    You're somewhat reaching here, and it is well beyond the scope of the OP's post or needs (well, until they tell us more about their needs, I suppose). There is nothing difficult about 'finding' and updating the necessary records. The final example you gave is a good one and I'll say THAT is an appropriate use of a CNAME, 'though there are other workarounds for it.
    Thanks for keeping me honest.

  • Noob needs help with pictures

    higuys i dont really know anything about photoshop but what im looking for is a guide to layer 2 pictures over each other..the first picture is of a car and the second is of an alloy wheel,what i want is to be able to move the picture of the alloy onto the picture of the car so i can see what the wheel looks like on the car.any help appreciated

    UMM I think he needs to select and cut out just the WHEELS and apply to the
    car picture
    read the rest of his post
    making selections is too much to type
    there are many techniques and many tutorials
    basically once you got the wheel selected just open car image and drag the
    selection over the other picture (or copy/paste)
    then use edit>transform to resize or change perspective to fit
    if the wheel is the same for front and back
    drag wheel layer to the paper icon to dupe it and use move tool to place
    over other wheel
    save the layered doc as PSD in case you need to edit
    and use save as.. or save for web to make a flattened copy

  • Noob needs help with gradient

    I am having troubles duplicating this image. As you can see ( if I link to it correctly) this little green box (there are three across the top "service specials" for example) is lighter in the middle and darker on the top and bottom. I am tryng to make a new one but am struggling as 'gradient' only seems to go from 'dark to light' but not 'dark to light to dark again'
    Any help please? And please keep it realy simple or give directions in detail.
    my link

    When you have the Gradient Tool selected, look at the Options bar at the top of your screen. There's a group of 5 buttons that will produce different types of gradients.
    Experiment with those, and experiment with your start and stop points when you click and drag with the gradient tool in your document area.

  • Noob Needs Help with VS2005 to VS23013 Conversion

    I have a website that was built with VS2005 and would like to convert it to VS2013. A friend of mine built this site but I have no experience with any sort of development. The site also uses a sql database. My goal is to just edit the pictures and text using
    VS2013 and to not change any layout or dimensions.
    Any help is appreciated.
    Bill Dunn

    Hello,
    Thank you for your post.
    I am afraid that the issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    Because your issue is about web site, I suggest that you can consult your issue on ASP.NET forum:
    http://forums.asp.net/
     for better solution and support.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Noob needs help with dreamweaver- problem encountered

    madelinebeth.net
    This is the website i am trying to create. It is not
    complete, but on Safari it looks fine. When i open it on firefox,
    it gets all messed up and i dont know how to change it. It
    initially gets messed up on dreamweaver when i add links o
    different slices. Any help would be greatly appreciated.

    > is a bug in firefox that does not render correctly using
    tables
    Never heard of that. Are you sure?
    >yes you can use photoshop, fireworks, etc. thats what
    they are for
    Could not disagree more. Image apps are for
    creating/manipulating images.
    Period. The HTML they spew is second-rate at best.
    Walt
    "Silkrooster" <[email protected]> wrote in
    message
    news:g0t18h$erv$[email protected]..
    >A few things I see that need to be changed. your first
    issue is tables,
    >there
    > is a bug in firefox that does not render correctly using
    tables. I don't
    > recall
    > the bug and how it works, but the easiest way to
    overcome the bug is to
    > use css
    > instead of tables.
    > The other issue is to add a DTD at the top of your code,
    this will stop
    > the
    > browsers especially IE from using the quirks mode.
    > Other than that the code is fine. These problems can
    easily be fixed in
    > Dreamweaver. And yes you can use photoshop, fireworks,
    etc. thats what
    > they are
    > for, as long as you know the bugs they may create. The
    biggest being the
    > DTD,
    > next is the tables issue, which photoshop can use either
    tables or css.
    > Fireworks currently only supports tables, hopefully that
    will get fixed in
    > the
    > next version.
    > To make sure your code is correct from the get go, it is
    best to
    > use
    > dreamweaver as it is aware of the DTD and can use css or
    tables.
    > I agree about the leopard skin, way too hard on the
    eyes.
    > Hope this helps
    >

  • Noob needs help with array manipulation

    First off, I'd like to say hello to eveybody!
    I'm trying to figure out how to search for a value in an array, delete the first occurence of it, and shift the rest of the array down one. Can anyone point me in the right direction of an algorithm, mabey?
    Any help is most appreciated!

    first of all, let me comment that for this purpouse, you're better using the ArrayList class.
    anyway, you would need to make a temporary array inside a method, and traverse the array in question using a loop. most people use a for loop.
    Then, put all the values of the old array into the temporary one, except for the one you dont want.
    after the loop, set the old array to equal the temporary array.

  • Noob needs help with drivers...

    yeech, so yeah i decided to format my c drive, and surprise surprise, i wasnt quite prepared....
    here's the deal, my wireless card works, as i got the drivers for it, but my onboard LAN doesnt, and i have no idea where to get the driver for that...any help is appreciated..
    thanks!

    Quote from: bejon2000 on 20-March-06, 16:53:45
    budfroggy,
    The Nvidia LAN is included with the NF3 motherboard driver:
    I would rec 5.10, since there are some having LAN problems with the later 5.11.
    http://www.nvidia.com/object/nforce_udp_winxp_archive.html
    Here´s the Realtek GigaLAN driver (could be a bit difficult to find on the Download page, because it´s placed under "Archived"
    http://www.msi.com.tw/program/support/download/dld/spt_dld_detail.php?UID=607&kind=1
    Follow what bejon say and used driver 5.10.

  • Noob Needs Help with File Size

    I created a simple form with no graphics, fonts are not embedded, and I selected the file to be filled out, printed, then mailed. The file size is 21MB. The form is to be emailed so it must be much smaller in size. Once received, the user will fill it out electronicly, print the form, then mail it back to me regular postal mail. Why is the file size so large and how can I make it smaller? Thanks in advance.
    Kevin

    OK. Here's what I did:
    1. At the welcome screen I selected "New Form" and then "New Blank Form"
    2. For the page size I left it at "Default" which is 8.5 x 11.
    3. For Return Method I selected "Fill then Print".
    4. At the last screen I just clicked "OK".
    5. Then I built the form. I put in (9) Text boxes, (4) Text Fields that look like Sunken Boxes, (5) Numeric Fields that look like Sunken Boxes, and (3) Check Boxes that look like Sunken Boxes.
    6. I then saved the file as a Static PDF Form File.
    7. The file size is 22.5 MB.
    That was my second attempt. The first attempt I had the fonts embedded and I had a Logo on the form. The file size for that one was 27.3 MB.
    Thanks for the help.
    Kevin

  • Noobie needs help with drawPanel

    yo, I got this here source, and its gunna make a game, but I need to know how to make an image that can be posted on a drawPanel. I know I need
    super.paintComponent(g);
    then I need to make an image object that I can put in a drawPanel,
    ????? ImageIcon icon = ImageIcon("TopNinjaFrontStill.gif"); ?????
    then I need to display the image
    g.drawImage(Image, x, y, ImageObserver observer);
    but it doesn't work,
    Please help a newbie in distress, if you can make sense of what I'm trying to say.

    BAH! heres my source,
    //RPG Class
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.Icon;
    import java.awt.event.*;
    public class RPG extends JFrame implements ActionListener
      JLabel gameText, HP, NP;
      JPanel bigPanel, gameStats, gameStatsTop, gameStatsBottom;
      JPanel flr1, flr2, flr3, flr4, flr5;
      JButton w, a, s, d;
      DrawPanel gameWindow;
      //Start variables for the game
      int[][] town1 =
        {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
        {1,0,0,0,1,0,0,0,1,0,0,0,0,0,1},
        {1,1,1,1,1,0,0,0,1,0,0,0,0,0,1},
        {1,0,0,0,1,0,0,0,1,0,0,1,0,0,1},
        {1,1,0,1,1,0,0,0,1,0,0,0,0,0,1},
        {1,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
        {1,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
        {1,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
        {1,0,0,0,0,0,0,0,1,0,0,0,0,0,1},
        {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}
      int x = 3;
      int y = 3;
      int mapX = 0;
      int mapY = 0;
      // End variables for the game
      public static void main(String[] args)
        RPG asdf = new RPG();
        asdf.setSize(400,300);
        asdf.setVisible(true);
        asdf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      public RPG()
        //JOptionPane.showMessageDialog(this, "OINKS AND NINJAS RED", "Oinks and Ninjas Red", JOptionPane.QUESTION_MESSAGE);
        setTitle("Oinks and Ninjas");
        bigPanel = new JPanel();
        bigPanel.setLayout(new BorderLayout(5,5));
        //Start of East
        gameStats = new JPanel();
        gameStats.setLayout(new GridLayout(2, 1, 0, 5));
          //Start of Top
          gameStatsTop = new JPanel();
          gameStatsTop.setLayout(new GridLayout(4, 1, 0, 5));
          HP = new JLabel("HP: 100/100");
          NP = new JLabel("NP: 100/100");
          gameStatsTop.add(HP);
          gameStatsTop.add(NP);
          // End of Top
          //Start of Bottom
          gameStatsBottom = new JPanel();
          gameStatsBottom.setLayout(new GridLayout(2, 3, 0, 0));
            //Start of Movement Buttons
            flr1 = new JPanel();
            flr2 = new JPanel();
            w = new JButton("W");
            a = new JButton("A");
            s = new JButton("S");
            d = new JButton("D");
            w.addActionListener(this);
            a.addActionListener(this);
            s.addActionListener(this);
            d.addActionListener(this);
            w.setMnemonic('W');
            a.setMnemonic('A');
            s.setMnemonic('S');    
            d.setMnemonic('D');
            gameStatsBottom.add(flr1);
            gameStatsBottom.add(w);
            gameStatsBottom.add(flr2);
            gameStatsBottom.add(a);
            gameStatsBottom.add(s);
            gameStatsBottom.add(d);
            // End of Movement Buttons
          // End of Bottom
        gameStats.add((gameStatsTop),BorderLayout.NORTH);
        gameStats.add((gameStatsBottom),BorderLayout.SOUTH);
        // End of East
        //Start of Center
        gameWindow = new DrawPanel();
        // End of Center
        //Start of South
        gameText = new JLabel("the location on the matrix [2][3] is " + town1[2][3] + ".");
        // End of South
        //Start of Initialize Everything
        bigPanel.add((gameText),BorderLayout.SOUTH);
        bigPanel.add((gameWindow),BorderLayout.CENTER);
        bigPanel.add((gameStats),BorderLayout.EAST);
        getContentPane().add(bigPanel);
        // End of Initialize Everything
      public void actionPerformed(ActionEvent e)
        if (e.getSource() == a)
          if (town1[y][x-1] == 0)
          System.out.println("left");
          x = x - 1;
          repaint();
        if (e.getSource() == d)
          if (town1[y][x+1] == 0)
          System.out.println("Right");
          x = x + 1;
          repaint();
        if (e.getSource() == w)
          if (town1[y-1][x] == 0)
          System.out.println("up");
          y = y - 1;
          repaint();
        if (e.getSource() == s)
          if (town1[y+1][x] == 0)
          System.out.println("down");
          y = y + 1;
          repaint();
    }//DrawPanel Class
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.Icon;
    public class DrawPanel extends JPanel
      public void paintComponent(Graphics g)
        super.paintComponent(g);
        ImageIcon map = new ImageIcon("TopNinjaFrontStill.gif");
        g.drawImage(map, 0, 0);
    }

  • Noob needs help with site creation -- interactive?

    I want to make a site where people can post and/or reply to other posts.
    I've used iWeb for a couple years so I'm good with "static" sites but how can I make one where people can post to the site themselves?
    For example, I write ::"what is your favorite rum when making a hurricane":: and a list of users/responses follows?
    Is that even possible?
    I'm using iWeb '09.
    Thanks,
    Jay

    Jay ~ Welcome to the discussions. You could link to a free forum you've set up here:
    http://www.lefora.com
    And to link to an external forum from iWeb's navigation bar:
    Link it to a blank internal page titled "Forum" (actually you can name the page whatever you want.) Then in that Forum page add an HTML Snippet with the following code:
    <script type="text/javascript">
    parent.window.location = "http://www.yourforumname.lefora.com"; // change this to your own URL
    </script>
    ...Once published, clicking on the Forum page in the navbar will immediately redirect to your external Forum page. (Thanks to Cyclosaurus for the code).
    Ning, the free "social networking" site, includes a forum:
    Add a rich single or multi-threaded discussion forum with categories, photos and attachments to your Ning Network. Limit forum topic creation to you or open it up to all of your members.
    http://about.ning.com/product.php

  • Flash noob needs help with simple and easy question on animation

    sorry if this is completely obvious, but Im having trouble and cant start my project until I figure it out. Basically whats happening is I create two keyframes (1 on frame 1 and the other on frame 10) on my mouth layer. In the first frame its normal and on the 10th frame its a different shape. But when I go out of that layer and into the previous layer overview (if that makes any sense), the change isnt there. Frame 1, all the way to frame 10, looks like frame 10 did on the mouth layer. Shouldnt the change be saved on the previous layer overview and shouldn't I be able to see the mouth change shapes? I havent ever had this problem so am i missing something? If this doesn't make any sense, I can provide some screen caps to visualize to you guys what I'm going off about.
    Thanks.

    You could be doing any number of things wrong. If the artwork on frame 1 is different from the artwork on frame 10, and each of these frames is a keyframe in the same layer, did you set a tween on the keyframe in frame 1? If the art is drawn directly to the stage in each keyframe, you should be using a shape tween. If the art in each keyframe is a symbol, then you should be using a classic tween in the first keyframe. In either case you can view the animation by dragging the playback head across the timeline, or, use the play button at the bottom of the timeline window.
    When you talk about the "previous layer overview", are you talking about moving from the editing window for a movieclip to the main timeline? If this is the case, then, if you edit a movieclip that is on the main timeline, you should see result of that edit when you play the main timeline. Or is it something else that you are doing?
    When you first start up Flash, there is a menu that lets you select what type of file you want to create. There is also a third column labeled "Learn". You may want to spend some time going through those tutorials.

Maybe you are looking for