Help Quick!  Action Script Question

The following code lets me use buttons to switch music. The
music loops until I switch it.
How do I make it so that the previous music doesn't stop
looping. So you can have more then one music going at once.
That is all...
// initialize starting track
var soundNext:String = "beats01";
// set up dynamic sound object
var dynamicSound:Sound = new Sound(this);
dynamicSound.attachSound(soundNext);
dynamicSound.start(0, 1);
nowPlaying.text = soundNext;
beats01.onRelease =
beats02.onRelease=beats03.onRelease=beats04.onRelease=beats05.onRelease=beats06.onRelease =beats07.onRelease=beats08.onRelease=function
soundNext = this._name;
nextTrack.text = soundNext;
// NEXT SOUND
dynamicSound.onSoundComplete = function() {
dynamicSound.attachSound(soundNext);
dynamicSound.start(0, 1);
nowPlaying.text = soundNext;
stop();

Hi Dan,
Welcome to Apple Discussions and the AppleWorks forum.
Are you sure you're asking a database question? From your terminology (rows, columns) and your description, it seems more like you're using a spreadsheet.
If this is a database, you will have two Number type fields, 'A' and 'B'. To show the product, define a Calculation type field, 'C', using either of the two formulas below:
'A'*'B'
or
PRODUCT('A','B')
To define the new field:
Open the database document.
Go Layout > Define fields
In the Define fields dialogue that opens, you'll see a list of your current fields, including 'A' and 'B'
     -if 'A' and 'B' are not identified as "number" fields, click to select each in turn, change the Type to Number and click Modify.
      OK the warning (your data in these fields is all numbers, and will be retained).
Type "C" (without the capitals) in the Field Name box, set the Field Type to Calculation, then click Create.
Enter either of the formulas above into the Formula box, then click OK, then Done.
If your document is actually a spreadsheet, with the numbers in columns A and B:
Enter either of these formulas into cell C1:
=PRODUCT(A1,B1)
or
=A1*B1
Press Enter.
Select the cells C1..Cn (where n is the last row in which you want to calculate the product of the numbers in columns A and B).
Press command-D to fill the formula down the cells in column C
Regards,
Barry

Similar Messages

  • Quick SAP Script question New Page Print

    Quick SAP Script question
    I have added a new page to an existing SAP Script BUT only want it to print if a condition is true.
    I need to do this from within the form as the print program is SAP Std.
    Any idea how I can prevent the new page from printing?
    i.e. I need the form NOT to call the new page if the condition is false. Is there a way of forcing an exit or stop from with in the form?

    Hi,
    To trigger a new page, there is script ediotr command NEW-PAGE.
    so find where is that command is triggered and use the below code for trigger it on any specific condition....
    if &condition& = 'True'
    /*  NEW-PAGE
    elseif
    /: NEW-PAGE   
    endif
    so it means if condition is satisfied your new page will not work.. else it will...
    Hope you got it...
    Try this..
    Best luck..
    Regs,
    Lokesh.

  • FLASH MX 2004 action script question

    Hi!
    I need to create an script for a basic function; when mouse goes over a moveclip, that works also link, I want it to trigger an invisible red dot on a nerby map. I have created a movieclip and named it "red", it's a 1 sec clip with nothing in the beginning and a red dot in the end. I want this dot to trigger and show only when mouse goes over this specific link, otherwise it must be invisible.
    I know this is pretty basic stuff and I have done this before few years back but I have forgotten how to do it and need help now.
    Any help would be very much appreciated :-)
    Kim

    I still need help, this problem is little more complicated;
    I can manage making the red dot visible and invisible by triggering roll over and roll out on a button.
    The problem is, I have a navbar which is line of flags made to a movie clip, with 5 invisible buttons. These buttons are configured to do three different actions; get URL, trigger a light effect and a movement effect.
    Now I need this invisible button to trigger my red dot also so that when mouse is over a certain flag a red dot appears on a map on the correct location.
    I have the red dot on a new layer. It has instance name "redDot" and on the very first frame of this red button layer, I have action script that says: redDot._visible = false;
    This works as it should and the dot is invisible when the movie has loaded.
    I need to make this invisible button to trigger the visibility of my red dot, and I have tried to add the code:
    on (rollOver) {
    redDot._visible = true;
    on (rollOut) {
    redDot._visible = false;
    to this invisible button, but it dosent work, furthermore it affects the other functions of the button/movie clip, which were working fine before.
    Here is the code attached to this invisible button so far:
    on (release) {
    getURL(/:url1);
    on (rollOver) {
    gotoAndPlay(2);
    on (rollOut) {
    gotoAndPlay("sec");
    I have the URL:s on an external text file.
    So my question is; where do I add the action script to make it visible when moving the mouse over this invisible button? To my understanding, it should go in the same place as the other code that is working, but I'm doing something wrong...
    I tried to do this:
    on (release) {
    getURL(/:url1);
    on (rollOver) {
    gotoAndPlay(2)
            redDot._visible = true;
    on (rollOut) {
    gotoAndPlay("sec")
    redDot._visible = false;
    But it is wrong, I also tried like this:
    on (release) {
    getURL(/:url1);
    on (rollOver) {
    gotoAndPlay(2);
    on (rollOut) {
    gotoAndPlay("sec");
    on (rollOver) {
    redDot._visible = true;
    on (rollOut) {
    redDot._visible = false;
    But it makes the other functions that worked to stop working.
    I also tried to give the invisible button an instance name and do it like this:
    invisible.on (rollOver) {
            redDot._visible = true;
    invisible.on (rollOut) {
    redDot._visible = false;
    And put them in the actions layer of button movie clip but nothing works.
    Flash is really giving me a headache now...
    To conclude, I made a simple test button, put it on the scene somewhere and and attached the rollOver and rollOut codes, targeting the "redDot" and it works fine, the button didn't need a instance name to work. I don't understand why I can't make it to work with the invisible button where it should be.
    I hope this clarifies the point and I can get some help with this and sorry for bothering again with this problem.
    Oh and I use old Flash MX 2004.
    Thanks
    Kim

  • Simple Action Script question

    This is probably a very basic question, but going through all
    my old Flash work didn't help me remember...
    I have my animation starting on the main stage with an image
    fading in. when that is done playing, at the end i want it to go to
    a movie clip on the stage and play it from frame 2. what is the
    action script for this?

    Doesn't seem to be working... your_mc is the instance name of
    the mc, correct? i placed this script in a frame - it's above where
    my mc first appears and the initial animation on the stage ends. is
    that correct?
    stop();
    tellTarget(mc_square-grid){
    gotoAndPlay(2);
    When I test the movie, the initial animation plays then
    stops, but the MC does not start playing. and the following error
    message appears:
    Target not found: Target="NaN" Base="_level0"
    quote:
    Originally posted by:
    ActionScripter1
    tellTarget(your_mc){
    gotoAndPlay(2);

  • Help with action script please

    hay guys, im having trouble with changing my action script to
    allow multiple layers of the same thing in order to show a greater
    sense of depth than the normal application. im using a flash
    toutorial on making a sort of matrix like falling text (
    link)
    and im not completely understanding what to change in order to
    accomplish my goal. i tryed to send them a message using their
    contact page, but its broken, forcing me to find a forum. im sure
    it has something to do with the third group of code where it
    identifies what its using. but whenever i change anything there to
    either match the identifiers or movie clip names the action script
    crashes when i test the movie. any help is appreciated.
    im using flash cs3 and made sure to create it all in action
    script 2.0
    please excuse my spelling, im sure i made a mistake
    somewhere.

    "FlashTastic" <[email protected]> wrote in
    message news:e4ir4t$ru4$[email protected]..
    >I don't think an enterframe will be your best bet.
    >
    > You might want to use something like
    >
    > if(_root._currentframe >= _root.totalframes){
    > loadMovie("myMovie.swf",_root)
    Why in the world would you do that when you can just put a
    keyframe on the last frame and ..
    loadMovie("myMovie.swf");
    tralfaz

  • Help with Action script 2.0 please

    Hi,
    I am new to actionscript and i could really do with some help
    please. I am trying to load external movie clips into two different
    containers depending on which button is clicked. Sometimes there
    may be two conatiners attached to a buuton click, whilst other
    buttons may only need to load one movie clip. Here is the action
    script i have been using:
    button1.onPress = function () {
    _root.createEmptyMovieClip("container", 1);
    _root.createEmptyMovieClip("container1", 2);
    unloadMovie("container1");
    loadMovie("scene2.swf", "container");
    loadMovie("scene5.swf", "container1");
    container._x = 50 ;
    container._y = 110 ;
    container1._x = 170 ;
    container1._y = 5 ;
    button2.onPress = function () {
    loadMovie("scene6.swf", "container");
    unloadMovie("container1");
    container._x = 50 ;
    container._y = 110 ;
    This does load the movies, however i have to press button one
    first before button two will work. Ideally i need to be able to
    call any movieclip at any time. Can anyone tell me where i am going
    wrong?

    quote:
    Originally posted by:
    NedWebs
    Try moving these lines outside of the button function:
    _root.createEmptyMovieClip("container", 1);
    _root.createEmptyMovieClip("container1", 2);
    You can use "this" instead of "_root"... that'll save any
    problem if you ever move this within some other movie. Also, move
    the x/y assignments just under those lines since they relate to
    them directly.
    Hey thankyou for your help, that works now. although if i
    move the x and y assignments i would have to create another
    container right? Thanks again for your help.

  • Help with action script 2.0

    I'm a beginner with flash. I created a flash file on my own.
    I also created a flash file using a slideshow program. Generally I
    like this program. I can insert them into my html with no problem.
    I want to load the slideshow.swf file into an empty movie
    clip in the flash file I created called products.swf. It works fine
    using
    loadMovie("slideshow.swf", call_mb_slideshow); (where
    call_mb_slideshow is a empty movieclip.)
    as long as the all the files are in the same folder. But, I
    need the products.swf file with the empty movieclip to be in the
    parent folder AND I need the slideshow.swf and the slideshow.xml
    file to be in a child folder call musicbox_slideshow. When I change
    the code to this:
    loadMovie("musicbox_slideshow/slideshow.swf",
    call_mb_slideshow);
    It loads the slideshow.swf file into the movieclip fine, BUT
    it doesn't know where to find the slideshow.xml file that loads the
    pictures into the slideshow. It looks for it in the parent folder,
    not the child folder.
    How do I write the script in products.swf so that it knows
    where the slideshow.xml file is? I cannot change the slideshow.swf
    file code in any way. I need to do it from products.swf.

    I can use this code from html. I'm able to say where the swf
    and xml file are. I just don't know how to do this using action
    script.
    <object
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
    http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
    width="768" height="576" id="tech" align="middle">
    <param name="movie"
    value="slideshow.swf?xml_path=musicbox_slideshow/slideshow.xml"
    />
    <param name="quality" value="high" />
    <embed
    src="slideshow.swf?xml_path=musicbox_slideshow/slideshow.xml"
    quality="high" width="768" height="576" name="tech" align="middle"
    allowScriptAccess="sameDomain" type="application/x-shockwave-flash"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    />
    </object>.

  • Help with Action Scripting

    I have been developing a site and I am having issues with
    something that is probably very simple. I have created several
    movieclips that expand and contract as you roll over them. I wanted
    to make a function/method so that when the user clicks, it takes
    them to another scene in this movie. Here is the action script I am
    using:
    on(release) {
    gotoAndPlay("Scene 9");
    Unfortunately, this is not working. I thought that perhaps
    the on(release) method wouldn't work on these movie clips based on
    the action script I was already using to expand/contract the boxes,
    but the following code works just fine:
    on(release) {
    getURL("home.html");
    I'm stumped. Can anyone offer a suggestion as to what I
    should do? Here is the web address of the page I'm working on, it
    has the movie I'm having an issue with.
    AndrewJW.com. The
    first image on the left next to the word photography links to
    another page of the site. The image of the pearl ring next to that
    is the one that will not advance to another scene in the movie.
    Thanks for any and all input.
    Andrew

    Jeckyl>
    erm... ok i've to admit my mistake in 2nd script.
    _root.gotoAndPlay() takes only ONE argument,
    _root.gotoAndPlay("Scene 9", 1); won't works.
    Thank for reminding me
    actually this make me confuse sometime,
    from the code hint in flash,
    for
    gotoAndPlay,
    gotoAndPlay(
    frame);
    gotoAndPlay(
    scene,
    frame);
    for
    MovieClip.gotoAndPlay,
    MovieClip.gotoAndPlay(
    frame);
    so, gotoAndPlay can accept 2 arguments only when use without
    "something dot" in front.
    if Andrew's script is attached to an instance of button
    symbol, we can use
    on(release) {
    gotoAndPlay("Scene 9", 1);
    Since Andrew will attach the script to an instance of
    movieclip, he can only use:
    on(release) {
    gotoAndPlay("Scene 9");
    where he have to give the label to the 1st frame of "Scene 9"
    same name with the scene.
    Am i right Jeckyl?
    I heard many people said "scene"+"script"="buggy", but some
    time I get it "works". What is your opinion?

  • Help whit action script.

    Hello out there
    are there any of you out there who can help me get my image display system to work?
    I have been following advances script from my main site:
    function onFinish(success_boolean, gallery_obj, xml)
        if (success_boolean)
            play ();
        } // end if
    } // End of the function
    function textSelectable(selectedObject)
        isTextSelected = getSettingsValue(mainObj, "textSelectable", "item");
        if (isTextSelected == "true")
            selectedObject.selectable = true;
        } // end if
    } // End of the function
    function getXmlSection(obj, itemName, sectionName)
        for (i = 0; obj[itemName][i]; i++)
            if (obj[itemName][i].name == sectionName)
                returnedResult = true;
                return (i);
                break;
            } // end if
        } // end of for
    } // End of the function
    function getSettingsValue(obj, itemName, itemType)
        sectionNum = getXmlSection(obj, "section", "settings");
        for (k = 0; obj.section[sectionNum][itemType][k]; k++)
            if (obj.section[sectionNum][itemType][k].name == itemName)
                return (obj.section[sectionNum][itemType][k].value);
                break;
            } // end if
        } // end of for
    } // End of the function
    function getGlobalImageName(imageNumber)
        sectionNum = getXmlSection(mainObj, "section", "global_img");
        imageParams = new Array();
        imageParams.name = mainObj.section[sectionNum].image[imageNumber].imageUrl;
        imageParams.linkToOpen = mainObj.section[sectionNum].image[imageNumber].link;
        return (imageParams);
    } // End of the function
    function getCopyright(textObj)
        textObj.htmlText = getSettingsValue(mainObj, "copyright", "item");
        textSelectable(textObj);
    } // End of the function
    function getCompanyName(textObj)
        textObj.htmlText = getSettingsValue(mainObj, "companyName", "item");
        textSelectable(textObj);
    } // End of the function
    function getSlogan(textObj)
        textObj.htmlText = getSettingsValue(mainObj, "slogan", "item");
        textSelectable(textObj);
    } // End of the function
    function getSystemValue(textObj, systemOptionName)
        textObj.htmlText = getSettingsValue(mainObj, systemOptionName, "item");
        textSelectable(textObj);
    } // End of the function
    function getMenuLink(textObj, linkNum)
        sectionNum = getXmlSection(mainObj, "section", "menu");
        textObj.htmlText = mainObj.section[sectionNum].link[linkNum].value;
        textSelectable(textObj);
    } // End of the function
    function getMenuSystemOrder(linkNum)
        sectionNum = getXmlSection(mainObj, "section", "menu");
        return (mainObj.section[sectionNum].link[linkNum].systemOrder);
    } // End of the function
    function getCurrentText(textObj, textNumber)
        sectionNum = getXmlSection(mainObj, "section", "pages");
        currentPage = _root.link - _root.firstPageFrame;
        textObj.htmlText = mainObj.section[sectionNum].page[currentPage].texts[0].pageText[textNumber].value;
        textSelectable(textObj);
    } // End of the function
    function getMenuPreviousLink(linkNum)
        k = 0;
        for (systemOrder = getMenuSystemOrder(k); systemOrder; systemOrder = getMenuSystemOrder(k))
            if (systemOrder == linkNum)
                orderResult = k + 1;
                break;
            } // end if
            ++k;
        } // end of for
        return (orderResult);
    } // End of the function
    function getCurrentImageName(imageNumber)
        sectionNum = getXmlSection(mainObj, "section", "pages");
        currentPage = _root.link - _root.firstPageFrame;
        imageParams = new Array();
        imageParams.name = mainObj.section[sectionNum].page[currentPage].image[imageNumber].imageUrl;
        imageParams.linkToOpen = mainObj.section[sectionNum].page[currentPage].image[imageNumber].link;
        imageParams.target = mainObj.section[sectionNum].page[currentPage].image[imageNumber].target;
        return (imageParams);
    } // End of the function
    function getCurrentImageName_splash(imageNumber)
        sectionNum = getXmlSection(mainObj, "section", "settings");
        imageParams = new Array();
        imageParams.name = mainObj.section[sectionNum].image[imageNumber].imageUrl;
        imageParams.linkToOpen = mainObj.section[sectionNum].image[imageNumber].link;
        return (imageParams);
    } // End of the function
    function checkLinkType(linkTextType, linkNumber)
        k = 0;
        typeCount = 0;
        finalLinkNumber = parseInt(linkNumber) + 1;
        currentPage = _root.link - _root.firstPageFrame;
        sectionNum = getXmlSection(mainObj, "section", "pages");
        for (linkTypeCkeck = mainObj.section[sectionNum].page[currentPage].link[k].linkType; linkTypeCkeck; linkTypeCkeck = mainObj.section[sectionNum].page[currentPage].link[k].linkType)
            if (linkTypeCkeck == linkTextType)
                ++typeCount;
            } // end if
            if (typeCount == finalLinkNumber)
                return (k);
                break;
            } // end if
            ++k;
        } // end of for
    } // End of the function
    function more_click_func(number)
        tempNumber = number.split(" ");
        number = tempNumber.join("");
        number = number.toLowerCase();
        num = _root.pagesReadMoreFrame;
        currentPage = _root.link - _root.firstPageFrame;
        if (isNaN(Number(number)))
            readMoreType = number;
        else
            readMoreType = "readmore";
        } // end else if
        if ((_root.link != num || _root.readMoreFrameType != readMoreType) && _root.animation == 1)
            _root.animation = 0;
            _root.link_prev = _root.link;
            if (_root.link != 7)
                _root.menu["item" + getMenuPreviousLink(_root.link)].gotoAndPlay("s2");
                _root.menu2["item" + getMenuPreviousLink(_root.link)].gotoAndPlay("s2");
            } // end if
            if (number == "privacypolicy")
                _root.readMoreFrameType = "privacypolicy";
                sectionNum = getXmlSection(mainObj, "section", "privacyPolicy");
                titleNum = getXmlSection(mainObj.section[sectionNum], "item", "pageTitle");
                textNum = getXmlSection(mainObj.section[sectionNum], "item", "pageText");
                _root.readMoreTitle = mainObj.section[sectionNum].item[titleNum].value;
                _root.readMoreText = mainObj.section[sectionNum].item[textNum].value;
            else if (number == "termsofuse")
                _root.readMoreFrameType = "termsofuse";
                sectionNum = getXmlSection(mainObj, "section", "termsOfUse");
                titleNum = getXmlSection(mainObj.section[sectionNum], "item", "pageTitle");
                textNum = getXmlSection(mainObj.section[sectionNum], "item", "pageText");
                _root.readMoreTitle = mainObj.section[sectionNum].item[titleNum].value;
                _root.readMoreText = mainObj.section[sectionNum].item[textNum].value;
            else
                _root.readMoreFrameType = "readmore";
                sectionNum = getXmlSection(mainObj, "section", "pages");
                linkCount = checkLinkType("readMoreLink", number);
                i = 0;
                linkTitleNum = getXmlSection(mainObj.section[sectionNum].page[currentPage].link[linkCount], "item", "title");
                linkTextNum = getXmlSection(mainObj.section[sectionNum].page[currentPage].link[linkCount], "item", "linkText");
                _root.readMoreTitle = mainObj.section[sectionNum].page[currentPage].link[linkCount].item[linkTitleNum].value;
                _root.readMoreText = mainObj.section[sectionNum].page[currentPage].link[linkCount].item[linkTextNum].value;
            } // end else if
            _root.link = num;
            _root.play();
        } // end if
    } // End of the function
    function getContactFormText(textObj, textNumber)
        sectionNum = getXmlSection(mainObj, "section", "contactForm");
        textObj.htmlText = mainObj.section[sectionNum].texts[0].pageText[textNumber].value;
        textSelectable(textObj);
    } // End of the function
    function getContactFormText_only(textNumber)
        sectionNum = getXmlSection(mainObj, "section", "contactForm");
        return (htmlText = mainObj.section[sectionNum].texts[0].pageText[textNumber].value);
    } // End of the function
    function getContactFormParams()
        sectionNum = getXmlSection(mainObj, "section", "contactForm");
        ContactFormParams = new Array();
        servNum = getXmlSection(mainObj.section[sectionNum], "item", "serverOption");
        recNum = getXmlSection(mainObj.section[sectionNum], "item", "recipient");
        ContactFormParams.rec = mainObj.section[sectionNum].item[recNum].value;
        ContactFormParams.serv = mainObj.section[sectionNum].item[servNum].value;
        return (ContactFormParams);
    } // End of the function
    function getGallerySystemProperty(propName)
        sectionNum = getXmlSection(galleryObj, "section", "systemOptions");
        propNum = getXmlSection(galleryObj.section[sectionNum], "option", propName);
        return (galleryObj.section[sectionNum].option[propNum].value);
    } // End of the function
    function getGallerySettings(propName)
        sectionNum = getXmlSection(galleryObj, "section", "settings");
        propNum = getXmlSection(galleryObj.section[sectionNum], "option", propName);
        return (galleryObj.section[sectionNum].option[propNum].value);
    } // End of the function
    function getGalleryImage(imageNum, categoryNum)
        sectionNum = getXmlSection(galleryObj, "section", "imagesData");
        imageParams = new Array();
        image = galleryObj.section[sectionNum].category[categoryNum].image[imageNum];
        nameNum = getXmlSection(image, "item", "imageUrl");
        commentNum = getXmlSection(image, "item", "imageComment");
        imageParams.name = image.item[nameNum].value;
        imageParams.comment = image.item[commentNum].value;
        return (imageParams);
    } // End of the function
    function getCurrentGalleryName(categoryNum)
        sectionNum = getXmlSection(galleryObj, "section", "imagesData");
        return (galleryObj.section[sectionNum].category[categoryNum].name);
    } // End of the function
    pagesReadMoreFrame = 5;
    firstPageFrame = 1;
    var mainObj = _root.parsed_obj;
    var galleryObj = _root.gallery_obj;
    _root.readMoreFrameType = "readmore";
    And I follow the script tries from display page:function reloadContent()
        thisTitle.htmlText = _root.readMoreTitle;
        thisText.htmlText = _root.readMoreText;
        _root.textSelectable(thisText);
        _root.textSelectable(thisTitle);
    } // End of the function
    reloadContent();
    function reset_txt(name, name2, value)
        path = _target;
        path[name2] = value;
        this[name].onSetFocus = function ()
            path = _target;
            if (path[name2] == value)
                path[name2] = "";
            } // end if
        this[name].onKillFocus = function ()
            path = _target;
            if (path[name2] == "")
                path[name2] = value;
            } // end if
    } // End of the function
    formParams = _root.getContactFormParams();
    rec = formParams.rec;
    serv = formParams.serv;
    var fields_descriptions = Array("", Array("t1", "your_name", ""), Array("t2", "your_email", ""), Array("t3", "message", ""));
    for (i = 1; i <= fields_descriptions.length; i++)
        reset_txt("t" + i, fields_descriptions[i][1], fields_descriptions[i][2]);
    } // end of for
    And one action fore the images frame
    onClipEvent (load)
        imageProperties = _root.getCurrentImageName(3);
        loadMovie(_root.url + imageProperties.name, this.cont.pic);
        url = imageProperties.linkToOpen;
        targetWindow = imageProperties.target;
    Here I have to follow the advances xml file from where it should findeud of which image to display:
    <?xml version="1.0" encoding="UTF-8"?>
    <content>
    <!-- general vars -->
    <section name="settings">
      <item name="textSelectable">true</item>
      <item name="copyright"><![CDATA[COPYRIGHT NAVN |<a href="asfunction:_root.more_click_func, privacyPolicy">COPYRIGHT LINK TEKST</a>]]></item>
      <item name="companyName">SIDENS NAVN</item>
      <item name="slogan">SIDENS SLOGAN</item>
      <item name="slogan2"><![CDATA[SIDENS EKSTRA TEKST]]></item>
      <image imageUrl="_logo.png" link="asfunction:link"/>
      <image imageUrl="_pic_menu_1.png" link="asfunction:link"/>
      <image imageUrl="_pic_menu_2.png" link="asfunction:link"/>
      <image imageUrl="_pic_menu_3.png" link="asfunction:link"/>
      <image imageUrl="_pic_menu_4.png" link="asfunction:link"/>
      <image imageUrl="_pic_menu_5.png" link="asfunction:link"/>
    </section>
    <!-- menu -->
    <section name="menu">
    <link systemOrder="1"><![CDATA[MENU 1]]></link>
    <link systemOrder="2"><![CDATA[MENU 2]]></link>
    <link systemOrder="3"><![CDATA[MENU 3]]></link>
    <link systemOrder="4"><![CDATA[MENU 4]]></link>
    <link systemOrder="5"><![CDATA[MENU 5]]></link>
    </section>
    <!-- pages -->
    <section name="pages">
    <page name="company">
    <image imageUrl="_pic1.png" link="asfunction:link"/>
    <image imageUrl="_pic2.png" link="asfunction:link"/>
    <image imageUrl="_pic3.png" link="asfunction:link"/>
    <image imageUrl="_pic4.png" link="asfunction:link"/>
    <texts>
    <pageText><![CDATA[FØRSTE SIDE OVERSKRIFT 1]]></pageText>
    <pageText><![CDATA[FØRSTE SIDE TEKST 1]]></pageText>
    <pageText><![CDATA[FØRSTE SIDE OVERSKRIFT 2]]></pageText>
    <pageText><![CDATA[FØRSTE SIDE TEKST 2]]></pageText>
    <pageText><![CDATA[FØRSTE SIDE TEKST 3]]></pageText>
    <pageText><![CDATA[FØRSTE SIDE TEKST 3]]></pageText>
    <pageText><![CDATA[FØRSTE SIDE TEKST 4]]></pageText>
    <pageText><![CDATA[FØRSTE SIDE OVERSKRIFT 3]]></pageText>
    <pageText><![CDATA[FØRSTE SIDE TEKST 5]]></pageText>
    </texts>
    <link linkType="readMoreLink">
    <image imageUrl="HEER I VANT YHE PUCTURE URL TO BE" link="and images link"/>                              !--- < HEER
    <item name="title"><![CDATA[FØRSTE SIDE MERE OVERSKRIFT 1]]></item>
    <item name="linkText"><![CDATA[FØRSTE SIDE MERE TEKST 1]]></item>
    </link>
    <link linkType="readMoreLink">
    <image imageUrl="HEER I VANT YHE PUCTURE URL TO BE" link="and images link"/>                              !--- < HEER
    <item name="title"><![CDATA[FØRSTE SIDE MERE OVERSKRIFT 2]]></item>
    <item name="linkText"><![CDATA[FØRSTE SIDE MERE TEKST 2]]></item>
    </link>
    <link linkType="readMoreLink">
    <image imageUrl="HEER I VANT YHE PUCTURE URL TO BE" link="and images link"/>                              !--- < HEER
    <item name="title"><![CDATA[FØRSTE SIDE MERE OVERSKRIFT 3]]></item>
    <item name="linkText"><![CDATA[FØRSTE SIDE MERE TEKST 3]]></item>
    </link>
    <link linkType="readMoreLink">
    <image imageUrl="HEER I VANT YHE PUCTURE URL TO BE" link="and images link"/>                              !--- < HEER
    <item name="title"><![CDATA[FØRSTE SIDE MERE OVERSKRIFT 4]]></item>
    <item name="linkText"><![CDATA[FØRSTE SIDE MERE TEKST 4]]></item>
    </link>
    </page>
    <page name="services">
    <image imageUrl="_pic5.png" link="asfunction:link"/>
    <image imageUrl="_pic6.png" link="asfunction:link"/>
    <texts>
    <pageText><![CDATA[ANDEN SIDE OVERSKRIFT 1]]></pageText>
    <pageText><![CDATA[ANDENSIDE TEKST 1]]></pageText>
    <pageText><![CDATA[ANDEN SIDE OVERSKRIFT 2]]></pageText>
    <pageText><![CDATA[ANDEN SIDE TEKST 2]]></pageText>
    <pageText><![CDATA[ANDEN SIDE TEKST 3]]></pageText>
    </texts>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[ANDEN SIDE MERE OVERSKRIFT 1]]></item>
    <item name="linkText"><![CDATA[ANDEN SIDE MERE TEKST 1]]></item>
    </link>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[ANDEN SIDE MERE OVERSKRIFT 2]]></item>
    <item name="linkText"><![CDATA[ANDEN SIDE MERE TEKST 2]]></item>
    </link>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[ANDEN SIDE MERE OVERSKRIFT 3]]></item>
    <item name="linkText"><![CDATA[ANDEN SIDE MERE TEKST 3]]></item>
    </link>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[ANDEN SIDE MERE OVERSKRIFT 4]]></item>
    <item name="linkText"><![CDATA[ANDEN SIDE MERE TEKST 4]]></item>
    </link>
    </page>
    <page name="solutions">
    <image imageUrl="_pic7.png" link="asfunction:link"/>
    <image imageUrl="_pic8.png" link="asfunction:link"/>
    <texts>
    <pageText><![CDATA[TREDIE SIDE OVERSKRIFT 1]]></pageText>
    <pageText><![CDATA[TREDIE SIDE TEKST 1]]></pageText>
    <pageText><![CDATA[TREDIE SIDE TEKST 2]]></pageText>
    <pageText><![CDATA[TREDIE SIDE OVERSKRIFT 2]]></pageText>
    <pageText><![CDATA[TREDIE SIDE TEKST 3]]></pageText>
    </texts>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[TREDIE SIDE MERE OVERSKRIFT 1]]></item>
    <item name="linkText"><![CDATA[TREDIE SIDE MERE TEKST 1]]></item>
    </link>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[TREDIE SIDE MERE OVERSKRIFT 2]]></item>
    <item name="linkText"><![CDATA[TREDIE SIDE MERE TEKST 2]]></item>
    </link>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[TREDIE SIDE MERE OVERSKRIFT 3]]></item>
    <item name="linkText"><![CDATA[TREDIE SIDE MERE TEKST 3]]></item>
    </link>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[TREDIE SIDE MERE OVERSKRIFT 4]]></item>
    <item name="linkText"><![CDATA[TREDIE SIDE MERE TEKST 4]]></item>
    </link>
    </page>
    <page name="products">
    <image imageUrl="_pic9.png" link="asfunction:link"/>
    <image imageUrl="_pic10.png" link="asfunction:link"/>
    <image imageUrl="_pic11.png" link="asfunction:link"/>
    <texts>
    <pageText><![CDATA[FJERDE SIDE OVERSKRIFT 1]]></pageText>
    <pageText><![CDATA[FJERDE SIDE TEKST 1]]></pageText>
    <pageText><![CDATA[FJERDE SIDE OVERSKRIFT 2]]></pageText>
    <pageText><![CDATA[FJERDE SIDE TEKST 2]]></pageText>
    <pageText><![CDATA[FJERDE SIDE TEKST 3]]></pageText>
    <pageText><![CDATA[FJERDE SIDE TEKST 4]]></pageText>
    <pageText><![CDATA[FJERDE SIDE TEKST 5]]></pageText>
    <pageText><![CDATA[FJERDE SIDE TEKST 6]]></pageText>
    </texts>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[FJERDE SIDE MERE OVERSKRIFT 1]]></item>
    <item name="linkText"><![CDATA[FJERDE SIDE MERE TEKST 1]]></item>
    </link>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[FJERDE SIDE MERE OVERSKRIFT 2]]></item>
    <item name="linkText"><![CDATA[FJERDE SIDE MERE TEKST 2]]></item>
    </link>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[FJERDE SIDE MERE OVERSKRIFT 3]]></item>
    <item name="linkText"><![CDATA[FJERDE SIDE MERE TEKST 3]]></item>
    </link>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[FJERDE SIDE MERE OVERSKRIFT 4]]></item>
    <item name="linkText"><![CDATA[FJERDE SIDE MERE TEKST 4]]></item>
    </link>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[FJERDE SIDE MERE OVERSKRIFT 5]]></item>
    <item name="linkText"><![CDATA[FJERDE SIDE MERE TEKST 5]]></item>
    </link>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[FJERDE SIDE MERE OVERSKRIFT 6]]></item>
    <item name="linkText"><![CDATA[FJERDE SIDE MERE TEKST 6]]></item>
    </link>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[FJERDE SIDE MERE OVERSKRIFT 7]]></item>
    <item name="linkText"><![CDATA[FJERDE SIDE MERE TEKST 7]]></item>
    </link>
    </page>
    <page name="contacts">
    <image imageUrl="_pic12.png" link="asfunction:link"/>
    <texts>
    <pageText><![CDATA[FEMTE SIDE OVERSKRIFT 1]]></pageText>
    <pageText><![CDATA[FEMTE SIDE TEKST 1]]></pageText>
    <pageText><![CDATA[FEMTE SIDE OVERSKRIFT 2]]></pageText>
    <pageText><![CDATA[FEMTE SIDE TEKST 2]]></pageText>
    <pageText><![CDATA[FEMTE SIDE OVERSKRIFT 3]]></pageText>
    <pageText><![CDATA[FEMTE SIDE TEKST 3]]></pageText>
    </texts>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[FEMTE SIDE MERE OVERSKRIFT 1]]></item>
    <item name="linkText"><![CDATA[FEMTE SIDE MERE TEKST 1]]></item>
    </link>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[FEMTE SIDE MERE OVERSKRIFT 2]]></item>
    <item name="linkText"><![CDATA[FEMTE SIDE MERE TEKST 2]]></item>
    </link>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[FEMTE SIDE MERE OVERSKRIFT 3]]></item>
    <item name="linkText"><![CDATA[FEMTE SIDE MERE TEKST 3]]></item>
    </link>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[FEMTE SIDE MERE OVERSKRIFT 4]]></item>
    <item name="linkText"><![CDATA[FEMTE SIDE MERE TEKST 4]]></item>
    </link>
    </page>
    </section>
    <!-- privacy policy -->
    <section name="privacyPolicy">
    <item name="pageTitle"><![CDATA[COPYRIGHT OVERSKRIFT]]></item>
    <item name="pageText"><![CDATA[COPYRIGHT TEXT]]></item>
    </section>
    <!-- privacy policy -->
    <!-- terms of use -->
    <section name="termsOfUse">
    <item name="pageTitle"><![CDATA[REGLER OVERSKRIFT]]></item>
    <item name="pageText"><![CDATA[REGLER TEXT]]></item>
    </section>
    <!-- terms of use -->
    </content>
    The second language in the XML file is Danish
    Can not make it work showing the picture can you help me?

    You've posted way too much code. Maybe somebody will have the time to read all of it and try and figure out what your problem is. It isn't really even clear that you know what your problem is.
    Try to focus down your question to something a little bit more direct. That is the best way to get help.

  • Repetitive saving over and over , help on actions / scripts

    Hi all i'm using cs5 to edit 1 picture into 12 variations for a canvas print ad , so i have the original image , which is 
    (1) reduced in size  from approx 30mb @300dpi to approx 7mb @100dpi my action for the 3d canvas requires it to be 40-60 dpi at approx 80"
    (2) actioned into a 3d canvas
    (3) then reduced back to approx 6" @100dpi
    (4) then grouped layers named 1 to 12 are turned on save as then 2 save as then 3 save as etc etc etc etc
    i'm up to 107 folders of 12 images  as you can imagine its getting borring lol
    is there a way via a script (which i've never used) so i can have lets say an image in a folder called "108"
    and i can run a script so it does what it does and saves the 12 image variations from that 1 image.
    any help will be appreciated  i can go through about 10 to 15 a day before i start losing the will to live .
    regards ken

    The outer frame is a blank template so i open the original (shutterstock) image then resize it ,run the studio gallery wrap action , this gives a 3d look and rotates the image slightly , then i run an action  ( i recorded) to copy that layer , reduce size 10 times (10 layers) to give the 10 colour variations around the outside , this is saved as colourmix.jpg
    then where the large image is  (layer 1bdg) i have the same colour filters in grouped layers so i end up with 12 pictures as follows
    colourmix
    red
    yellow
    green
    blue
    orange
    teal
    purple
    pink
    b&w
    Sepia
    Untouched no filter as original image
    i have over a thousand to get through and then i intend to do 7 or 8 frame variations , so this is gonna take a longggg time this is why i thought i come to the experts
    JJMACK thanks for the help will take a look at that now.
    very best regards ken

  • Hello, help on action script please.

    Hello,
    I heed some help on creating a button in flash,I need the
    steps to create a button that links to a website.
    Thanks in advance.

    The Help in Flash is quite thorough. Do a search for "create
    button" and "getURL".
    But basically, create a button image on the stage, select it
    and hit F8 then choose button as your symbol type. Now give your
    button an instance name... for example "myBtn_btn". Then in frame
    one, of the timeline where your button sits and on a layer for
    actions put the following code:

  • Help with action script to load image

    I have a Fla file that is works to slide open doors from
    button hit and open sliding doors, but I cannot get an image to
    load and display when the door begins to open, can some please
    help. I can send th fla file for viewing.

    I did modify the script. My images were in Adobe RGB (1998) and I modified the script to match them from that to the costco printer one. The images were changed as by looking at the screen, by printing to costco, and looking at the new profile assigned. But they didn't look the same on the screen or printed as those from either Preview or ColorSyncUtility.
    I finally wrote a 'shortcut' in iKey to just change all the open images in ColorSync Utility.
    Note: Graphic Converter might work. It does change the image on the screen but I haven't printed it. The screen does not look the same as ColorSyncUtility, It does not give you the choice of intent either.

  • Flash Game Problem Need Help! Action-Script 2.0

    Im making a flash game its a sniper game btw and i am have a problem with after killing the target for it to go to the next frame. I have tried on(press) on(release) for buttons i hae tried lots of different stuff (1.3 hours of trying) and so i was wondering if you could help me out. and here the link to the download for the source .fla yes i uploaded it cuz i really need the help ! thanks for any help! http://fileape.com/?act=download&t=yz6Lhp0oDdAB-7whXWB62WIoACXMVgV7r1flbKy17aJZamyC-vXNFwx tZP6pwXV50NGk3XWK9anDa4m6tBfGEtPOZwKbuZFcaFyGyEGiYqeILdcvVuEZy3QVHX3xY6S170xapkdrZJN9lov4k hxeqJ4_S6aGRpNQWjTT3MhudPLa1ZBAi79CiPqX5kN835lD7vzAU0O6WJZaK6jZBROg2A,,
    or
    http://fileape.com/dl/2gI8YiSW9QGzIgAu
    if the top one doesnt work (the top one shouldnt have a time wait)
    Thanks for all help
    also please if you can find the problem itd be nice to know what it is

    I will not download the .fla - maybe if you hosted the .swf I would view it.
    to change frame use: gotoAndStop(<framenumber>);
    (without the < >, just a number for the fram).
    I recommend you use movieclips for buttons and place all code on the main timeline. For movieclips, give them an identifier name (bottom left int he properties box of the movieclip) then on the main timeline use:
    movieclipName.onRelease = function(){
    gotoAndStop(10);//change 10 to the frame you wish to go to. gotoAndPlay(10) plays from the frame.

  • Help with Action script, experts needed!

    Hi, I have a website just put up today, all I need is advice, or better still, someone who can write these actionscripts for my site. Basically, I need to put into function, the three grey buttons, Print/ecard/Download on the lower right portion of the panel. Thanks in advance, I'll buy you coffee
    JT
    my site: http://www.jetpixels.com

    quote:
    Originally posted by:
    NedWebs
    Try moving these lines outside of the button function:
    _root.createEmptyMovieClip("container", 1);
    _root.createEmptyMovieClip("container1", 2);
    You can use "this" instead of "_root"... that'll save any
    problem if you ever move this within some other movie. Also, move
    the x/y assignments just under those lines since they relate to
    them directly.
    Hey thankyou for your help, that works now. although if i
    move the x and y assignments i would have to create another
    container right? Thanks again for your help.

  • Help with action script number guessing game

    can someone help me in flash cs6 to make a simple guessing game, i just need help with the coding. making a guessing game from 1-100
    The constructor is coded to assign a random number for
    the user to guess
    • In the section of code indicated by the comments
    (within the handler function doGuess()), write condition
    statements that guide the user to guessing the number
    using text written to the output
    • Trace out the users' guess, plus a message
    • Messages for the user depending how close they are from the
    guess, condition each of the following:
    • Guesses correctly, +/-1 from the guess, +/-10 from the guess,
    +/-20 from the guess, +/-40 from the guess, all other guesses

    close, it's actually an in class practice lab. After doing this we have to do another one that needs to be submitted. I just need help with the coding for this because i dont know how to start at all. let alone the actual lab.

Maybe you are looking for

  • Notify via email upon concurrent request failure

    Hi, I would like suggestions on the best way to solve the problem of being able to notify user(s) via email upon the failure of a concurrent request. Apps has the built-in ability to notify upon completion, not just upon failure. I want to limit the

  • Need DME cabability for payment program RFFOUS_C

    Hi, I am trying to create a DME file for Accounts Payable where we currently use the payment program RFFOUS_C. What do I need to do to get this done? Arne

  • Refresh the Report

    Hi I have to build an ALV report .. The Problem I am facing is that I need to Create a Report in which the Information for the Client Gets Updated Frequently . Eg:- The way it is done at AIRPORT when the Information for flights Keeps on Getting Refre

  • Hoe to provide a download help for the user

    hi all How to provide a download help for users, i.e. if i select download radia button and if i place cursor on file path it should provide the user to select what ever the drive and folder he needs can any body help asap. regards reddy.

  • Have i found another big bug? from 2nd monitor profile bug to Exp panel bug

    Well 2.0.1 is out and i was hoping for a fix for the second monitor color profile bug ... but no, not yet. But guess what .. i think i have found another little treat. Ok here we go, click on the Exposure, Recovery or Black Point sliders (but don't m