Action Script and button Behavior

Imported a bmp as png, made it into a movie clip. Setup the
AS to call for page 4. It works great. I would now like to have a
text box come up on the rollover. I tried to nest the mc into a
button. I can make the text box work but the script won’t
work when I click.
Could you refer me to a resource that would explain the
relationship between the two. Or is there another way to do this.
So the text box says “Click here for more Info”.
Can’t click to execute Action Script, I think it is not
addressable because it’s nested in the button.
If I reverse the nesting then the text box in the over frame
won’t execute.

Mjddoyle wrote:
> Imported a bmp as png, made it into a movie clip. Setup
the AS to call for page
> 4. It works great. I would now like to have a text box
come up on the rollover.
> I tried to nest the mc into a button. I can make the
text box work but the
> script won?t work when I click.
> Could you refer me to a resource that would explain the
relationship between
> the two. Or is there another way to do this.
> So the text box says ?Click here for more Info?. Can?t
click to execute Action
> Script, I think it is not addressable because it?s
nested in the button.
> If I reverse the nesting then the text box in the over
frame won?t execute.
Sorry, a bit chaotic and i can't really get your arrangement.
Please upload what you have so far, we will go from there.
There is so many ways to achieve the same thing in flash that
there
is no point going into it, could turn up suggested solution
totally
does not suit your project. Need to see what you have so far.
Upload to your server and provide URL for us to check.
Best Regards
Urami
<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
</urami>

Similar Messages

  • Error in action script and button

    I have a page that i have designed for practice. i have three
    buttons on each page and have been tring to get them to link to the
    proper page/frame. For instance the button for ABOUT US should link
    to the second page/frame. The code i am using is as follows.
    on (release) {gotoAndStop(2);
    This should have it go to page/frame 2 and stop but when i
    test it it gives me this error.
    Scene 1, Layer 'about', Frame 1, ... 1087: Syntax error:
    extra characters fou... on (release) {gotoAndStop(2);
    I am using action script 1.0 & 2.0. I am not sure what to
    do.

    The way that this function is written, on (release), it
    should be
    directly attached to a button or movieClip instance. However,
    the
    gotoAndStop(2) command is telling the button or clip to go to
    frame 2,
    not the main timeline. If you change that line to
    _parent.gotoAndStop(2), you'll get the playback head on the
    main
    timeline to move, not the playback head in that button or
    clip.
    A far better method is to assign instance names to each
    button or
    movieClip that you want to react to actionscript. Then you
    can write the
    function(s) for those instance names. You would write the
    actionscript
    to a frame instead of directly on the button or clip. This
    makes the
    actionscript much easier to find when you need to edit.
    So, for instance, you could then write a set of functions to
    move the
    playback head. Something like this:
    // we'll assume that the buttons are named button1, button2,
    button3
    button1.onRelease = function() {
    gotoAndStop(X);
    button2.onRelease = function() {
    gotoAndStop(Y);
    button3.onRelease = function() {
    gotoAndStop(Z);
    // where X,Y and Z are the frame numbers that you want to
    move to
    // you don't need an explicit reference for the timeline for
    the
    playback head to use here. The code and the objects are all
    on the same
    timeline.

  • Having trouble adding action script to button symbol

    Hello everyone:
    I am hoping someone will read this as I am a developer in
    'dires straits' with Flash ( a newbie). My problem regards a
    layer called "button" which has already been converted to symbol
    and turned into an invisible button. The problem lies when I try to
    use the selection tool to select it so that I can add action script
    to it. Instead of the actions dialogue box saying "actions-button",
    it says "actions-frame", and as a result, the action script doesn't
    work. I don't know what to do, it should be simple to select it but
    something is wrong. If you feel a need to help a developer in need,
    you can email me at [email protected], and I can e-mail
    you the file so that you can help. Thanks, or you can call me at
    310-867-5167
    Corinna

    Can you plant the fla file on a server and provide a link to
    it? Zip it up first if possible.

  • Action Scripting for button

    I created a little 'movie clip' of a continuous animation and
    want to make it a button that can be used in dreamweaver. I was
    told I would have to link it from flash (as dreamweave can not link
    a swf file to a webpage). I was having a problem trying to action
    script the movie clip - when I selected the 'movie clip' graphic it
    said: Current selection can not have actions applied to it. How
    should this be done?
    Thanks

    you're right - that should work. my first thing that i test
    when something like that happens is that every keyframe in the
    tween contains exactly the same instance. A common problem is that
    the instance name of the clip may be slightly different(eg a space
    somewhere) in different keyframes.
    Rather than looking for the problem, I usually just clear the
    keyframes in the tween and then put them back in. In your case I
    cleared the keyframe on frame 12 on layer "see more" and then
    inserted keyframe(returning it to color: None) and tested the
    movie. The button works fine!
    So then i went back to your original movie to try to find
    what was inconsistent between the two keyframes in 'see more' and
    couldn't find the problem... so anyway, this looks like a situation
    where we may not know the reason for the problem but at least we've
    found the solution...

  • Shell scripts and buttons

    i cannot figure out how to get a button made in interface builder/xcode to run/execute a simple shell script. how do i do it. say i made a regular push button named button and i wanted it to start the "fivemin" shell script i pasted in below. assume the shell script is in my path already, do i need to export the path again as well.
    also, my version of xcode is missing the shell script automator fron the new products options, is this a new thing.
    but i would rather do it in a cocoa app. please give me an example say with a timed loop so i can check to see the process running via ps
    ###name: fivemin
    #!/bin/bash
    # this shell script simply sleeps in $incr second intervals for
    # five minutes
    trap 'echo "fivemin: EXITING"' EXIT
    typeset -i nsecs=5*60 i=0 incr=4
    while [ $i -lt $nsecs ]; do
    sleep $incr
    ((i+=incr))
    done
    exit 0

    To wrap a unix tool you need to use NSTask. Here's a useful tutorial from CocoaDevCentral.
    If you're new to Cocoa as you say (in your other post), then I'd first recommend working through a couple of the basic tutorials knocking around to get an idea of the language and the tools available. Apple's own venerable 'Currency Converter' tutorial is here. MacDevCenter's also got quite a few here. You'll be able to find others on the web.
    My version of Xcode (2.1) has a 'Shell Script Automator Action' in the new project assistant, 'Action' section. I've no idea if this has changed in the latest versions, nor why yours might be missing it. The template used when creating it is located in /Application Support/Apple/Developer Tools/Project Templates/Action/Shell Script Automator Action/.
    Another solution that you might consider is using AppleScript Studio. This would use the 'do shell script' command from AppleScript and would use Interface Builder to create your window and button in a similar manner to a Cocoa version.

  • New to action script and getting: TypeError: Error #1009: Cannot access a property or method of a nu

    I am getting this message in the output tab for buttons that I am trying to create.  Here's the code:
    import flash.events.MouseEvent;
    stop();
    function goHome(myEvent:MouseEvent):void {
    gotoAndStop("home");
    SoundMixer.stopAll();
    function goAbout(myEvent:MouseEvent):void {
    gotoAndStop("about");
    SoundMixer.stopAll();
    function goBusiness(myEvent:MouseEvent):void {
    gotoAndStop("business");
    SoundMixer.stopAll();
    function goContact(myEvent:MouseEvent):void {
    gotoAndStop("contact");
    SoundMixer.stopAll();
    function goArchives(myEvent:MouseEvent):void {
    gotoAndStop("archives");
    SoundMixer.stopAll();
    function goBioTech(myEvent:MouseEvent):void {
    gotoAndStop("bioTech");
    SoundMixer.stopAll();
    function goRealEstate(myEvent:MouseEvent):void {
    gotoAndStop("realEstate");
    SoundMixer.stopAll();
    function goTechnology(myEvent:MouseEvent):void {
    gotoAndStop("technology");
    SoundMixer.stopAll();
    function goEnergy(myEvent:MouseEvent):void {
    gotoAndStop("energy");
    SoundMixer.stopAll();
    home_btn.addEventListener(MouseEvent.CLICK, goHome);
    about_btn.addEventListener(MouseEvent.CLICK, goAbout);
    business_btn.addEventListener(MouseEvent.CLICK, goBusiness);
    contact_btn.addEventListener(MouseEvent.CLICK, goContact);
    archives_btn.addEventListener(MouseEvent.CLICK, goArchives);
    bioTech_btn.addEventListener(MouseEvent.CLICK, goBioTech);
    realEstate_btn.addEventListener(MouseEvent.CLICK, goRealEstate);
    technology_btn.addEventListener(MouseEvent.CLICK, goTechnology);
    energy_btn.addEventListener(MouseEvent.CLICK, goEnergy);
    I ran the debugger and got this:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at peakInsights_fla::MainTimeline/frame1()[peakInsights_fla.MainTimeline::frame1:48]
    I guess it's telling me there's a problem with line 48 but what?
    The home, about, business, contact, and archives button works. On the business page there are the remaining buttons biotech, technology, real estate, and energy. when i test it; i get the finger but the buttons don't work. this is my first flash site so I'am new, new.

    I followed the steps and read some of your comments on the same top topic in another thread. When I put it on the first frame it was okay but the next button on that page had the same problem.  So what I am guessing is that I have to either create a document class or put the actions where the buttons are.  Am I understanding that correctly?  In the other thread in which you helped someone else; there was so comments about document class.  I found a tutorial on it and the way I understand it is that it you can put you actions in an external document.  But you have to include in the event listener the frame in which you want that action to happen.
    Thaks for your help.  And patience.

  • Action script and default values

    While importing data through action script, even if the property value present in Action script is same as default value defined at the property level , DRM marks that property value as Overridden in the hierarchy.
    Is there any possible way to avoid this?

    Default value is set when no value is entered for the property. As soon as you enter a value for the property thru action script or manually, its overridden even though the value is the same which was set at the property level
    Right click on the property and do a remove value then the icon should be set to default again.
    If you want to restore multiple properties back to default, then use remove all below at the rollup level

  • Problem with action script to button

    Hello all.
    I'm having a problem with my adobe flash CS3 action script. My button cant link to the other URL. I tried to put an action script but i fail. anyone can help me? here the attachment for my flash document.

    HELLO,
                  just check       navigateToURL()

  • Action Script and Codes

    Dear Flash Experts,
    I know we can place codes within "Actions", but where do we
    go to view the actual codes? You know behind
    the scene. Is there a way to do so. I can not believe Adobe
    would design a software program such as "Flash" and
    not allow the Designer to view the codes that have been
    placed within the website.
    Can anyone help?
    Thanks!

    in flash help docs, open Actionscript Language
    Reference-->Actionscript Classes-->XML.. then read

  • Transition script and button script don't work together

    Hi
    I've been experiementing with actionscripting transitions
    between sections... this is the first site I have tried this with
    (last 3 had swf loaded in one after another rather than
    transitioned between). I used some code from kirupa.com which works
    for loading movies in and out, but I also have some code for my
    movie buttons. I can get one or the other working, but not
    together, so I guess I'm clashing code somewhere, I could do with
    some help please to find what I'm doing wrong...
    The transistion code and calling-up buttons is;
    Code:
    Menubar.b1.onRelease = function() {
    if (_root.section != "about.swf") {
    _root.section = "about.swf";
    _root.transition.gotoAndPlay("closing");
    Menubar.b2.onRelease = function() {
    if (_root.section != "portfolio.swf") {
    _root.section = "portfolio.swf";
    _root.transition.gotoAndPlay("closing");
    Menubar.b3.onRelease = function() {
    if (_root.section != "contact.swf") {
    _root.section = "contact.swf";
    _root.transition.gotoAndPlay("closing");
    and the code I have on my movie buttons is;
    Code:
    on (rollOver) {
    gotoAndPlay("rollover");
    on (releaseOutside, rollOut) {
    gotoAndPlay("rollout");
    Is there a way to combine them???
    Thanks. Wayne.

    your on(rollover) handlers are applied to buttons that are
    children of a movieclip that has handlers defined. the parent
    movieclip (Menubar.b1 etc) is going to intercept those mouse
    events.
    to remedy move you on(rollover) etc handlers to your
    movieclip buttons b1, b2 and b3 on MovMenu's timeline.

  • Is Action Script for netStreaming and FLVPlayback component radically different, not interchangeabl?

    Hi.
    I am using NetConnection and NetStream to play back flv in Flash Pro CS5.5, and trying to add cue point to trigger events using Action Script, and to automatically rewind to the start at the end. There is no problem to trigger events via AS when the cue points are embedded, but i am unable to add cue points using AS.
    When i use an FLVPlayback component, there is no problem to add cue points (http://help.adobe.com/en_US/ActionScript/3.0_UsingComponentsAS3/WS5b3ccc516d4fbf351e63e3d1 18a9c65586-7feb.html) and to loop the playback using autoRewind (and fl.video.VideoEvent.AUTO_REWOUND which i got from Nafem at http://forums.adobe.com/thread/857036).
    However, i am failing to use this same code w/a netConnection and netStream, and would appreciate any help.
    thanks.

    Hello,
    Well, I've got some help from another helpful fellow at macscripter.net and I have a working script - albeit a bit more specific (ie, hardcoded extensions to look for) and a different approach.
    Here's the script:
    on adding folder items to thisFolder after receiving addedItems
    repeat with movieFile in addedItems
    set {Nm, Ex} to getName_andExtension(movieFile)
    set movieFilePath to (thisFolder as text) & Nm & ".avi"
    set subtitleFile to (thisFolder as text) & Nm & ".srt"
    if Ex is ".srt" then
    try
    tell application "iFlicks"
    import (movieFilePath as alias) with gui
    end tell
    end try
    else if Ex is ".avi" then
    if my FinderItemExists(subtitleFile) then
    try
    tell application "iFlicks"
    import (movieFilePath as alias) with gui
    end tell
    end try
    end if
    end if
    end repeat
    end adding folder items to
    on getName_andExtension(F)
    set F to F as Unicode text
    set {name:Nm, name extension:Ex} to info for file F without size
    if Ex is missing value then set Ex to ""
    if Ex is not "" then
    set Nm to text 1 thru ((count Nm) - (count Ex) - 1) of Nm
    set Ex to "." & Ex
    end if
    return {Nm, Ex}
    end getName_andExtension
    on FinderItemExists(thePath)
    try
    set thePath to thePath as alias
    on error
    return false
    end try
    return true
    end FinderItemExists

  • Difference in using the same component made in mxml or action-script

    Hi,
    I made a sample project to show a kind of bug in the SuperTabNavigator component of FlexLib
    In this sample you can see that using the same component (made in both mxml or action-script) can make a difference
    I'm just wondering why ?
    Thanks
    Here is what i've posted :
    What steps will reproduce the problem?
    1. Create a button to dynamically add new tab with icon on a SuperTabNavigator
    2. Click on this button to add new tabs
    What is the expected output?
    - The expected output is tabs added without abnormal behavior
    What do you see instead?
    - Every time a new tab is created the one who had the focus has its content
    (icon + label) moving from the top-left of the tab to its original position
    Please provide any additional information below.
    Configuration:
    - Flex Builder 3 in Eclipse
    - FlexLib 2.3
    Sample:
    (see attached file)
    There is two type of tab, one in action-script and one in mxml
    They both are equal
    - Adding a new action-script tab to SuperTabNavigator works fine
    - Adding the same tab but an mxml one doesn't
    - Adding a new action-script or mxml tab to TabNavigator works fine
    -> meanings that the issue comes with SuperTabNavigator
    - Adding a new mxml tab to both SuperTabNavigator and TabNavigator at the
    same time makes TabNavigator to get the same bad behavior
    Remarks:
    - Tried everything but i'm really stuck
    - Weirdly, removing the PopUpButton correct the issue
    - In the same way if you keep adding action-script tab it automatically scroll to the
    last tab. And if you do the same with mxml tab then it add the tab at the end and
    scroll to the first one.
    => what could be the difference between using action-script or mxml object ?

    Here is one possible solution:
    You can use the ExternalInterface (
    http://livedocs.macromedia.com/flex/2/langref/flash/external/ExternalInterface.html)
    class to communicate with JavaScript. JavaScript can then popup the
    media player very easily like this:
    http://www.webreference.com/programming/javascript/jf/column5/index.html
    The documentation on the ExternalInterface class has a nice
    example (in the bottom of the page) on how to communicate with
    JavaScript in a browser. Hope this helps,
    -george

  • Action Script to add MC as sub-pages ??

    Alright please help.. I have tried everything, been fooling
    around with this in the past 5 hours and its not going anywhere :(
    . Here is what i have. :
    I have 6 menu buttons... Button 4 is what i am concentrating
    on.
    at the moment here is the current action script of button 4 :
    --CODE---
    //-----this first few lines just controls the button
    animation --
    on (rollOver) {
    if (_root.link<>4) {
    gotoAndPlay("s1");
    on (releaseOutside, rollOut) {
    if (_root.link<>4) {
    gotoAndPlay("s2");
    //-----end of button animation-----
    on (release) {
    _root.scroller.scroller.gotoAndStop(3); // I understand this
    calls for fram 3 in an mc within an mc.
    if (_root.anim==true) { // not really sure where this means
    if (_root.link<>4) { // if value of _root.link
    <> 4 then activate the following code
    _parent["but"+_root.link].gotoAndPlay("s2"); // I kind of
    understand this part, i know it has to do with playing the button
    animation, but i am stuck where it says "but" + _root.link .
    _root.link = 4; // value of root.link
    _root.all.play();
    ok so basically, from what i can figure out what this action
    script does is : somehow it calls out a mc called "all action page"
    and the contents inside this mc are two layers. one layer is just a
    stop frame, and the other layer has multiple frames, each frame in
    the layer are each different mc's .. the _root.value is the value
    of each frame, for example if i change the value to 2 or 3 it will
    load frame 2 or 3 within the "all action page" mc..
    now my question, is is there any way i can replicate this
    script for the use of button 4 ?? i know i can just keep adding new
    frams and mc's to the current "all action page" and just keep
    changing the value that corresponds to the frame number, but i
    would like to make it more neater and structured incase if i need
    to change anything. any suggestions ??
    -Steph'

    This package contains two scripts the use EXIF meta data. The one you want is StampExif the other GoogleMapGPS....
    Crafting Actions Package UPDATED Aug 10, 2014 Added Conditional Action steps to Action Palette Tips.
    Contains
    Action Actions Palette Tips.txt
    Action Creation Guidelines.txt
    Action Dealing with Image Size.txt
    Action Enhanced via Scripted Photoshop Functions.txt
    CraftedActions.atn Sample Action set includes an example Watermarking action
    Sample Actions.txt Photoshop CraftedActions set saved as a text file.
    More then a dozen Scripts for use in actions
    Download

  • Video Gallery Action Script 3

    I am creating a video gallery off of the demo action script
    3, video gallery, that is shown on this site. I have updated the
    XML file that contains the link to the thumbnails and videos to the
    appropriate url. When I test the project out, I get the following
    error:
    TypeError: Error #1085: The element type "video" must be
    terminated by the matching end-tag "</video>".
    at
    fvg::FlashVideoGallery/fvg:FlashVideoGallery::onDataHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/flash.net:URLLoader::onComplete()
    I am fairly new to Action Scripts and would really appreciate
    overcoming this hurdle.
    Thanks
    Ari

    arikanoa wrote:
    > I am creating a video gallery off of the demo action
    script 3, video gallery,
    > that is shown on this site. I have updated the XML file
    that contains the link
    > to the thumbnails and videos to the appropriate url.
    When I test the project
    > out, I get the following error:
    >
    > TypeError: Error #1085: The element type "video" must be
    terminated by the
    > matching end-tag "</video>".
    > at
    fvg::FlashVideoGallery/fvg:FlashVideoGallery::onDataHandler()
    > at
    >
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunctio
    > n()
    > at flash.events::EventDispatcher/dispatchEvent()
    > at
    flash.net::URLLoader/flash.net:URLLoader::onComplete()
    >
    > I am fairly new to Action Scripts and would really
    appreciate overcoming this
    > hurdle.
    >
    > Thanks
    >
    > Ari
    >
    > <?xml version="1.0" encoding="utf-8"?>
    > <!--
    > ***************************************
    > Settings.xml
    > Provides a configurable data source for the Flash Video
    > Gallery application.
    >
    > Configurable Settings:
    > - labels: exposes labels for localization.
    > - links: configure main screen links and resulting urls.
    > - filters(1): creates a list for filtering (up to 4
    filters).
    > - filters(2): creates an alternate list for filtering
    (up to 4 filters).
    > - videos: creates a list of video display information.
    >
    > Note: Text nodes are for localization and node
    attributes
    > are not. The exception is the 'url' attributes...
    >
    > Last Modified: March 2, 2007
    > ***************************************
    > -->
    > <flashvideogallery>
    >
    > <!-- Labels for localization -->
    > <labels>
    > <label name="title"><![CDATA[ActionScript 3.0
    Flash Video Gallery]]></label>
    > <label name="welcome"><![CDATA[<b>Click
    on a thumbnail to view
    > details</b>]]></label>
    > <label name="videoPreview"><![CDATA[Webvideo
    Preview]]></label>
    > </labels>
    >
    > <!-- Links for the main screen (up to 8 sidebar
    links) -->
    > <links>
    > <link name="textLink1"
    > url="
    http://www.adobe.com/products/flash/video/"><![CDATA[Learn
    more about
    > Flash video >]]></link>
    > <link name="textLink2"
    > url="
    http://www.adobe.com/devnet/flash/"><![CDATA[Visit
    the Flash Developer
    > Center >]]></link>
    > <link name="textLink3"
    > url="
    http://www.adobe.com/devnet/flash/articles/video_gallery.html"><![CDATA[Exa
    > mine the gallery source files >]]></link>
    > <link name="textLink4" url="
    http://www.adobe.com"><![CDATA[View
    more
    > examples of Flash video >]]></link>
    > <link name="textLink5"
    > url="
    http://www.adobe.com/products/flash/"><![CDATA[Learn
    about Flash CS3
    > Professional >]]></link>
    > <link name="textLink6" url=""/>
    > <link name="textLink7" url=""/>
    > <link name="textLink8" url=""/>
    > </links>
    >
    > <!-- Filter by list #1 (category radio button and up
    to 4 checkbox filters)
    > -->
    > <filters>
    > <filter name="radio1" view="1"><![CDATA[Filter
    videos by industry]]></filter>
    > <filter name="checkbox1" id="i0"
    view="1"><![CDATA[Content]]></filter>
    > <filter name="checkbox2" id="i1"
    view="1"><![CDATA[Entertainment]]></filter>
    > <filter name="checkbox3" id="i2"
    view="1"><![CDATA[Marketing]]></filter>
    > <filter name="checkbox4" id="i3" view="0"/>
    > </filters>
    >
    > <!-- Filter by list #2 (category radio button and up
    to 4 checkbox filters)
    > -->
    > <filters>
    > <filter name="radio2" view="0"><![CDATA[Filter
    videos by region]]></filter>
    > <filter name="checkbox5" id="r0"
    view="1"><![CDATA[Europe]]></filter>
    > <filter name="checkbox6" id="r1"
    view="1"><![CDATA[North America]]></filter>
    > <filter name="checkbox7" id="r2" view="0"/>
    > <filter name="checkbox8" id="r3" view="0"/>
    > </filters>
    >
    > <!-- List up to 36 videos for display in the gallery
    -->
    > <videos>
    > <video
    preview="thumbnails/Qlippit_3_Adam3_pix_to_grandP-26May07-0523PM.flv"
    >
    flv="video/Qlippit_3_Adam3_pix_to_grandP-26May07-0523PM.flv"
    filter2="r1"
    > filter1="i2">
    > <title><![CDATA[Creative
    Bubble]]></title>
    > <description><![CDATA[Creative Bubble needed a
    way to show their demo reels
    > to the largest audience possible with the best
    experience. Their solution is a
    > Flash-based UI that instantly streams video to their
    home page.]]></description>
    > <moreInfo url="
    http://www.adobe.com"><![CDATA[More
    info...]]></moreInfo>
    > </video>
    > </flashvideogallery>
    >
    1st. If you haven't already, get a nice xml editor such as
    http://www.wmhelp.com/download.htm
    free xmlpad editor for windows. Why? because it supports
    editing the
    dating in 3 different ways: Source <which has syntax/tag
    hilighting ,
    Grid , Table.. the grid is easiest to use and helps avoid
    deleting tags
    by mistake, which is what it sounds like you did based on the
    error
    message. If the above was a straight cut and paste of your
    xml file then
    you are missing
    the </videos> tag that belongs between
    </video> and </flashvideogallery>
    I have personally spent the last week playing with the
    example and
    modifying it to have a scrollbar so that i can show more than
    36 videos,
    and have edited the xml files to add more entries.

  • Action script normal/expert mode

    i'v been using flash mx for long time now and i want to
    upgrade to flash 8 so i could use the new features .. but the
    problem is i'm not expert in action script and i'v know that the
    versions after MX don't have the (normal) action mode which
    contains clickable menu to choose actions from it and the program
    types the action automaticly .... so i wanted to make sure is flash
    8 only (expert) mode or there is a way to use the normal mode in it
    .. please help me cause i don't want to get stuck with flash MX .

    http://www.justfuckinggoogleit.com/?q=flash%20&8%20&normal%20&mode
    Remove '_spamkiller_' to mail

Maybe you are looking for

  • Need upload program for Vendor master partners (XK02)

    Hello Experts, I need to write data uplaod program for XK02 for vendor master Partner functions. ( Basically we created some custom partner functions and attach it to many existing vendors ). So kindly advice me which is the suitable upload method fo

  • Accordion Jumping! HELP!

    I'm having a lot of trouble with my accordion. It is a long list of panels, so you have to scroll to see the bottom. The problem is, any time you click a tab, it throws you back up to the top of the page. I want it to stay on the tab the person click

  • Photosmart 6520 Printing 2-sided without binding

    I am trying to print a Two-Sided Brochure from Adobe InDesign CC, but every time I try, one side of the Artwork gets cut off on both the front and the back on the Short side. When I have US Letter selected I receive this message, "The Two-Sided optio

  • How to switch of Column sorting in the Web (7.0)

    Hi All, In my 7.0 created Web report I get a sorting icon in each column header. It's probably a basic question but how can I make these sorting icons disappear from my report? Probably a analysis item setting, but I can't find it. Many thanks, Ron

  • Questions on Still Image Export

    I shot a wedding where the photog's Hasselblad failed. Only the first two frames of each roll where successful. I need to export around 100 images as stills. Each time I use QT Conversion I have to select "still images" from the format drop down box.