Newbie- Help with Flash dynamic pop up box

Hi i'm new to flash and was just wondering if anyone had any
tutorials or anything on how to create a dynamic pop up box with
flash similar to this one
http://www.photo-flash-maker.com/flash-template-dynamic-box.html

Hi there,
You are talking about making a movieclip open on top of the
rest of your information in flash. This is not really called a
popup (popup is more often referred to a window that opens).
What you can do is making in the top layer a movieclip that
would become visible when you click on something (for example a
photo).
Greetings,
Guido
Creation site web |
Jeux
Concours |
Echantillon gratuit |
Radin

Similar Messages

  • I need Help with the dynamic link feature in CS3

    Hi I was wondering if anyone could help me with an issue I am having? I have the adobe cs3 master collection. Having watched tutorials on the dynamic link feature my version seems not to have the same options as those I have viewed. I wish to send my premiere video creation to encore using dynamic link, however when I click "file" and then "adobe dynamic link" the only options available are about "adobe after effects". I can export to encore however I am only alloowed to export one premiere sequence to one new encore file, I cannot create an encore file and import several premiere sequence into the same encore project. That means currently I can only have an encore creation with one premiere sequence in it, and I have no adobe dynamic link. Any help anyone could offer would be greatly appreciated.

    Thanks very much for that guys but my premiere media encoder only lets me export as: MPEG1, MPEG1-VCD, MPEG2, MPEG2 blu-ray, MPEG2-DVD, MPEG2-SVCD, H.264, H.264 blu-ray, Adobe Flash Video, Quicktime, Real Media, Windows Media. Are any of these formats DV AVI?
    Am I to export my videos direct to encore or save them elsewhere (e.g desktop). It seems that I cannot export sequences from different premiere projects to the same encore project.
    Sorry if any of these questions seem obvious, I am just new to premiere and keen to do things right from the off.
    Many thanks again guys.
    Date: Tue, 24 Nov 2009 19:32:47 -0700
    From: [email protected]
    To: [email protected]
    Subject: I need Help with the dynamic link feature in CS3
    Harm is correct.  For SD DVD, exporting as a DV AVI file from Pr will give you good results.  Encore's Automatic Transcoding will give you maximum quality for the available disc space.
    -Jeff
    >

  • 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..

  • 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 date validation on input boxes.

    I need some help with date validation on input boxes.
    What I�m trying to create is a form where a user inputs dates and then the rest of the form calculates the other dates for them.
    i.e. � A user inputs 2 dates (A & B) and then a 3rd date which is 11 weeks before date B is calculated automatically.
    Is this possible and if so how do I do it ???
    Thanks

    Hi,
    to get third date try this:
    java.util.Date bDate = ...;
    Calendar yourCalendar = new GregorianCalendar();
    yourCalendar.setTime(bDate);
    yourCalendar.roll(Calendar.WEEK_OF_YEAR, -11);
    java.util.Date cDate = yourCalendar.getTime();Regards
    Ldinka

  • 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!

  • 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>

  • Adobe Flash Template pop up box all the same info

    ello there,
    I have downloaded a flash website template which i'm modifying but i'm stuck!
    On the About Us and Services pages there is a link to open up a pop up box. This works fine but for some reason if I change the text in one section, for instance the "our team" pop up box text the pop up box on the Services page "read more" and "paranormal info" box has the same text displayed.
    I can't seem to find where to change the text for each box individually. If you visit http://kitcherside.com/kpi you can see what I mean.
    I've uploaded the .fla file to the server also if someone is kind enough to have a look for me and point me in the right direction. You can download this from: http://kitcherside.com/kpi/25509.fla or http://kitcherside.com/kpi/25509.zip
    I have everything else under control, this is just the final piece that's playing hard ball!
    Thank you in advance for any assistance you're able to provide.
    General Zod

    I made an effort to look through that template. I hope that was free. It embodies nearly every aspect of what gives the template market a bad name. There is no organization to the content. There are no notes to explain the structure. None of the actionscript is commented. Absolutely nothing in the entire file has a useful name.
    All of that aside, the problem with the various pop out object's having the same text content is most likely because either each pop out is made from the same movieClip, or one or more of the movieClips inside this object are the same clips. Where those clips are in the Library is anybody's guess.
    Sorry that I couldn't be more help.

  • Help with flashing message envelope in the home sc...

    Hi all
    I was hoping if someone could help with the flashing message envelope in the home screen (next the the key lock, blue tooth, car kit symbols., which will no go away...Just keeps flashing
    I have checked that I have no message in any of my inboxes, out boxes..ect
    I have set-up email, sms etc. and cleares all boxes
    I have tried a reinstall to factory original setup
    Any ideas
    Solved!
    Go to Solution.

    What do you mean by "repeats every few hours"? Does the flashing message icon pop up all of a sudden, without receiving any messages? Sometimes it happens that messages that are received as many parts will be read by you before all of them have been correctly received. So, as and when a new chunk arrives, you will see this icon even though you had 'read' the message.
    If you try the method described in the above post, you will not have any messages in your SIM, and I assume you have no unread messages in your phone either.
    I would suggest you to change the Memory in use to Memory card (Messaging -> Options -> Settings -> Other -> Memory in use) temporarily, see if you have any unread messages there, clear everything, and then revert it back to Phone Memory.
    If it doesn't work, try a factory reset (*#7780#). This will reset your messaging settings also.
    Cheers,
    DeepestBlue
    5800 XpressMusic (Rock Stable) | N73 Music Edition (Never Say Die) | 1108 (Old and faithful)
    If you find any post useful, click on the Green "Kudos" Button on the left to say Thank You...

  • Flash Player Pop Up Box

    All of a sudden I am getting a pop up box in regards to (Web site wants to open web content) clicking on either OPEN or Don"t allow  makes the box disappear for a few seconds then it pops up again and again and again no mater what choice I make. Unable to get rid of it and of course when it is displayed on any page I am unable to do anything until I get rid of the POP UP .How do I eliminate it?
    I have the current Adobe Flash Player.
    Help this is agravating.
    Marlekm

    Are you all using iMacs with ATI video cards installed?  If so, we're aware of this bug and we're working with Apple and ATI to resolve it asap.  In the meantime, here's a FAQ that describes workaround for most common scenarios.
    Working around the 10.7 Lion Flash Player settings bug
    Chris

  • 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

  • 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>

  • 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?

  • 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>

Maybe you are looking for

  • A/P Credit Memo not updating Goods Receipt PO

    1) A Goods Receipt was created from a PO for all 5 items in the PO. 2) An A/P Invoice was created for 3 of the items from the Goods Receipt. 3) An A/P Credit Memo was created was created for the A/P Invoice. 4) The A/P Credit Memo is Closed, The A/P

  • How much is my mac worth in UK £s?

    Hi This is probalbly not the right place but I was hoping someone might know how much I might expect to get for this mac on the open market in the UK and what's the least I should accept?. It's been upgraded to 512MB ram. The Apple iMac G3/400 DV Spe

  • Firefox crashes when I try to print a website

    Every other time I try to print a page from a website, my Firefox crashes and I have to restore it. This is so annoying, seeing as I am currently working on my applications to medical schools, so I need to print information quite frequently. I have t

  • TS1382 how to reset my ipod say try 12million mintues

    My daughters ipod was diabled by my 2 year old  son ,it says try 12 million minutes .I dont have it back up on my new computer .it askme to unlock the pass code before it connect to computer.What can i do to reset this thanks

  • Maxl Clear Script with Substitution Variables

    Hi, I am new to Maxl and I am trying to write a clear script with Maxl on an ASO Cube. The script should only clear data on a certain version and year that changes every month. I am using the following syntax and it doesn't work. alter database ASOSa