#include "file_name.as" behavior in AS2

Hi All,
I need few info on #include usage in action script.
Before moving to the actual problem let me brief about my observation. I have a small weather widget which has 6 frames in timeline and each frame has AS2 code. I can use the variable defined or a function in frame 1 at frame(say) 6 and whole application was working fine. Later I moved the code from each frame to a .as (say app_frame_1.as, app_frame_2.as.... etc) file and included .as file in corresponding frame (I mean app_frame_1.as in frame 1; app_frame_2.as in frame 2). I did not include the .as file corresponding to frame1 in frame2. When I did these changes the application is not functioning as expected.
Can anyone please elaborate on difference between having code in each frame and having #include instead of code?
Thanks for your time and patience.

thanks...
I verified twice and I am sure nothing went wrong in the approach.... I observed that including app_frame_1.as in frame 2 seems to be working... When I removed .as file corresponding to frame 1 from frame 2 then the problem appears again...

Similar Messages

  • Server Side Includes with Server Behaviors

    Is it possible to include pages that have server behaviors attached to them, or are these behaviors limited to pulling in just plain html from the included pages?
    For example, I want two pages, index.php and login.php.
    I want the login.php page to have all of the user login behaviors/links/fields/buttons/etc. and then Include that on the index.php page. Am I supposed to be able to do this using ADDT server side includes?
    I've been successful using server side includes to include static text on a page, but not dynamic content with behaviors attached. I'm not sure if I'm just have a mistake, or if this won't work in the first place.
    thanks!

    Hi,
    this is generally possible, as the included files sure can have their own server hehaviours -- did that several times, where the "container" page had about no server behaviours embedded, but the included file did.
    ADDT´s server side includes will, loosely said, basically just "dynamically" strip the included document´s "head", but leave other components like server behaviours untouched
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Find and Replace using Behaviors

    I used Find and Replace in CS3 to add HTML code that includes
    a DW Behavior. The behavior opens a message popup when clicked.
    The Find and Replace works and by adding the Behavior code
    correctly. However, when I save the page and then click the link to
    test the behavior, the popup does not appear.
    The only way I can get the Behavior to work correctly is to
    complete the Find and Replace, double-click to open the Behavior
    from the Tag group, close the behavior and then resave the page.
    Is this a DW problem or am I doing something wrong?

    You are probably not adding all the necessary code during the
    search and
    replace. What exactly are you pasting in?
    Alec
    Adobe Community Expert

  • Basic Motion Spin Behavior has the 2 arrows missing

    In the HUD, why are the 2 rounded arrows in the center missing in the Basic Motion "Spin" Behavior? The outer circle appears, but the center is black, not allowing access to the rotation axis.

    I had the same issue on my 8-core Mac Pro. I solved the issue by removing the extra video card I had in the system. Now I am using two cinema screens on one Gforce 8800 GT and Motion works fine again, including the spin behavior's HUD.
    Hope this will help.

  • Rollover States - Kickin my tush!

    Hello to everyone smarter than I (which is probably everyone here,  including the dust on the monitors)...
    I have a rollover issue -
    I have a series of rollover buttons, simple rollovers visually made to  look like they're in there off_state, once rolled over, they appear on,  once clicked, they go to a predetermined URL, not a biggie. However,  there needs to be one button, that when the piece appears on screen, one  button, should be in its ONstate. Once you rollover it, it should  behave like the others (staying in its OFFstate, until rolled over and  clicked).
    I have NO idea how to do this. I'm currently working in CS3, using using  AS2.
    I have a bunch of demanding women nipping at my heels, so if someone  could help out real soon, I'll be ur best friend

    If you want to control a button beyond its normal behaviors in AS2, then you'll need to create the button as a movieclip and assign actionscript to have it behave like the button you expect it to be.  Similar to a button symbol, you will have different content in different frames for the different states, but you will need to create code to control which frame the button goes to for particular interactions.

  • Monitor Blanks in and Out When Waking From Sleep

    Since getting my Mac Pro (with Apple installed RAM and NVIDIA GeForce 8800 GT), I've noticed that the screen does not immediately turn on when waking from sleep, as my older Macs did. Rather, it turns on for a split second, goes blank for two seconds, turns on again for a split second, goes off again for a second or more, and then comes on permanently.
    This behavior only occurs when waking from sleep; it does not occur when the monitor turns on from the active screen saver.
    Is this normal for the MAC Pro with an NVIDIA GeForce 8800 GT? I have a HP w2408h monitor with a DVI to HDMI cable. Everything else works fine, including all video behavior.
    Thank you.

    Hm. Bluetooth, interesting. Thanks for the idea.
    I just opened the lid to see about the BT setting and the display didn't go off-on. The BT is off, I'm pretty sure I did that when setting it up as I don't use BT for anything.
    I wasn't suspecting anything was seriously wrong, it's just that quick-on feature was highlighted as a selling point and I was curious about the glitch, if it was a setting I could change, for instance like you've highlighted. Annoying when things don't work as advertised.
    And if I show the machine off to colleagues and friends, that will be a bad first impression they will want explained.

  • Attach movie in as3

    Hey all, I'm fairly new to flash, but I can do a few things,
    I had a
    good flash program going in as1, which I'm trying to convert
    to as3.
    I had asked on irc for some help, but it was touching on
    subjects I have
    not covered on as, and even after looking up and applying,
    its causing
    countless problems.
    1) My application receives information currently from echoed
    information
    from a db onto a html page, which flash is able to feed in
    e.g. (echo
    &var+rowvar+&).
    I'm considering xml although I'm unsure about benefits or
    anything
    2)in as1 my application could simple do a for loop with the
    number being
    passed in via the number of rows in the database which was
    echoed onto
    the page then fed into flash.
    Do for loops act the same in as3?
    3)I was attaching a movie clip multiple times, which I need
    to get to
    act all independent of each other, so each one needs its own
    name, as1
    this was possible via "_root.attachMovie("button","btn"+i,
    100+i);"
    and this is where the main problem is, as I was asking about
    this,
    attachmovie no longer works, and I got told to sort out
    "linkage" which
    I have done, then setting up class and using addchild. which
    I have
    tried... but it does not work and I cannot get around.
    reading up on it, documents say addchild should enable the
    object to be
    displayed. which for me isnt happening.
    Here are the list of problems I have been getting:
    -An ActionScript file must have at least one externally
    visible
    definition. so I looked it up, and I figured I have to put up
    a
    package and public class (athough I do not understand
    class's)
    which resulted in the error
    -TypeError: Error #1006: addChild is not a function. at
    global$init()
    which sounds great...
    messing around got me to
    -5008: The name of definition 'test' does not reflect the
    location of
    this file. Please change the definition's name inside this
    file, or
    rename the file. z:\location\index.as
    so I changed the class "test" to "index" where I encountered
    more
    problems...
    [code]
    var page1:page_mc = new page_mc ();
    this.addChild(page1);
    [/code]
    [code]
    package
    import flash.display.MovieClip;
    public class index extends MovieClip
    public function index()
    trace('lol');
    [/code]
    and by the way, I have tried using addchild on frame1 of the
    fla, with
    no results.
    I'm sure I'm missing something at the biginning because
    looking up every
    problem and getting more errors seams silly for something
    that was so
    easy in as1, that I would need so much code to stop problems
    of 1
    function..)
    Thanks in advance
    Slpixe

    Slpixe,
    > 1) My application receives information currently from
    > echoed information from a db onto a html page, which
    > flash is able to feed in e.g. (echo
    &var+rowvar+&).
    I'm with ya so far.
    > I'm considering xml although I'm unsure about
    benefits>
    > or anything
    If you're passing in a handful of name/value pairs, you
    probably don't
    need XML. By what you're describing, it sounds like you're
    using FlashVars,
    or passing these variables into the SWF as a query in the
    HTML. The benefit
    to FlashVars is that the SWF has access to these values
    immediately upon
    load. You don't have to take measures to load the data
    yourself, and then
    to respond to onLoad events, and so on -- they're just
    magically there.
    Prior to AS3, those variables are scoped to the main
    timeline, as if you
    had declared them there in frame 1. In AS3, you can use the
    same technique,
    but the variables are scoped as properties of the parameters
    property of a
    LoaderInfo instance associated with the main timeline. Sounds
    like a
    mouthful, but all it means is that you have to path to the
    incoming
    variables:
    this.loaderInfo.parameters.myVar1;
    this.loaderInfo.parameters.myVar2;
    this.loaderInfo.parameters.myVar3;
    If you have tons of hierarchical data, or data that don't
    lend
    themselves to simple name/value pairs, XML will help
    considerably. Of
    course, you'll have to load the XML, then navigate among your
    nodes to
    retrieve the information, but AS3's E4X syntax makes this
    much easier than
    it was to do the same with XML in AS1/AS2.
    > 2)in as1 my application could simple do a for loop with
    the
    > number being passed in via the number of rows in the
    database
    > which was echoed onto the page then fed into flash.
    > Do for loops act the same in as3?
    Yes.
    > 3)I was attaching a movie clip multiple times, which I
    need to
    > get to act all independent of each other, so each one
    needs
    > its own name, as1 this was possible via
    "_root.attachMovie
    >("button","btn"+i, 100+i);"
    Okay.
    > and this is where the main problem is, as I was asking
    about this,
    > attachmovie no longer works, and I got told to sort out
    "linkage"
    > which I have done,
    Meaning, instead of a linkage identifier, a linkage class.
    > then setting up class and using addchild. which I have
    tried... but
    > it does not work and I cannot get around.
    Heh. Well, it does work, I promise you that. ;) So it should
    just be
    a matter of stepping through the approach you're using to see
    what's going
    awry when.
    > reading up on it, documents say addchild should enable
    the
    > object to be displayed. which for me isnt happening.
    The addChild() method originates with the
    DisplayObjectContainer class,
    which means you need an instance of that class as a reference
    when you
    invoke the method. Makes sense, right? You couldn't
    instantiate an an
    array, for example, and do this:
    var arr:Array = new Array();
    arr.addChild(someVisualObject);
    ... because the Array class doesn't support the addChild()
    method. It's the
    DisplayObjectContainer class that does, so you can only add
    objects to the
    display list of an object that supports display lists.
    Fortunately, the main timeline is (usually) an instance of
    the MovieClip
    class, and MovieClip inherits much of its functionality from
    the
    DisplayObjectContainer class. Even when the main timeline is
    configured as
    a sprite, it still inherits the functionality in question,
    because the
    family tree goes like this: DisplayObjectContainer -->
    Sprite -->
    MovieClip.
    So all you really need, in theory, is to invoke that method
    on any movie
    clip symbol's instance name, or on a reference to the main
    timeline, and
    your object should show up.
    > Here are the list of problems I have been getting:
    > -An ActionScript file must have at least one externally
    visible
    > definition. so I looked it up, and I figured I have to
    put up a
    > package and public class (athough I do not understand
    class's)
    I'm assuming, then, that your code -- at least, currently --
    all appears
    in keyframes?
    > which resulted in the error
    > -TypeError: Error #1006: addChild is not a function. at
    global$init()
    > which sounds great...
    Hrrrm.
    > messing around got me to
    > -5008: The name of definition 'test' does not reflect
    the location of
    > this file. Please change the definition's name inside
    this file, or
    > rename the file. z:\location\index.as
    So then, it sounds like you're putting your code inside a
    file named
    index.as, which means (by the rules of how Flash operates)
    that you're
    defining a class called index. If you're using the class
    keyword to define
    this class, it means you'll have to use the word "index" as
    the name of your
    class, because class names have to match the names of the
    files in which
    they're defined.
    > so I changed the class "test" to "index" where I
    encountered more
    > problems...
    >
    > [code]
    > var page1:page_mc = new page_mc ();
    > this.addChild(page1);
    > [/code]
    To me, it looks like you've put these first few lines ahead
    of your
    package and class declarations. That's now how class files
    work. All of
    your code must be sandwiched inside the package or (usually)
    class
    declaration. Otherwise, you're not writing a class at all
    (which is fine)
    ... but then, you need to use the include directive (just
    like AS1/AS2's
    #include), which simply pulls the code in at compile time as
    if it were
    typed in a timeline keyframe.
    In this code:
    > [code]
    > package
    > {
    > import flash.display.MovieClip;
    >
    > public class index extends MovieClip
    > {
    > public function index()
    > {
    > trace('lol');
    > }
    > }
    > }
    > [/code]
    You're defining a class named index that extends MovieClip.
    That means
    index *is* a movie clip, which means it has available to it
    all the
    functionality defined by the MovieClip class. If you were to
    invoke
    addChild() from some method *inside* this class declaration,
    it would work
    ... because the addChild() method is supported by movie
    clips.
    > and by the way, I have tried using addchild on frame1 of
    the fla,
    > with no results.
    Mixing and matching is fine. You can indeed use timeline
    code alone in
    AS3, or class code alone, or a combination of both. I wonder
    if you're just
    "in too deep" with the file you have? I recommend you brush
    away the
    distractions and start a fresh, new FLA file.
    In that file, draw a quick shape -- just a circle, say --
    and convert it
    to a movie clip. Right-click on that symbol in the Library
    and choose
    Linkage. Select "Export for ActionScript" and give this thing
    a linkage
    class (for example, Circle).
    When you click OK to close the dialog box, Flash will warn
    you that no
    such class (Circle) exists, and offers to write that class
    for you. Click
    OK.
    Now enter frame 1 and use the Actions panel to type these
    lines:
    var orb:Circle = new Circle();
    addChild(orb);
    The variable orb (just an arbitrary name) is typed as Circle
    -- which is
    the class Flash just wrote for you -- and set to an instance
    of that class.
    In the Linkage dialog box, you will have seen that the Circle
    class extends
    MovieClip, so this isn't much different from instantiating a
    new movie clip
    in AS3.
    Finally, the DisplayObjectContainer method, addChild(), adds
    your Circle
    instance to the display list of the main timeline. You could
    precede the
    addChild() reference with the "this" keyword, but even
    without it, Flash
    understands that you're refering to the timeline in which
    this code appears.
    And because that timeline is a descendent of the
    DisplayObjectContainer
    class, the method works.
    David Stiller
    Co-author, The ActionScript 3.0 Quick Reference Guide
    http://tinyurl.com/2s28a5
    "Luck is the residue of good design."

  • Document() not returning a useable node set?

    If I open another document during a transform, I can dump out the file using
    xsl:message, but can't match any tags in the loaded file. If I replace the Sun
    implementation with the apache implementation of xalan with -Xbootclasspath/p,
    the code runs fine.
    Example fragment:
    <xsl:variable name="user_type">
    <xsl:for-each select="//include/@file_name">
    <xsl:variable name="xmlFile">
    <xsl:value-of select="$xml_dir"/>/<xsl:value-of select="."/>
    </xsl:variable>
    <xsl:for-each select="document($xmlFile)" >
    <xsl:value-of select="key('type_def_key',$datatype)//datatype" />
    </xsl:for-each>
    </xsl:for-each>
    </xsl:variable>
    <xsl:message>
    User type <xsl:value-of select="$user_type" /> for <xsl:value-of select="$datatype" />
    </xsl:message>
    I believe the problem is with the document function not returning a useable
    node set , or all of the matches are going back to the original document rather
    than the one that was just open. With in the context of the new document
    select="." appears to work, but nothing else seems to.
    Output using Sun's xml implementation (JDK 5.0, 6.0 snapshot)
    User type for Gms_User_Id
    Output using the Apache xml implmentation (Xalan 2.6)
    User type numeric for Gms_User_Id
    The code and xml files are the same in both cases, just changed the runtime
    class path with

    This is behaving as designed.
    Configuring a view object so expect certain entity subtypes does not automatically restrict the rows it queries. If the view object's query returns any row that has a discriminator value that does not match the design-time configured entity subtypes expected, it is not added to the result rowset.
    If you have limited the number of fetched rows to 1, and if that row had a discriminator attribute value that does not match that/those of the expected entity subtypes, then the single row returned by the query will not be added to the result rowset. The result is that the row set has zero rows in it.

  • Legend in CNiGraph

    I am using the CNiGraph control in Measurement Studio enterprise edition v7.0.0.341 for Visual studio.NET 2003.  I have multiple plots and the number of plots is variable depending on user input.  A dynamic legend for this plot is highly desirable in order to make the data clear to the user.  I would like to know if there is a way (preferrably not using a static picture object because my legend needs to be dynamic) to add a legend to the graph.
    I read a post referring to measurement studio v6.0 that stated that this feature was not currently supported.  I am hoping that this has been added in v7.0.0.341 since graphs with multiple plots seem to demand support for legends.
    Thank you.

    Seamus,
    The simple answer to your question is no. The improvements made to CniGraph (CWGraph) do not include the legendary behavior you are after. I assume you have seen this KnowledgeBase document that walks through how to use a second graph as a legend for the first. The steps described in this document could be modified so that the elements of the “legend” are configured programmatically.
    Now, if you are willing to start making the move to C#, the WaveformGraph can be tied to a Legend control. Yes, a Legend control. There is a description of this control on page 2-8 of the Measurement Studio User Manual.
    Regards,
    Eric

  • Newbie - how to change the color of a line using ActionScript?

    This must be the most basic question in the world, but I've
    been searching the documentation for an hour.
    All I want to do is to draw a line on the stage, and then
    change its color (or endpoint positions) dynamically using
    ActionScript.
    This is the 1st step to creating complicated dynamic
    animations... (No, I do not want to use the timeline, I want to do
    it dynamically.)
    Yet a line can't be an instance, so I'm confused -- how can I
    possibly do this? Is there some key concept I'm missing here?
    Thanks
    Michael

    AS2 required you to create your own function for doing
    primitive shapes. In AS3 that has changed and the graphics package
    includes not only the old AS2 drawing API but also has methods for
    doing squares, circles etc.
    If you are a VB programmer, my honest opinion is to leave
    your traditional OOP mindset at the door when using Flash.
    Actionscript is still in its infancy and although AS3 does really
    strive for OOP oneness, it isn't there 100% like VB is which has
    been around 20 years longer and gone through numerous additions
    etc. Whenever I learn a new language VB, PHP, C, AS, Java....I try
    my best to look at the language as its own identity. All language
    share similarities but they all have their own idiosyncrisies. Keep
    an open mind and you'll find what you need.
    Most of the seasoned guys here will also tell you that
    although the documentation is decent, you are better off going out
    and picking up a book on Flash 8/CS3 and another one on
    Actionscript. Familiarize yourself with the program that way.
    With your programming background, I'd recommend picking up
    Essential AS2 (or AS3) by Moock depending on your version of Flash.
    Also, if you are more interested in the programmatic side of Flash,
    why not look into Flex Builder and AIR. Since it is purely a
    programming environment (no Flash IDE), you'd be more
    comfortable.

  • In ActionScript 2.0 , How can I send HTTP request and get the response in JSON format.

    I am using ActionScript 2.0 for my app development. I have checked XML and LoadVars class. These classes by default send/receive data either in XML or name/value pair format. I want to send data in JSON format and receive the response in JSON format. How can I achieve this behavior using AS2.0. I have noticed that AS3.0 has the capabilities to do so. My client platform doesn't support AS3.0. Can anybody suggest a way to achieve this?
    Thanks in Advance.

    Atlast I am able to find the solution for this problem. In the end solutioin is very simple.
    Following steps will help in sending request in JSON format.
    1. extend LoadVars class
    2. override toString method. (It should return JSON format )
    3. Use subclass to send the request.

  • Document Class with Flash Lite 4.0

    I'm developing for Flash Lite (4.0) for the first time and I see that in the properties panel the Document Class section is grayed out. Does this mean that Flash Lite doesn't utilize a Document Class? If so, am I unable to use any external classes? I'm not going to have to code on the timeline am I? (shudder)
    I've noticed that I can set a Document Class in the Actionscript Advanced Settings, will that work? Why is it not available through the properties panel?
    Thanks for any help.

    im wondering the same thing.
    my first thought is to include a .as class through a timeline include statement, kind of like as2 practices

  • MAC Mini: fan ran at full speed on power on - advice please

    I powered my MAC Mini on as normal today by pressing the power button on the back of the unit, but rather than the light coming on at the front, the MAC started up, but with its internal fan running at full blast - no front panel light. It seemed to be booting (Apple logo and so forth on the normal grey screen) but I powered it off at the wall socket, then on again after a couple of seconds via the rear power button, and normality returned. Anyone got any ideas whet might have happened? Could I have held the rear button for too long? I couldn't see anything in the logs once the machine had booted.
    The MAC is an Intel model with 1GB memory installed. It's a couple of months old, running MAC OS 10.4.10 Update 1. Other than a panic caused by an SMB dismount problem soon after I got the machine the system has been fine since new.
    TIA
    Clem

    Welcome to Apple Discussions!
    The experience you've had with your mini isn't a common one, but it has been reported from time to time, so it's not unheard of. I don't think there's been a clear reason found for this happening, and there is certainly not one from your description of this specific incident, but among the users I have who run Intel minis, I have had one where a boot failure occurred - the power light failed to light, though the chime was present and the system commenced startup then kernel panicked. An SMC reset was done and it has not happened again - though it may be purely coincidental that it hasn't happened again.
    I would suggest that since you switched power off at the wall before rebooting, it would be wise to check you didn't inadvertently damage the drive's data structure or directories - not likely, but possible if the drive was attempting to write at the time, and then do an SMC reset. If you get any other similar events, post back, with as much detail as possible, including any odd behavior you may have experienced in the previous use, and what software you've installed.
    To check the drive, run Disk Utility (in Applications>Utilities), then select the internal drive and firstly, click 'repair permissions', then once done, click 'verify disk'. Errors in the permissions will be repaired, though any in the process of verifying the disk would indicate the drive needs a repair which can be tried by booting the system to the original install disk (holding the C key down during startup) and running Disk Utility from there, this time clicking 'repair disk'.
    To perform an SMC reset,
    -From the Apple menu, choose Shut Down (or if the computer is not responding, hold the power button until it turns off).
    -Unplug all cables from the computer, including the power cord and any display cables.
    -Wait at least 15 seconds.
    -Plug the power cord back in, making sure the power button is not being pressed at the time.
    -Then reconnect your keyboard and mouse to the computer.
    -Press the power button on the back to start up your computer.

  • Messed up mouseover - Arrghh!

    So I had my 7 page site all working nicely and I had to go mess it up!
    I think this may be simple to resolve but after a few hours of trial and error I'm coming for help.  In DW 5.5, I violated a cardinal rule of setup - always declare your default images folder in the start up sequence.
    Well, since I got this site from someone else to work on, I forgot to visit Advanced Settings > Local Info and just started digging right in.  For the last few weeks, I've made changes and rearranged and modified all sorts of things to update it.  I stayed pretty much away from the java code that runs the mouseout/mouseover menu piks as I really don't know enough about them or how those work.  I sort of get it but not to any great degree but I left all those structures intact.  Again, everything including my images and worked great in the browser(s) including the menu behaviors and links.  I thought I was all set.  But then...
    For some reason I can't even remember, I detoured to Site > Manage Site and noticed under the Advanced Settings > Local Info that I'd not set the default image folder.  It was completely blank.  Well, I said, I know where that is, so I dutifully filled it in using the "browse" folder link to the right.  Set the site image default to "Document Root"  Drilled down and Selected and hit Done.  OK, back to some more editting and so forth.  Went to check my work and my "mouseover" images are broken!  I know they're there, they were just working!  Strangely all my other images work - it's just these mouseovers that are busted.  Now if I go back and blank out the default images folder (to set it back the way it was) mouseovers still are not happening.  I wish I had not done this!  I'm sure it has to do with the fact that I messed with the default image folder setting.  But you know, with that being blank, I'm fairly sure to have run into problems uploading this correctly to the web server when time comes.
    OK, so can someone help me to restore this?  I can post some code snippets if it will help.   I've tried it every which way I know how, something's just missing (in my head mostly...)
    H

    I just got it, 2 minutes ago!!!
    Take a look at what this did!  It's a very good lesson for people like me!   Going back now, just prior to this event, I updated a few things in a "library item" - totally away and outside of the menu, not even related.  I did these edits {after} supposedly correcting and declaring the default images folder.  OK, in order to get the .lbi to sync, you have to go Modify > Library > Update (All Pages).  I obeyed.  Now look closely at what this did:
    Here's the correct HTML for the first one of seven menu piks (retrieved from yesterday's back up - yea, I backed up!):
    <a href="index.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image3','','images\\m1_act.jpg',1)">
    <img alt=" " width="78" height="60" id="Image3" src="images\m1_act.jpg" /></a>
    Now, take a look at that same line of code, the result after invoking Modify > Library > Update (All Pages):
    <a href="index.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image3','','imagesm1_act.jpg',1)">
    <img alt=" " width="78" height="60" id="Image3" src="images\m1_act.jpg" /></a>
    See what it did!?    It dropped those "double-back-slashes" crating a file reference that is, in fact, nowhere.  And of course this permeates each and every menu pik on every page.  So, it took several minutes but all I had to do was revisit the menu div on each page and re-insert "\\" before each.  I've reset the default image folder now, set it to document root, the way it should be and will leave it alone!
    Interesting:  This update also went in to each "onload" call on each page, kept the original correct image cites but then added additional image cites omitting the double-back-slashes.
    Just to check and make sure, I performed another Modify > Library > Update (All Pages) and it's OK.
    Now there is much happiness in the Land of Broken Websites...  And, looking at this again, if I'm not mistaken, that replicated section on each page is a prime candidate for a "Library Item" too isn't it?   Something which I didn't consider but now I should.
    Thanks for the reply.  I wish I'd noticed this before.
    H

  • Switch management access

    Hello,
    Cisco 3560 configured with management VLan10 ip 10.10.10.10 can be accessed via ssh, add new management interface VLan60 ip 10.10.60.10, also can access via ssh.
    When I remove interface vlan 10, I can no longer access the switch, ip 10.10.60.10 is reachable, tried transport input to include telnet, same behavior.
    What am I missing here?
    Thanks
    Switch Ports Model              SW Version            SW Image
    *    1 52    WS-C3560-48PS      12.2(53)SE2           C3560-IPBASEK9-M

    Brendan
    Is this switch meant to be acting as a L2 switch or a L3 switch ?
    If it is L2 then disable ip routing and use the default gateway you have already configured
    if it is L3 then remove the default gateway and add a default route using the same next hop IP eg.
    ip route 0.0.0.0  0.0.0.0 10.10.60.1
    Jon

Maybe you are looking for

  • WRTU54G-TM 1.00.09 Bug List

    Bug in 1.00.09 WRTU54G-TM Upgrade firmware from 1.00.04 & reboot Hook up router to LAN via WAN port with Remote managemen enabled. Using WEB interface, open router via remote management port Navigate menus to STATUS | LOCAL NETWORK Hit control for DH

  • Message mapping - Duplicate subtree

    Hi Experts, I am working on 7.0 server. In the existing message mapping I found that target nodes are duplicated. For example /ns0:FiletoFile_ib_mt/Record/Emp[1] /ns0:FiletoFile_ib_mt/Record/Emp And the order for the node in the target message struct

  • Java FX Dynamic TableView

    Hi I have a problem with dynamic TableView and the error is: SEVERE: javafx.scene.control.Control loadSkinClass Failed to load skin 'StringProperty [bean: TableRow[id=null, styleClass=cell indexed-cell table-row-cell], name: skinClassName, value: com

  • Event ID 4133 & 4376 MSExchangeRepl

    Hi I have an Exchange 2013 DAG with 2 Servers and created a database "DB01" with an active copy - no issues After creating a further 9 Databases, the Application Log is full of Errors, repeating every 15 minutes: 4133 Database one datacenter health c

  • Help in FR

    I have a report in FR where i need to calculate a formula Row 2 has Revenue Data for the members which are dynamically taken using Children of Current Point Of View(Member Selected in Filter) Row 6 has NOI Data for members Same as Row 2 Now i need to