Actionscript Help Needed Here!!

Swuut up
My Event Listener wont work once the thumb_mc has loaded the
jpg... with this line commented out
//thumb_mc.loadMovie("images/dj1.jpg"); it works !!...but then all
im looking at is an empty movieClip that acknowledges when its
being clicked! great but it would be even better if i could get the
same result with an image loaded into the movieClip..mmMM.
The Code is attatched. If someone can help me out id really
appreciate it.
thanx

While I'm not going to post the working code for you, I can certainly point you in the right direction.
Take a look at the class java.util.GregorianCalendar. It contains methods (some located in Calendar) to do manipulations with dates. You should be able to use the API to figure out how to create two GregorianCalendar objects... one with the current date, one with the due date. Once you've got those, there are plenty of methods to retrieve the day of the week, the date in the month, etc. which will guide you to calculating your answer.
Excluding the weekends is going to be the trickier part, but then again, that's why it's your homework assignment. Try to get some code punched out, and if you have problems, come back here and post an exact problem, and someone will help out.

Similar Messages

  • Publishing/actionscript help needed

    Okay, first time poster and this is a complete newb cry for help:
    I had someone create a template site for me that is pretty simple - a single swf that pulls resources from a directory of xml files and assets. In theory, I should be able to update the xml for my site and provide new assets. Simple.
    I'm not a total neophyte, i know some code and within the xml there are some <font> tags that over ride the swf's formatting or provide and href. Again simple.
    My problem is that I now have to update our logo, which is hard coded into the source .fla file, which I know how to get in and swap out (the guy who did the work is not available). My problem is, when I publish, the new swf with the new logo does not want to read the <font> tags anymore. I have tried everything and I can't crack this. I've narrowed it down to two possibilities:
    1. Something in the Publish settings, though I've tried every conceivable variation to no avail.
    2. Something in the .as file that defines page template.
    I know I need to provide more info but this is a start. I'm working on a Mac (as was the coder) and we were both using CS4.
    Thanks for any and all help/direction.

    If your in the .fla, and you are simply swapping one symbol in the manner that your speaking, I would probably do a couple things, first I would make sure that the logo your swapping is the same type of object/symbol, same size is good, and then I would backup a copy of the original, and then delete the logo symbol and bitmap, import and name the new logo image the exact same as the other, and then convert it to a symbol with the exact same name as original, then either drag it to the stage in the layer and position it should be with the exact same instance names.
    I'm thinking in terms of a currently working product that I don't want to recode. So simply by taking a working one, and doing absolutely nothing more than changing the object, with everything identical, the code should do what it did before because all the actionscript instances, objects, var, event, and function names are identical, and therefore should use the proper instances at runtime.
    I think.

  • Actionscript Help Needed

    So this is how it goes...I've already made my website, I have
    all the pages and everything made BUT...I have a few bugs. The
    first starts at my login page, it is a universal login, so it has 2
    usernames and passwords, I have the code for it but, It does not go
    when I press the submit button. The next is when I get to my actual
    website, all the webpages but one are all in different scenes. I
    type in the code: on (press) {gotoAndPlay ("1","Corp") ; } but it
    just goes the scene up next. I have no clue what is wrong here. I
    also have a flaw with my loading page, whether than just loads fast
    or not, the loading movie does not loop until the movie is loaded.
    This page is also part of the movie. Can anyone help? The web
    address is:
    http://www.freewebs.com/cliop/
    The code I am using on the button in my intro is:
    on (press) {
    if (username == "Cliop" or username == "X844495") {
    if (password == "*********" or password == "*********") {
    if (username== "Cliop" & password== "*********" or
    username== "X844495" & password== "*********") {
    gotoAndPlay("1", "Main");

    there's an actionscript forum for your issue. Better chance
    of getting help there.
    --> **Adobe Certified Expert**
    --> www.mudbubble.com
    --> www.keyframer.com
    Cliop wrote:
    > So this is how it goes...I've already made my website, I
    have all the pages and
    > everything made BUT...I have a few bugs. The first
    starts at my login page, it
    > is a universal login, so it has 2 usernames and
    passwords, I have the code for
    > it but, It does not go when I press the submit button.
    The next is when I get
    > to my actual website, all the webpages but one are all
    in different scenes. I
    > type in the code: on (press) {gotoAndPlay ("1","Corp") ;
    } but it just goes the
    > scene up next. I have no clue what is wrong here. I also
    have a flaw with my
    > loading page, whether than just loads fast or not, the
    loading movie does not
    > loop until the movie is loaded. This page is also part
    of the movie. Can anyone
    > help?
    >

  • Actionscript help needed for website

    Hey everyone,
    I am just beginning to learn the basics of creating web sites in flash. I posted this in site design a while ago, but no one has responded yet and I need help asap.
    I have been following a tutorial and have it done pretty well, but they only cover one main button, and I am at the point where I need several more, but I am doing something wrong.
    The tutorial is at this page: http://www.flash-game-design.com/flash-tutorials/advancedWebsite-flash-tutorial- 3.html
    You can skip to the end and download the .fla if you want.
    What I want to do specifically is to add probably 4 other main buttons that can also have drop down menus. Please be as specific as possible because the extent of my code knowledge isn't very far.
    Thanks in advance
    The code for the main page is as follows:
    menu = ["About", "Bio", "Contact"];
    this.createEmptyMovieClip("content", 1000);
    this.attachMovie("sectionBackground","mask",1001);
    mask._y = content._y=208;
    mask._x = target=68;
    content.setMask(mask);
    content._x = -1000;
    imageScrollSpeed = 5;
    xStart = 125;
    yStart = 51;
    bWidth = 79;
    bHeight = 17;
    interval = 50;
    countDown = menu.length;
    menuOpen = false;
    theTime = 0;
    buttonScrollSpeed = 2;
    for (var i = 0; i<menu.length; i++) {
    var section = content.attachMovie("section_"+menu[i], "section_"+menu[i], i+100);
    section._x = section._width*i;
    var b = this.attachMovie("subButton", "subButton"+i, countDown);
    countDown--;
    b.stop();
    b._x = xStart;
    b._y = ySwtart;
    b.interval = interval*i;
    b.target = yStart+(bHeight*i);
    b.txt = menu[i];
    b.pos = target+(i*-section._width);
    b.onPress = function() {
      target = this.pos;
      closeMenu();
      this.gotoAndStop(1);
    b.onRollOver = function() {
      this.gotoAndStop(2);
    b.onRollOut = function() {
      this.gotoAndStop(1);
    b._visible = false;
    function closeMenu() {
    for (var i = 0; i<menu.length; i++) {
      var b = this["subButton"+i];
      b._visible = false;
      b._x = xStart;
      b._y = yStart;
    menuOpen = false;
    mainButton.onPress = function() {
    if (!menuOpen) {
      theTime = getTimer();
      menuOpen = true;
      for (var i = 0; i<menu.length; i++) {
       _root.main["subButton"+i]._visible = true;
    } else {
      closeMenu();
    mainButtoncopy.onPress = function() {
    if (!menuOpen) {
      theTime = getTimer();
      menuOpen = true;
      for (var i = 0; i<menu.length; i++) {
       _root.main["subButton"+i]._visible = true;
    } else {
      closeMenu();
    function scrollButtons() {
    if (menuOpen) {
      for (var i = 0; i<menu.length; i++) {
       var b = this["subButton"+i];
       if ((theTime+b.interval)<getTimer()) {
        b._y += (b.target-b._y)/buttonScrollSpeed;
    this.onEnterFrame = function() {
    content._x += (target-content._x)/imageScrollSpeed;
    scrollButtons();

    That's all AS2 code, so you'll be beter off posting in the AS2 forum.

  • Website Actionscript Help Needed

    So this is how it goes...I've already made my website, I have
    all the pages and everything made BUT...I have a few bugs. The
    first starts at my login page, it is a universal login, so it has 2
    usernames and passwords, I have the code for it but, It does not go
    when I press the submit button. The next is when I get to my actual
    website, all the webpages are all in different scenes. I type in
    the code: on (press) {gotoAndPlay ("1","Corp") ; } but it just goes
    the scene up next. I have no clue what is wrong here. I also have a
    flaw with my loading page, whether than just loads fast or not, the
    loading movie does not loop until the movie is loaded. This page is
    also part of the movie. Can anyone help? The web address is:
    http://www.freewebs.com/cliop/
    The code I am using on the button in my intro is:
    on (press) {
    if (username == "Cliop" or username == "X844495") {
    if (password == "*********" or password == "*********") {
    if (username== "Cliop" & password== "*********" or
    username== "X844495" & password== "*********") {
    gotoAndPlay("1", "Main");

    I've tried a new code for my submit button:
    on (press) {
    if (username === "Cliop" or username === "X844495"); {
    if (password === "moocowman" or password === "shadowman"); {
    if (username === "Cliop" & password === "moocowman" or
    username === "X844495" & password === "shadowman"); {
    gotoAndPlay("1", "Main");
    else on (press){
    if (username !== "Cliop" or username !== "X844495"); {
    if (password !== "moocowman" or password !== "shadowman"); {
    if (username !== "Cliop" & password !== "moocowman" or
    username !== "X844495" & password !== "shadowman"); {
    stop();
    I still have problems, I type in the right username &
    password, yet I don't enter the website. It keeps giving me this:
    **Error** Scene=Intro, layer=otherpages, frame=212:Line 11: 'else'
    encountered without matching 'if'
    else on (press){
    Can anyone help me? I'm also still having problems with the
    navigation.

  • JAVA + MYSQL + ACCESS + ENCODING!!! help needed here!!!!

    i have to migrate some data from access to mysql. however, i have some japanese characters in the access table and whenever i am done w/ migration and open the mysql table, i see bunch of ?????? instead japanese character. since im now working for a japanese company, this pc is in japanese eviorioment.
    i set mysql table to use utf8. does anyone here know whats going wrong? i guess there is something to do w/ encoding stuff. please help!!!
    here is some more information:
    java1.5.1, access2003, mysql5.1 and japanese xp

    This is the third thread you have opened on the same problem within the last couple of days, and you have not provided any more information than in the first one that would let people figure out what you are doing and thus help you.
    In the first thread you opened it seems you had gotten to the point of realizing that you couldn't insert Japanese characters correctly in your mysql database, right? So it seems that the problem is simply with your mysql configuration and/or the way you interact with it from Java.
    So, to narrow the problem down further:
    1. Can you insert Japanese directly into mysql (not from Java) and get them rendered correctly? That would indicate your DB is configured correctly.
    2. What is the code you use to insert Japanese characters into mysql? (start with hardcoded Japanese, don't mix the Access migration into this yet)

  • CSS help needed here!!

    Have a look the blue column headers at www.optionetics.com,
    which have white text on top. (Learn about Options Trading, Today's
    Market Commentary, Featured Articles) etc.
    We want to create something similar for the column headers on
    the homepage at www.investix.co.uk for the 2 centre columns. Is
    there a snippet of CSS code that I can use to create this blue
    column header?

    Hi.
    As Walter said in that page the H2 element have been styled
    with a
    background image. The background image they are using is
    here:
    http://www.optionetics.com/images/hd-bg.gif
    So you will have an idea.
    For get the same effect in your page, would be:
    The ccs code:
    .column2-unit-left h3 {
    color: #fff;
    font-size: 100%;
    background: transparent url(here the background image)
    no-repeat;
    padding: 2px 6px 1px;
    border-bottom: 2px solid #3c3;
    margin: 0 0 6px;
    As you have two column the right column would be as the above
    but with
    .column2-unit-right h3.
    the html code would be:
    <div class="column2-unit-left">
    <h3><a href="stocks_foundation.html">Stocks
    Foundation
    Program</a></h3>
    <p><img src="multiflex3/img/new
    imgs/rader_watching_trading_screen.jpg" alt="" height="56"
    width="85"
    border="0" />Learn the principles every investor should
    know</p>
    <hr noshade="noshade" size="1" />
    Play with the colors, the margins, the paddings till you get
    final desired.
    "HYPER83" <[email protected]> escribió
    en el mensaje de noticias
    news:gaoit9$n9h$[email protected]..
    > Have a look the blue column headers at
    www.optionetics.com, which have
    > white
    > text on top. (Learn about Options Trading, Today's
    Market Commentary,
    > Featured
    > Articles) etc.
    >
    > We want to create something similar for the column
    headers on the homepage
    > at
    > www.investix.co.uk for the 2 centre columns. Is there a
    snippet of CSS
    > code
    > that I can use to create this blue column header?
    >
    >
    >

  • Help needed here.........

    hi , i want to display a progress bar in the client in a jsp file, after i had submitted a file to server.... that progress bar should be displayed untill the server responds..........
    plese provide some code if possible

    The java code in a JSP page is interpreted on the server, before the page is loaded into the browser on the client. My suggestion is that what you wish to achieve can be accomplished with javascript/DHTML.
    And in the future, please use descriptive subject headings. This helps others who can benefit from this thread.
    Message was edited by: nantucket
    nantucket

  • OnRollOver actionscript help needed

    Hi,
    I want to insert an actionscript that when the user rolls
    over an item, a movie clip shows up on screen at specific x and y
    positions. I have only basic knowledge of flash actionscripting and
    would appreciate any support. If someone could give me a basic
    outline of the code, then I will probably be able to complete the
    code myself.
    Many Thanks
    David Kelly.

    try:

  • Actionscript help needed with getting Next Page to work

    I just have a simple question (hopefully).
    Question is:
    I have a web page that displays a flash file that zooms and
    pans, but I cant get the Next Page link to display. (will also want
    1st, last and previous page)
    1. Can the next page work and load the next or previous
    numbered file?
    2. Does it have to have all pages in one file, then it calls
    the next frame?
    Snippet below, or I can e-mail example files.
    Please help, Thank you, Mike
    ============SNIPPET==========
    <!--[if IE]>
    <object id="movie" type="application/x-shockwave-flash"
    width="300" height="500">
    <param name="movie" value="1.swf">
    </object>
    <![endif]--><!--[if !IE]> <-->
    <embed name="movie" type="application/x-shockwave-flash"
    src="1.swf" width="300" height="500">
    </embed>
    <!--> <![endif]-->
    <form name="f" onsubmit="return false;">
    <button name="button" onclick="next()">Next
    Page</button>
    <button onclick="zoom()">Zoom In</button>
    <button onclick="zoom2()">Zoom Out</button>
    <button onclick="pan()">Pan</button>
    <button onclick="setzoomrect()">Rect</button>
    </form>
    function next() {
    var flash = window.movie || document.movie; // Get Flash
    object.
    flash.Zoom(50);

    Use the same method you are currently using. The Zoom and Pan
    methods just happen to be exposed to the ActiveX control and
    Plug-in. So to use the the GotoFrame() method for example, just
    change your code from:
    function next() {
    var flash = window.movie || document.movie; // Get Flash
    object.
    flash.nextpage();
    To this:
    function next() {
    var flash = window.movie || document.movie; // Get Flash
    object.
    flash.GotoFrame(20); // This will jump to frame 19 of your
    main timeline.
    It goes to frame 19 because the method you are using is
    zero-based. Meaning to get to the first frame of your movie you
    would pass the number zero.
    To use the TCallLabel() method it would look like this:
    function next() {
    var flash = window.movie || document.movie; // Get Flash
    object.
    // to target the main timeline, use
    flash.TCallLabel("/", "labelName");
    // to target a movieclip on the main timeline use:
    flash.TCallLabel("/MovieClip", "lableName");
    Also, just so you know. These methods are getting antiquated.
    To keep up with the current versions and methods of communicating
    between JS and Flash you should really look into the
    ExternalInterface class in Flash 8.
    Tim

  • SIMPLE Help needed here, pause needed

    Hai,
    I am displaying text in a window using drawstring, and on a button click, the text should fade out, i have tries it out, but i am not getting the fading effect, please help............where have i gone wrong ?
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class tmp  implements ActionListener
    static JWindow window;
    static JPanel panel;
    JButton go = new JButton("go");
    static  int ff = 255;
    public static void main(String Args[])
      tmp obj = new tmp();
    public tmp()
      Dimension screen   = Toolkit.getDefaultToolkit().getScreenSize();
      window = new JWindow();
      drawtext dwtxpanel = new drawtext();
      dwtxpanel.setOpaque(false);
      go.setBounds(200,250,50,20);
      go.setOpaque(false);
      go.setActionCommand("gobtbutton");
      go.addActionListener(this);
      window.getContentPane().add(go);
      window.getContentPane().add(dwtxpanel);
      window.setLocation((screen.width - 700)/2,(screen.height - 500)/2);
      window.setSize(700,500);
      window.setVisible(true);
    public void actionPerformed(ActionEvent evt)
      if (evt.getActionCommand().equals("gobtbutton"))
       for(int k =0; k<20; k++)
        tmp.ff = tmp.ff - 10;
        try
         Thread.sleep(100);
        catch(Exception e)
        window.repaint();
    class drawtext extends JPanel
    Dimension screen   = Toolkit.getDefaultToolkit().getScreenSize();
    public void paint(Graphics g)
      Graphics2D g2d = (Graphics2D)g;
      g2d.setColor(new Color(255,255,255,tmp.ff));
      g2d.setFont(new Font("Impact",Font.PLAIN,35));
      g2d.drawString("Fade example",10,90);
    }

    after desimating your code..... I still couldn't get it to work. but i did get it to call the paint function during the for loop.....
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class tmp  implements ActionListener
    static JWindow window;
    static JPanel panel;
    JButton go = new JButton("go");
    static  int ff = 255;
    drawtext dwtxpanel;
    public static void main(String Args[])
      tmp obj = new tmp();
    public tmp()
      Dimension screen   = Toolkit.getDefaultToolkit().getScreenSize();
      window = new JWindow();
      dwtxpanel = new drawtext();
      dwtxpanel.setOpaque(false);
      go.setBounds(200,250,50,20);
      go.setOpaque(false);
      go.setActionCommand("gobtbutton");
      go.addActionListener(this);
      window.getContentPane().add(go);
      window.getContentPane().add(dwtxpanel);
      window.setLocation((screen.width - 700)/2,(screen.height - 500)/2);
      window.setSize(700,500);
      window.setVisible(true);
    public void actionPerformed(ActionEvent evt)
      if (evt.getActionCommand().equals("gobtbutton"))
       for(int k =0; k<25; k++)
        ff = ff - 10;
              double theTime = System.currentTimeMillis()+300;
               while(theTime-System.currentTimeMillis()>0)
                    //repeat :D
        dwtxpanel.paint(dwtxpanel.temp);
        window.validate();
        window.repaint();
        //dwtxpanel.update(dwtxpanel.temp);
    class drawtext extends JPanel
         Graphics temp;
         Graphics2D g2d;
    Dimension screen   = Toolkit.getDefaultToolkit().getScreenSize();
    public void paint(Graphics g)
         temp = g;
         System.out.println("bla"+tmp.ff);
      g2d = (Graphics2D)g;
      g2d.setColor(new Color(tmp.ff,0,0,255));
      g2d.setFont(new Font("Impact",Font.PLAIN,35));
      g2d.drawString("Fade example",10,90);
    }I know i had this sort of problem of changing but not updating in a card game i made. so i'll try find it.

  • HELP NEEDED PLEASE

    Hi everyone
    Programming help needed here. Any advice would be greatly appreciated!!!
    I have been assigned some work for a program called Processing 1.0 availale at http://processing.org/download
    I was give the 9 individual programs I needed to make however they were converted to Java files from .pde files. The program is based on Java but only runs .pde files and NOTHING else!
    I decompiled the files and got the source code, but it is a slight variation of the original someone made in processing, and needs some tidying to get it to run.
    I think the programs are very simple for a programmer, although I AM NOT.
    CODE is BELOW
    // Decompiled by DJ v3.10.10.93 Copyright 2007 Atanas Neshkov Date: 02/05/2009 13:15:00
    // Home Page: http://members.fortunecity.com/neshkov/dj.html http://www.neshkov.com/dj.html - Check often for new version!
    // Decompiler options: packimports(3)
    // Source File Name: Assign2_1.java
    import processing.core.PApplet;
    public class Assign2_1 extends PApplet
    public Assign2_1()
    SquareSide = 20;
    Rank = Nums.length;
    Side = SquareSide * Rank;
    Green = color(0, 255, 0);
    Yellow = color(255, 255, 0);
    BG = Yellow;
    public void setup()
    size(Side, Side);
    background(BG);
    fill(Green);
    for(int i = 0; i < Rank; i++)
    rect(i * SquareSide, 0.0F, SquareSide, SquareSide * Nums);
    public static void main(String args[])
    PApplet.main(new String[] {
    "--bgcolor=#ece9d8", "Assign2_1"
    int Nums[] = {
    6, 14, 8, 9, 2, 3, 4, 2, 8, 3,
    9, 2, 0, 5
    int SquareSide;
    int Rank;
    int Side;
    int Green;
    int Yellow;
    int BG;
    Edited by: chevy1 on May 2, 2009 7:32 AM

    HELP NEEDED PLEASEShouting is a good way ensure you don't get help. Also you should give a meaningful subject.
    Any advice would be greatly appreciated!!!I suggest you ask a question after providing enough information to be able to answer it.
    Also use CODE tags when posting code as it make the code more readable.
    We are more likely to help people who are trying to learn Java rather than someone who might be looking for an easy way out of doing an assignment.

  • T400 - Accidentaly formatted the disk 1 (IMD-0) partition in disk management - Help Needed

    Hello,
    Initially when I re-formatted my computer to get rid of the factory image, I found that there was a hidden partition of 1.37GB which I could not touch, meaning i could not delete. I ignored it at that time and formatted my computer and reinstalled vista business on it using the license i got from lenovo. Now after some days, I was kind of getting concerned as to what exactly was the 1.37Gb partition on my computer. I guess I was getting worried as to why I was not able to reclaim that space for normal use. Today, I tried to reclaim it, by deleting the volume, thinking it should merge into the unallocated space, that I have on my primary hard drive. But it did not. However, what happened was that this space of 1.37GB did start showing up on My Computer, once I formatted it using NTFS. I then checked its properties in My Computer and it had an option of readyboost. I selected the option which says use this disk for readyboost, and immediately in no time, the disk was full with on 68MB remaining as free space. It also has an icon of readyboost in the drive, when I double-click it. This is when I figured that this space could be on a separate physical disk. I did some research and found out that this drive or device or chip, is listed as Disk-1 in disk management and as IMD-0 under Disk Drives in Device Manager. I googled about it, and found that it was related to the turbo memory. Now, I believe that turbo memory would be a separate flash chip, which would be hardwired to function in a particular way (enabling boosting speeds), and that it would be non-accessible to users from within windows for formatting or doing anything else. Hence, I also believe that the space which I reclaimed, is existing on my primary 320GB hard drive and is used in addition to the turbo memory, as a  cache, to boost speeds. However, since I do not understand the turbo memory concept very well, I would really appreciate if someone could explain how the turbo memory works, i.e. including IMD-0 and all that. And the main help I need is on how to hide the 1.37GB partition again, and put it in a format that it was earlier in, and usable for turbo memory. At present I do not know if it is being used by turbo memory or not, but below is the current status of the turbo memory:
    1. In Device manager, under disk drives, IMD-0 shows up, and in properties it just says device type -- disk drive. Now I read somewhere that it should say NVCACHE, but it does not say that on my pc, under any tabs of the properties of IMD-0. Can someone help me putting it back there.
    2. Under Disk Management, it says Local Disk H:, 1.37GB NTFS, Healthy (Active, Primary Partition). I don't exactly remember, but I guess prior to me formatting it, it said unallocated. Help needed here too.
    3. In the Turbo memory controller, it says Windows readyboot enabled, Windows Readydrive enabled, 2GB
    and below that I have checkboxes for enabling windows readyboost and readydrive checked.
    So guys, can please anyone help me in re-hiding the 1.37GB partition and making it in the state it was before.
    Thanks a lot for your help.

    Hi Eric,
    Please refer the following HP article to expand your array , refer the TechNet article to expand your drive:
    HP Proliant Servers - How to Expand an Array and Extend the Logical Drive
    http://h20566.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/mostViewedDisplay/?javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken&javax.portlet.prp_efb5c0793523e51970c8fa22b053ce01=wsrp-navigationalState%3DdocId%253Demr_na-c03510253-1%257CdocLocale%253Den_US&javax.portlet.tpst=efb5c0793523e51970c8fa22b053ce01&sp4ts.oid=4231377&ac.admitted=1411638027623.876444892.199480143
    TechNet article:
    Extend System/Boot Volume on Windows Server 2008/ Windows Vista/Win7 Beta
    http://blogs.technet.com/b/mghazai/archive/2009/02/24/extend-system-boot-volume-on-windows-server-2008-windows-vista-win7-beta.aspx
    Extend a simple or spanned volume
    http://technet.microsoft.com/en-us/library/cc776741.aspx
    I’m glad to be of help to you!
    *** This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control
    these sites and has not tested any software or information found on these sites; therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the
    use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet. ***
    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.

  • I deleted all my sync info, and I need it back I deleted it today by mistake please help me here.

    # I formatted my desktop
    # I install Firefox
    # I tried the Firefox sync option so I can restore my stuff
    # And it's asked me for a username & password, So I used my username and password but I stopped when it asked me for a recovery key that I don't have so I create a new one.
    # That when I lost all my bookmarks passwords... etc
    please help me here I need my stuff back ASAP

    Sorry, when you create a new Sync Key your data is erased from the Sync server and there are no backups made to the Sync server.

  • My friend needs help with her ipod

    My friend needs help with her Ipod. Here's what happened. She connected her Ipod to a casette adapter and the ipod just froze. She started doing the reset but to no avail. What do you think cause this? She really needs help so if anyone can suggest what to do that would be greatly appreciated.
    I don't specifically know her ipod but I think that it is the Ipod 30gb.

    Welcome to Apple Discussions!
    She needs to reset her iPod by holding down Menu and Select for 6-10 seconds...
    Resetting iPod
    It may take several attempts. The above link also has "tips" if the iPod does not seem to be resetting.
    If she has tried many times, along with the "tips" and the iPod still won't reset, then she will have to wait for the iPod's battery to die and then she can charge it back up and it should work fine. The iPod should reset though.
    btabz

Maybe you are looking for

  • Time capsule Hard drive mounting

    With multable users logged on to a single laptop. Only one user can see time capsule Hard drive content .  you have to log other users off., or de-mount the time capsule of the other users. this seems not right. Why

  • My iLife'11 has no iWeb...

    My new iMac didn't come with iWeb installed on it.  And when I go to the App store, it can't be loaded from there.  I don't understand.  This is my first Mac. Thanks for your help.

  • ASControl JNDI Browser not displaying the JNDI tree (10.1.3.2)

    We're running OC4J 10.1.3.2 on JDK 1.5.0_06 We have a problem that when we try to access the JNDI Browser on any of the instances that we have created, the JNDI Browser always displays "No Properties Found". I have created an instance named "web" and

  • SAP GRC AC 5.3 (CUP) connecting to module of R/3 (HR)

    Hello, I have a problem. I want to monitor from the SAP GRC AC 5.3 (CUP) some event or activation or trigger when someone create or does some modificaction to an employee from the module HR. Maybe from the Tcode PA20, AP30 or PA40. IS there a "how to

  • Pages for IPad- How do I set a hanging indentation?

    I am making a reference page and need to indent the second line, but not the first. Is there any way to do this on pages for the iPad?