Help with flash

Here's the link:
http://www.oldshoecreative.com/KnexGen/convergence_alignment.htm
I've placed a flash animation on this page put it won't play.
It plays when I test it on my local machine. Help me please.

Hmmm, a quick looks shows your JS is actually at the same
level, but it appears you are calling it one level up.

Similar Messages

  • Need help with Flash CS4 buttons/can't get buttons to control anything

    Hello,
    I need help with Flash CS4. I am making a banner with an animation (Image change into movie clip "3D Spiral") and added buttons but I cannot get the buttons to control the animation. Please help I am frustrated! If someone could help I would be most appreciated.

    Thank you.
    Regards,
    Michael J. Sheehan  allelois
    Date: Mon, 17 Aug 2009 18:48:09 -0600
    From: [email protected]
    To: [email protected]
    Subject: Need help with Flash CS4 buttons/can't get buttons to control anything
    Hi there
    I'm not sure how you wound up where you did. But you wound up in the Adobe Captivate forums. Please stand by as I move your thread to the Flash forums.
    Cheers... Rick
    >

  • Still need help with flash player download

    I'm still having a problem with the flash player, please read my last post below:
    "I've tried everything here & still can't download the flash player. Anytime I try to download it asks me to install ADM add-on and then when I click on that, my computer freezes. How do I enable this add-on without my computer freezing? Can anyone help pls?"

    Thanks a lot for your help, it is truly appreciated.
    Date: Thu, 29 Oct 2009 18:52:38 -0600
    From: [email protected]
    To: [email protected]
    Subject: Still need help with flash player download
    You can set Flash Player to check for updates on the Global Settings Manager panel:
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager05.htm l
    >

  • Help with flash video buffering

    I need help with flash video buffering. I've created a
    buffering graphic to show up when the clip is loading. The problem
    that I'm having is that when the video finishs playing, the buffer
    is empty and the graphic pops back on. The following is the code
    that I'm using to call and buffer the video. Any help would be
    great!
    stop();
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    ns.setBufferTime(10);
    ns.onStatus = function(info){
    if(info.code == "NetStream.Buffer.Full"){
    bufferClip._visible = false;
    if(info.code == "NetStream.Buffer.Empty"){
    bufferClip._visible = true;
    if (info.code == "NetStream.Stop") {
    bufferClip._visible = false;
    theVideo.attachVideo (ns);
    ns.play("my_clip.flv");
    rewindButton.onRelease= function(){
    ns.seek(0);
    playButton.onRelease= function(){
    ns.pause();
    }

    Again thank you for your help in advance...
    I put the script folder into the root. As far as the .flv
    file it is showing up as being "put" to my web server. when i
    checked the root folder it is there. again i am having the same
    problem.. the local view works but when i check it on the web it
    just shows that there should be a flash video there but it does not
    show up.
    i created a new root for this test page the new link is..
    http://www.wfwa.org/TESTindexfolder/TESTindex.asp
    here are the files that are showing up in it...
    flashprojectwebvid.fla
    flashprojectwebvid.html
    flashprojectwebvid.swf
    PBSpromo.flv
    SteelExternalPlaySeekMute.swf
    TESTindex.asp
    and the Scripts folder
    thanks again for any help..

  • Help with Flash code in web page

    I have a Flash file in the masthead of my web site that shows
    a slideshow. I want to code the page so that if the viewer doesn't
    have Flashplayer, an alternative jpeg comes up in the masthead
    instead of the file with the flash slideshow. I'm afraid I'm new to
    most of this.... I'd very much appreciate help with the
    programming.
    Thank you!
    Here's the file:
    http://www.ewgaphilly.com/cs3index.html
    (the slide show isn't working at the moment -- a server issue). The
    alternate file I want to put in is:
    http://www.ewgaphilly.com/alternate_mast.jpg

    I'm sorry to be so dull on this, but I'd appreciate if you
    could tell me specifically which is the embed code (the codes in
    the <head>? What to I change here? I really appreciate your
    help.
    Here is what I get when I publish the movie and the open the
    html file:
    <!-- saved from url=(0013)about:internet -->
    <html lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>main_slideshow_philly</title>
    <script language="JavaScript" type="text/javascript">
    <!--
    // Globals
    // Major version of Flash required
    var requiredMajorVersion = 7;
    // Minor version of Flash required
    var requiredMinorVersion = 0;
    // Revision of Flash required
    var requiredRevision = 0;
    // the version of javascript supported
    var jsVersion = 1.0;
    // -->
    </script>
    <script language="VBScript" type="text/vbscript">
    <!-- // Visual basic helper required to detect Flash
    Player ActiveX control version information
    Function VBGetSwfVer(i)
    on error resume next
    Dim swControl, swVersion
    swVersion = 0
    set swControl =
    CreateObject("ShockwaveFlash.ShockwaveFlash." + CStr(i))
    if (IsObject(swControl)) then
    swVersion = swControl.GetVariable("$version")
    end if
    VBGetSwfVer = swVersion
    End Function
    // -->
    </script>
    <script language="JavaScript1.1"
    type="text/javascript">
    <!-- // Detect Client Browser type
    var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ?
    true : false;
    var isWin =
    (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true :
    false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ?
    true : false;
    jsVersion = 1.1;
    // JavaScript helper required to detect Flash Player PlugIn
    version information
    function JSGetSwfVer(i){
    // NS/Opera version >= 3 check for Flash plugin in plugin
    array
    if (navigator.plugins != null &&
    navigator.plugins.length > 0) {
    if (navigator.plugins["Shockwave Flash 2.0"] ||
    navigator.plugins["Shockwave Flash"]) {
    var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? "
    2.0" : "";
    var flashDescription = navigator.plugins["Shockwave Flash" +
    swVer2].description;
    descArray = flashDescription.split(" ");
    tempArrayMajor = descArray[2].split(".");
    versionMajor = tempArrayMajor[0];
    versionMinor = tempArrayMajor[1];
    if ( descArray[3] != "" ) {
    tempArrayMinor = descArray[3].split("r");
    } else {
    tempArrayMinor = descArray[4].split("r");
    versionRevision = tempArrayMinor[1] > 0 ?
    tempArrayMinor[1] : 0;
    flashVer = versionMajor + "." + versionMinor + "." +
    versionRevision;
    } else {
    flashVer = -1;
    // MSN/WebTV 2.6 supports Flash 4
    else if
    (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1)
    flashVer = 4;
    // WebTV 2.5 supports Flash 3
    else if
    (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1)
    flashVer = 3;
    // older WebTV supports Flash 2
    else if (navigator.userAgent.toLowerCase().indexOf("webtv")
    != -1) flashVer = 2;
    // Can't detect in all other cases
    else {
    flashVer = -1;
    return flashVer;
    // If called with no parameters this function returns a
    floating point value
    // which should be the version of the Flash Player or 0.0
    // ex: Flash Player 7r14 returns 7.14
    // If called with reqMajorVer, reqMinorVer, reqRevision
    returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer,
    reqRevision)
    reqVer = parseFloat(reqMajorVer + "." + reqRevision);
    // loop backwards through the versions until we find the
    newest version
    for (i=25;i>0;i--) {
    if (isIE && isWin && !isOpera) {
    versionStr = VBGetSwfVer(i);
    } else {
    versionStr = JSGetSwfVer(i);
    if (versionStr == -1 ) {
    return false;
    } else if (versionStr != 0) {
    if(isIE && isWin && !isOpera) {
    tempArray = versionStr.split(" ");
    tempString = tempArray[1];
    versionArray = tempString .split(",");
    } else {
    versionArray = versionStr.split(".");
    versionMajor = versionArray[0];
    versionMinor = versionArray[1];
    versionRevision = versionArray[2];
    versionString = versionMajor + "." + versionRevision; //
    7.0r24 == 7.24
    versionNum = parseFloat(versionString);
    // is the major.revision >= requested major.revision AND
    the minor version >= requested minor
    if ( (versionMajor > reqMajorVer) && (versionNum
    >= reqVer) ) {
    return true;
    } else {
    return ((versionNum >= reqVer && versionMinor
    >= reqMinorVer) ? true : false );
    return (reqVer ? false : 0.0);
    // -->
    </script>
    </head>
    <body bgcolor="#ffffff">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <script language="JavaScript" type="text/javascript">
    <!--
    var hasRightVersion = DetectFlashVer(requiredMajorVersion,
    requiredMinorVersion, requiredRevision);
    if(hasRightVersion) { // if we've detected an acceptable
    version
    var oeTags = '<object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="780" height="444"'
    + 'codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="main_slideshow_philly.swf"
    /><param name="quality" value="high" /><param
    name="bgcolor" value="#ffffff" />'
    + '<embed src="main_slideshow_philly.swf" quality="high"
    bgcolor="#ffffff" '
    + 'width="780" height="444" name="main_slideshow_philly"
    align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="
    http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    document.write(oeTags); // embed the flash movie
    } else { // flash is too old or we can't detect the plugin
    var alternateContent = 'alternate.giv';
    document.write(alternateContent); // insert non-flash
    content
    // -->
    </script>
    <noscript>
    // Provide alternate content for browsers that do not
    support scripting
    // or for those that have scripting disabled.
    Alternate HTML content should be placed here. This content
    requires the Macromedia Flash Player.
    <a href="
    http://www.macromedia.com/go/getflash/">Get
    Flash</a>
    </noscript>
    </body>
    </html>
    Here is my existing code in my home page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>EWGA Greater Philadelphia Executive Women's Golf
    Association</title>
    <style type="text/css">
    <!--
    @import url("/ewgacss.css");
    -->
    </style>
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    <style type="text/css" media="screen">
    <!--
    @import url("p7tbm/p7tbm_center_08.css");
    -->
    </style>
    <script type="text/javascript"
    src="p7tbm/p7tbmenu.js"></script>
    </head>
    some other stuff goes in here!!
    then...
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','780','height','444','title','EWGA
    Greater
    Philadelphia','src','/main_slideshow_philly','quality','high','pluginspage','
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','/main_slideshow_philly'
    ); //end AC code
    </script>
    <noscript>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    width="780" height="444" title="EWGA Greater Philadelphia">
    <param name="movie" value="/main_slideshow_philly.swf"
    />
    <param name="quality" value="high" />
    <embed src="/main_slideshow_philly.swf" quality="high"
    pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="780"
    height="444"></embed>
    </object>
    </noscript>

  • Need help with flash player installation please !!!!

    Hello,
    I need help with my flash player installation because every time I access a movie this is the message I receive. 
    This content on Xfinity TV is not available for viewing with Chrome's "Incognito" mode. To play this video using Chrome, please view this page without "Incognito" mode.
    Still having problems? Try resetting your Flash player license.

    Incognito mode is a Google Chrome setting when you open a new window (Cmd+Shift+N on a Mac Ctrl+Shift+N on Windows) It opens a "private" window with no cookies and no tracking. The problem with it is that when you disable cookies, your license files are not sent to the site (whetehr it's YouTube or xFinity or any other that uses license files for paid content)  and it treats you as if you're a first time visitor. Paid videos won't play wihtout the cookies sending the license file info.
    This isn't a Flash Player setting. It's in Chrome. I did some research and according to Google, "Incignito" mode is off by default, and can ONLY be activate by the keyboard shortcut. There IS a way to disable it from the registry http://dev.chromium.org/administrators/policy-list-3#IncognitoModeAvailability

  • Need help with flash templates in Mac...

    Hello,  I did some searches in the forum but found nothing.
    I have a problem.  I have a Mac and and using Dreamweaver CS5.5.
    Recently I download some templates with flash from Hostgator.
    The message I get is:   "This page contains some SWF objects that may not work properly in the most recent versions of Internet Explorer.  Dreamweaver cannot convert them to the new SWF markups.  Please delete each of them a insert again"
    Could you help me please?   
    Thanks,

    Hello,
    The support from HostGator.com told me this:
    After reading about Adobe Dreamweaver and using the library SWF objects. This seems to be a fairly particular error with Adobe Dreamweaver CS4.
    I have read three articles:
    http://forums.adobe.com/message/2958378?tstart=0
    http://www.dreamweaverclub.com/forum/showthread.php?t=33323
    http://www.vbforums.com/showthread.php?t=579625
    They all concur this error is completely ignorable in some way. If you include the object, and just ignore the message, your content will still upload to your site. This has to do with how adobe has changed the embedding of objects since previous versions.
    However, what I can concur from all of this is that you need to simply just re-add the file to your site/library, or just ignore the error message and the embed code should work just fine.
    I test a hostgator template with flash on their server, and works fine.
    I want to know your opinion.  T hanks for your help...

  • Firefox not helping with Flash problem

    Ok, so, I'm getting really irritated with Flash. I talked to
    a friend who was having flash problems and they said they
    downloaded Firefox and it fixed the problem. Well, after doing
    EVERYTHING else first, I thought, what the heck, maybe it might
    actually work. So I downloaded and installed Firefox. Ok, that
    installed perfectly fine. So I used Firefox to download Flash 9. I
    thought all was going to work out, because Firefox didn't just
    refresh the page like Internet Explorer did whenever I clicked the
    "Agree and download now" button on the download page. It actually
    downloaded and "said" it installed correctly. But I still can't
    play ANYTHING no Youtube STILL!! I go to youtube on Firefox and
    aperently it doesn't regonize any Flash on my computer. I go to
    youtube on Internet Ex. and it says I need the latest version of
    Flash. I tried rebooting the computer. I tried uninstalling and
    installing it AGAIN. What the F is the problem? I've made sure all
    my AxtiveX controlls are set to whatever thry need to be, my
    Shockwave is updated, my security is not interfearing. I'm getting
    really pissed. I've been trying to fix this problem for months
    now!! What else could be going wrong?? Is there something I haven't
    tried yet? Do I just need to get a new F-ing computer? Someone
    help!!

    Well the first thing you need to understand is this...
    Flash Player for Windows Internet Explorer is an ActiveX
    control.
    Flash Player for Windows for ALL other browsers is a plugin.
    They do the same thing ultimately, but they're separate
    downloads and on your machine they're actually seperate bits of
    software.
    So the reason that so many people have success with Firefox
    is that the Flash Player plugin seldom has install failures. But
    for IE Windows users the Flash Player activex control often has
    permission-related install failures that cause these kind of
    issues. It's unfortunate, but very, very complex and we've been
    fighting it for a long time.
    So the thing to remember is that when you're talking about
    Firefox, you're not dealing with ActiveX controls in ANY way.
    So here's the question.. When you launch JUST Firefox, and go
    to this page, what do you see?
    http://www.adobe.com/shockwave/welcome/
    Regards,
    Bentley Wolfe
    Senior Support Engineer, Flash/Flash Player/Digital Editions
    Adobe

  • Basic help with Flash v10 (creating a simple calculator)

    I have Adobe CS4 Pro with Flash v10.  I'm trying to create a simple, basic calculator that adds 2 numbers.  I followed the tutorial at http://layersmagazine.com/flash-design-calculator.html.  At first, I was unable to assign variables to any objects, but got that cleared up by selecting ActionScript 2.0 (was set to 3.0).  At this point, the calculator accepts the two numbers, but when I select the "add" button with the associated code as shown in the tutorial, nothing happens.  Does anyone have a suggestion as to what I might be doing wrong?  Thanks.

    This is all the code there is:
    on(release) {
    total = Number(firstnumber)+Number(secondnumber);
    There's really not an error--I just don't get any output.  I've created two 'Input Text' boxes, and on the properties tab for each I have defined the "Variable:" field as either 'Number(firstnumber)' or 'Number(secondnumber)'.  I've also created a 'Dynamic Text' box and defined the "Variable:" field as 'Number(total)'.
    Note:  the example I was following did not specify to include the 'Number()' function in the "Variable:" fields.  However, when I don't, and I run 'Test Movie', the 3 boxes are automatically filled with "_level0.firstnumber", "_level0.secondnumber" and "_level0.total".  When I type 2 numbers in to the 2 'Input Text' boxes, and then select my button that has the above code associated with it, I get "NaN" in the output ('Dynamic Text') box.
    Thanks again for your help!

  • Need help with flash player 9 on vista

    i need help with vista flash player 9 on vista, i play this
    game called neopets and it needs flash player to make some of it to
    work and ive tried to dowload flash player 9 about 25 times and it
    still doesnt work ive tried the 3 solutions on the suport center
    this link
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb401499&sliceId=1
    and still nothing can someone help please

    The player is out (they are up to version 9.0.16). Flash
    itself (the development tool) is in alpha and pretty buggy.
    Ernie

  • LEASE HELP WITH FLASH PLAYER 9.0

    I have tried and tried and tried and I cannot no matter what
    I do download flash player. I have googled it and searched and I
    cannot fix this. I cant view websites and my computer is constantly
    freezing because a box comes up telling me that it doesnt work.
    Well duh... Please help me I don't know what else to do??? By the
    way I have dont everything that the support website suggests
    atleast twice maybe three times and as I said I googled it so I
    tried other things also. HELP!!

    > He is using stopAllSounds to stop sounds that are in
    seperate swfs on an html page. I tested it, and it does not work.
    In my
    > tests
    > I put 3 swfs on an html page (not loaded into each
    other). On the third swf I have the stopAllSounds command. It stops
    only it's
    > own sound in the third swf but has no effect on one.swf
    and two.swf's sound.
    > The thing is I don't know if stopAllSounds ever worked
    across separated swfs before in players before version 9.
    > tralfaz
    I have confirmed his complaint. stopAllSounds works correctly
    across multiple swfs on an html page using Flash player 8 but not
    with Flash Player 9.
    Incidentally, there is another big "improvement" (they say)
    that prevents you from uninstalling the Flash 9 player without
    running
    their uninstaller exe. Unfortunately, their uninstaller
    uninstalls all flash player versions (not just version 9) from ALL
    browsers
    so if just want to remove player 9 from IE you are forced to
    also uninstall it from FireFox etc as well. Great, huh?
    tralfaz

  • Need help with Flash media server

    I am using XAMPP. Now i want to intall Flash media server. How can i configure my apache server to work with flash media server? I dont want to install the apache server coming along with flash media

    Hi,
    What excactly is the usecase you are trying here? Are using your external Apache to proxy your http traffic from FMS to it or do you want to use http streaming feature of FMS?
    If you want to proxy it then use the following document : http://help.adobe.com/en_US/FlashMediaServer/3.5_AdminGuide/WSE2A5A7B9-E118-496f-92F9-E295 038DB7DB.html
    Refer Configure HTTP proxying topic in the document.

  • Help with Flash Audio

    I am brand new to flash, and am needing to learn how to build
    a streaming audio player with Flash (or whatever might work
    better), very similar in nature to
    this audio player. Another
    example
    is here.
    Any help as to how I can begin to construct a player like
    that would be greatly appreciated!
    Thanks!

    Shipwreck7 wrote:
    > I am brand new to flash, and am needing to learn how to
    build a streaming audio
    > player with Flash (or whatever might work better), very
    similar in nature to
    >
    http://www.maxrichter.com.
    Another example
    http://www.haslinger.com.
    >
    > Any help as to how I can begin to construct a player
    like that would be
    > greatly appreciated!
    >
    http://www.kennybellew.com/tutorial/
    Very detail tutorials on Sound in flash, from basic stop/play
    to complex,
    dynamic players with all kind of bells and whistles
    Regards
    Urami
    Happy New Year guys - all the best there is in the 2006 :)
    <urami>
    http://www.Flashfugitive.com
    </urami>
    <web junk free>
    http://www.firefox.com
    </web junk free>

  • Help with flash installation

    I have tried everyway i can find to install the latest 'flash
    player' and for some reason once the installation dialogue box
    appears and i click "install" nothing happends. ive been trying
    from links aswell as directly from the official page and it still
    does not work. I am able to install other programs and such just
    not 'flash player'
    can anyone help with this problem as im highly confused.
    cheers
    Richie

    loysi wrote:
    > Hi!
    > I have a problem with the installation of Flash player 9
    ActiveX.
    > When I have completed the installation, a pop-up shows
    up, which says "Error!
    > Can't install
    C:\WINDOWS\system32\Macromed\Flash\Flash9.ocx, please contact
    > supporter" And that's what brings me to the question,
    what is the problem and
    > how do i fix it? Please answer!!!
    go to adobe.com/support/flash
    and look for installation troubleshooting
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Help with Flash Banner Opening on every page

    Hey guys I been trying to optimize my site abit. I seen on
    some new flash templates that when the flash banner opens the first
    time the browser will not call it again when clicking on new page
    links. I also seen the banner incorperated with an iframe so it
    only calls it once.
    Currently I have 6 .html pages each calling the flash banner
    every time their clicked. This is taking loading time whenever a
    user browses to a different page.
    my site is
    http://xpservers.net
    and another i created is
    http://energreenmetering.com
    Can someone help me out ?

    A 5.6MB file is way too big for a Flash movie to stream easily, even over DSL. Even 1 MB is pretty big for a Flash movie. A loading status indicator requires programming using the Flash authoring application.
    The Flash export from keynote is probably not compressing the images a lot. Also the size of the presentation (800x600) is pretty large, and this is giving you a big file.
    Try searching versiontracker.com for other slideshow tools with Flash export that will allow you to create a smaller canvas and compress your images more. But be aware that a series of bitmaps will always create a large Flash movie.
    Good luck!

  • Need help with Flash Player

    I have been having problems with this for months and still no help.  PLEASE HELP.
    I am using Windows Vista  and firefox is my Browser.  When I go to download it instead of Run File it only gives me a option to Save or Cancel File.  When I load flash objects, it gives me a greyed out box that says Movie Not Loaded and Adobe Flash Player.  If you have had any help with this please don't hesitate to help.  I am trying all suggestions until I get this fixed.
    Thanks in Advance

    I am having the exact same issue! I have tried everything,
    including the link
    http://www.adobe.com/go/full_flashplayer_win_msi,
    I still get the message that I must download flash. The weird thing
    is, one of the 5 user accounts (all computer administrators)
    on our family pc has no problem with flash working, but the
    other 4 do not work. I have tried adjusting the security settings,
    but nothing has worked. Did anything end up working out for
    you?

Maybe you are looking for

  • Z report for Stock agening

    Hi Expert i need to create a new Zreport for Stock Agening  that i have input. Material Posting Date Batch storage Location Plant Company code. but i dont know which output must come. Regard Nabil Edited by: sayednabil on Dec 10, 2010 8:28 AM

  • Request for a replacement USB cap for iPod Shuffle 1st Gen. Gifting the iPod my grandma for birthday.

    Hi, I have an iPod Shuffle 1st Generation 512Mb. I am planning to gift it to my grandma for her birthday but unfortunately, the I have lost the USB cap that covers the built in USB port on it. I have not had any luck finding it, and I was wondering i

  • ITunes is being really annoying!

    It opens up by itself! How can I stop this?!

  • Object confusion

    I'm getting a little confused over the use of objects in general in code. I always considered an object in my code basically as a pointer, such that using it in a function or adding it into a list would retain the object itself not just a copy. Howev

  • ITunes and iCloud are two accounts. Is this bad?

    I have an old iTunes account from my first Mac when the icon was green. Then I got a .mac account with all sorts of features like iWeb. It turned into something else or maybe it was something else but either way it became iCloud . So now I have two a