Swf works solo, but not when loaded in another swf

if u wanna see for yourself how it works, create and export a font named "Century" and create an .as file that gets and sets a textfield. Anyways the first issue is, it sometimes doesn't handle it's event listeners when I test the movie, then if i retest it, it works fine. Second I tried loading this swf file into my main file but i get
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at MethodInfo-90()
at MethodInfo-82()
even if the menu file works fine on its own
here's the menu file
import com.greensock.TweenLite;
import com.greensock.easing.*;
import getSet;
var getter:getSet = new getSet();
var menu:Sprite;
init();
function init():void {
menu = initMenu();
addChild(menu);
menu.addEventListener(Event.ENTER_FRAME,float,false,0,true);
menu.x = stage.stageWidth - 61;
menu.y = stage.stageWidth/2 + menu.height/1.75;
function initMenu():Sprite {
var menuStart:Boolean = false;
var homeL:Sprite = homeLink();
var workL:Sprite = workLink();
var resumeL:Sprite = resumeLink();
var contactL:Sprite = contactLink();
var flashL:Sprite = flashLink();
var j:int = 0;
menu = new Sprite();
menu.addChild(homeL);
menu.addChild(workL);
menu.addChild(resumeL);
menu.addChild(contactL);
menu.addChild(flashL);
workL.y = homeL.y - 60;
resumeL.y = workL.y - 60;
contactL.y = resumeL.y - 60;
flashL.y = contactL.y - 60;
var homeDist:Number = homeL.y;
var workDist:Number = workL.y;
var resumeDist:Number = resumeL.y;
var contactDist:Number = contactL.y;
var flashDist:Number = flashL.y;
homeL.addEventListener(MouseEvent.ROLL_OVER,menuRollOver,false,0,true);
workL.addEventListener(MouseEvent.ROLL_OVER,menuRollOver,false,0,true);
resumeL.addEventListener(MouseEvent.ROLL_OVER,menuRollOver,false,0,true);
contactL.addEventListener(MouseEvent.ROLL_OVER,menuRollOver,false,0,true);
flashL.addEventListener(MouseEvent.ROLL_OVER,menuRollOver,false,0,true);
function menuRollOver(e:MouseEvent):void {
var that:Object = e.target;
e.target.graphics.lineStyle(1,0xEEEEEE);
e.target.graphics.beginFill(0xEEEEEE);
e.target.graphics.drawRect(0,0,60,60);
e.target.graphics.endFill();
if (menuStart == false) {
if (e.target.name == "instance12" && menuStart != false) {
var menuTimer2:Timer = new Timer(501,1);
menuTimer2.addEventListener("timer",startContact,false,0,true);
menuTimer2.start();
function startContact(e:TimerEvent):void {
menuTimer2.stop();
showTarget(that);
that.addEventListener(Event.ENTER_FRAME,showLink,false,0,true);
that.addEventListener(MouseEvent.ROLL_OUT,menuRollOut,false,0,true);
that.removeEventListener(MouseEvent.ROLL_OVER,menuRollOver);
menuTimer2.removeEventListener("timer",startContact);
} else {
showTarget(e.target);
e.target.addEventListener(Event.ENTER_FRAME,showLink,false,0,true);
e.target.addEventListener(MouseEvent.ROLL_OUT,menuRollOut,false,0,true);
e.target.removeEventListener(MouseEvent.ROLL_OVER,menuRollOver);
} else {
var menuTimer:Timer = new Timer(200);
menuTimer.addEventListener("timer",checkMenu,false,0,true);
menuTimer.start();
function checkMenu(e:TimerEvent):void {
if (menuStart == false) {
menuTimer.stop();
showTarget(that);
that.addEventListener(Event.ENTER_FRAME,showLink,false,0,true);
that.addEventListener(MouseEvent.ROLL_OUT,menuRollOut,false,0,true);
that.removeEventListener(MouseEvent.ROLL_OVER,menuRollOver);
menuTimer.removeEventListener("timer",checkMenu);
function menuRollOut(e:MouseEvent):void {
if (e.target.name == "instance15") {
fadeObj(e.target);
hideTarget(e.target);
var menuStartTimer:Timer = new Timer(50,1);
menuStartTimer.addEventListener("timer",equalsTrue,false,0,true);
menuStartTimer.start();
function equalsTrue(e:TimerEvent):void {
menuStart = false;
menuStartTimer.removeEventListener("timer",equalsTrue);
e.target.graphics.lineStyle(1,0xEEEEEE);
e.target.graphics.beginFill(0xFFFFFF);
e.target.graphics.drawRect(0,0,60,60);
e.target.graphics.endFill();
e.target.addEventListener(MouseEvent.ROLL_OVER,menuRollOver,false,0,true);
e.target.removeEventListener(MouseEvent.ROLL_OUT,menuRollOut);
e.target.removeEventListener(Event.ENTER_FRAME,showLink);
e.target.addEventListener(Event.ENTER_FRAME,hideLink,false,0,true);
function showLink(e:Event):void {
var amount:Number = getAmount(e.target);
var i:int = getTarget(e.target);
var curFlash:Number = flashL.y;
menuStart = true;
if (e.target.name == "instance15") {
e.target.removeEventListener(Event.ENTER_FRAME,showLink);
for (i; i < menu.numChildren; i++) {
if (menu.getChildAt(i) == e.target) {
} else {
if (curFlash >= flashDist - amount) {
menu.getChildAt(i).y -= 7;
} else {
e.target.removeEventListener(Event.ENTER_FRAME,showLink);
function hideLink(e:Event):void {
var i:int = getTarget(e.target);
var curFlash:Number = flashL.y;
var curContact:Number = contactL.y;
var curResume:Number = resumeL.y;
var curWork:Number = workL.y;
menuStart = true;
fadeObj(e.target);
if (e.target.name == "instance15") {
e.target.removeEventListener(Event.ENTER_FRAME,hideLink);
for (i; i < menu.numChildren; i++) {
if (menu.getChildAt(i) == e.target) {
} else {
if (curFlash <= flashDist) {
menu.getChildAt(i).y += 7;
if (curFlash > flashDist || curContact > contactDist || curResume > resumeDist ||
curWork > workDist) {
setDistance();
hideTarget(e.target);
e.target.removeEventListener(Event.ENTER_FRAME,hideLink);
menuStart = false;
} else if (curFlash == flashDist) {
setDistance();
hideTarget(e.target);
e.target.removeEventListener(Event.ENTER_FRAME,hideLink);
menuStart = false;
function getAmount(obj:Object):Number {
if (obj.name == "instance3") {
//trace("home");
return 94;
} else if (obj.name == "instance6") {
//trace("work");
return 63;
} else if (obj.name == "instance9") {
//trace("resume");
return 134;
} else if (obj.name == "instance12") {
//trace("contact");
return 135;
} else if (obj.name == "instance15") {
//trace("flash");
return 80;
return 4;
function getTarget(obj:Object):int {
for (var i:int = 0; i < menu.numChildren; i++) {
if (menu.getChildAt(i) == obj) {
return i;
return 8;
function setDistance():void {
homeL.y = homeDist;
workL.y = workDist;
resumeL.y = resumeDist;
contactL.y = contactDist;
flashL.y = flashDist;
function showTarget(obj:Object):void {
var i:int = getTarget(obj);
var restMenu:TextField;
var that:Object;
//if (menuStart = false
if (i == 0) {
restMenu = getRest("ome");//shows the rest of menu
} else if (i == 1) {
restMenu = getRest("ork");
} else if (i == 2) {
restMenu = getRest("esume");
} else if (i == 3) {
restMenu = getRest("ontact");
} else if (i == 4) {
restMenu = getRest("lash");
getter.menuObject = restMenu;
getter.menuObject.alpha = 0;
if (i != 3) {
TweenLite.to(getter.menuObject,1,{alpha:1});
} else {
TweenLite.to(getter.menuObject,1,{alpha:1, delay:.5, overwrite:false});
if (restMenu != null) {
if (i == 0) {
that = menu.getChildByName("instance3");
that.addChild(getter.menuObject);
} else if (i == 1) {
that = menu.getChildByName("instance6");
that.addChild(getter.menuObject);
} else if (i == 2) {
that = menu.getChildByName("instance9");
that.addChild(getter.menuObject);
} else if (i == 3) {
that = menu.getChildByName("instance12");
that.addChild(getter.menuObject);
} else if (i == 4) {
that = menu.getChildByName("instance15");
that.addChild(getter.menuObject);
function hideTarget(obj:Object):void {
var that:Object;
j++
if (getter.menuObject != null && obj.name == "instance3" && j == 4) {
that = menu.getChildByName("instance3");
that.removeChild(getter.menuObject);
j = 0;
} else if (getter.menuObject != null && obj.name == "instance6" && j == 3) {
that = menu.getChildByName("instance6");
that.removeChild(getter.menuObject);
j = 0;
} else if (getter.menuObject != null && obj.name == "instance9" && j == 2) {
that = menu.getChildByName("instance9");
that.removeChild(getter.menuObject);
j = 0;
} else if (getter.menuObject != null && obj.name == "instance12" && j == 1) {
that = menu.getChildByName("instance12");
that.removeChild(getter.menuObject);
j = 0;
} else if (getter.menuObject != null && obj.name == "instance15") {
that = menu.getChildByName("instance15");
that.removeChild(getter.menuObject);
j = 0;
function fadeObj(obj:Object):void {
TweenLite.to(getter.menuObject,.5,{alpha:0});
return menu;
function homeLink():Sprite {
var homeField:TextField = menuF("H");
var clickable:Sprite = mClickable();
var _home = new Sprite();
_home.graphics.lineStyle(1,0xEEEEEE);
_home.graphics.beginFill(0xFFFFFF);
_home.graphics.drawRect(0,0,60,60);
_home.graphics.endFill();
homeField.rotation -= 90;
_home.addChild(homeField);
homeField.y += 48;
homeField.x -= 3;
_home.buttonMode = true;
_home.addChild(clickable);
return _home;
function workLink():Sprite {
var workField:TextField = menuF("W");
var clickable:Sprite = mClickable();//square ontop of letters to be clickable
var _work = new Sprite();
_work.graphics.lineStyle(1,0xEEEEEE);
_work.graphics.beginFill(0xFFFFFF);
_work.graphics.drawRect(0,0,60,60);
_work.graphics.endFill();
workField.rotation -= 90;
_work.addChild(workField);
workField.y += 55;
workField.x -= 3;
_work.buttonMode = true;
_work.addChild(clickable);
return _work;
function resumeLink():Sprite {
var resumeField:TextField = menuF("R");
var clickable:Sprite = mClickable();
var _resume = new Sprite();
_resume.graphics.lineStyle(1,0xEEEEEE);
_resume.graphics.beginFill(0xFFFFFF);
_resume.graphics.drawRect(0,0,60,60);
_resume.graphics.endFill();
resumeField.rotation -= 90;
_resume.addChild(resumeField);
resumeField.y += 46.5;
resumeField.x -= 3;
_resume.buttonMode = true;
_resume.addChild(clickable);
return _resume;
function contactLink():Sprite {
var contactField:TextField = menuF("C");
var clickable:Sprite = mClickable();
var _contact = new Sprite();
_contact.graphics.lineStyle(1,0xEEEEEE);
_contact.graphics.beginFill(0xFFFFFF);
_contact.graphics.drawRect(0,0,60,60);
_contact.graphics.endFill();
contactField.rotation -= 90;
_contact.addChild(contactField);
contactField.y += 53;
contactField.x -= 3;
_contact.buttonMode = true;
_contact.addChild(clickable);
return _contact;
function flashLink():Sprite {
var flashField:TextField = menuF("F");
var clickable:Sprite = mClickable();
var _flash = new Sprite();
_flash.graphics.lineStyle(1,0xEEEEEE);
_flash.graphics.beginFill(0xFFFFFF);
_flash.graphics.drawRect(0,0,60,60);
_flash.graphics.endFill();
flashField.rotation -= 90;
_flash.addChild(flashField);
flashField.y += 44;
flashField.x -= 3;
_flash.buttonMode = true;
_flash.addChild(clickable);
return _flash;
function menuF(letter:String):TextField {
var mFont = new Century();
var menuFormat:TextFormat = new TextFormat();
menuFormat.font = mFont.fontName;
menuFormat.size = 50;
var menuField:TextField = new TextField();
menuField.defaultTextFormat = menuFormat;
menuField.text = letter;
menuField.height = menuField.width = 59;
menuField.embedFonts = true;
menuField.antiAliasType = AntiAliasType.ADVANCED;
menuField.selectable = false;
menuField.cacheAsBitmap = true;
return menuField;
function getRest(letter:String):TextField {
var mFont = new Century();
var menuFormat:TextFormat = new TextFormat();
menuFormat.font = mFont.fontName;
menuFormat.size = 40;
menuFormat.color = 0xFF0000;
var menuField:TextField = new TextField();
menuField.defaultTextFormat = menuFormat;
menuField.text = letter;
menuField.embedFonts = true;
menuField.antiAliasType = AntiAliasType.ADVANCED;
menuField.selectable = false;
menuField.cacheAsBitmap = true;
menuField.width = 200;
menuField.rotation -= 90;
return menuField;
function mClickable():Sprite {
var clicker:Sprite = new Sprite();
clicker.graphics.beginFill(0xFFFFFF,0);
clicker.graphics.drawRect(1,1,58,58);
clicker.graphics.endFill();
return clicker;
function float(e:Event):void {
var mouseClamped:Number = this.mouseY;
if (e.target.y  <= 400) {
e.target.y = 400;
} else if (e.target.y >= 480) {
e.target.y = 480;
e.target.y += (.1 * (mouseClamped/8 - e.target.y/8));

You should not nest named functions... a source of problems waiting to happen.  You should go into your Publish settings and select the Permit Debugging option in the Flash section.  That could provide more specific information regarding the source of the error, such as a line number.  I haven't read thru your code beyond a glance, but where you are using e.target in mouse event handler functions, you should try using e.currentTarget instead.

Similar Messages

  • Textbox shows xml text in working file but now when loaded into another SWF

    Hi all,
    I have downloaded an xml gallery (as2) as we needed one for an old as2 file. Now I mostly use as3 but thought as I only needed to tweak it there would be no probs. Of course, it rarely works out that way. The problem is, text loaded from the xml file is displayed with its corresponding image. This works fine in the file. When I load the SWF into another SWF however, it all works EXCEPT the text doesn't show at all?? Whoever made the gallery used 'device fonts' in the textbox, I don't know if this has anything to do with it. I tried changing the textbox to dynamic and embedding characters but still nothing.
    This seems the key line -
    _root.descmc.desc.htmlText = XMLdaten[number];
    I have also tried
    _root.descmc.desc.htmlText = XMLdaten[number].firstChild;
    This traces out the correct xml data when tested so it is finding it okay.
    Any help would be much appreciated.
    Thanks

    The problem might be in the use of the "_root"  You probably need to set _lockroot = true; in the loaded swf, otherwise the _root is that of the loading swf, not the loaded one.

  • My iPad only has sound when the earphones are plugged in. The switch that controls the volume works then, but not when I take the earphones out. Suggestions?

    My iPad2 only has sound when the earphones are plugged in. The volume switch works then too, but not when I take the earphones out. Suggestions?

    it's a hardware issue
    https://discussions.apple.com/thread/1343532?start=315&tstart=0
    more here
    iphone stuck in headset mode

  • Embedded swf plays in preview mode but not when loaded onto site

    http://delormdesigns.com/Oxen2008/2008Fair.html
    I have created a swf by first creating an flv from an avi then publishing the swf in flash. I inserted into an html page and can see the video on preview. However, when I load the page and all of the assets onto the site, I get nothing.
    I tried to view the swf directly, and it does not play. This may be an issue with how I converted the avi file or how I published the swf. I am starting in this forum just in case.
    Thanks!

    Yes, I did exactly what you recommended. I swapped the swf with another, loaded the page, and tested it. It worked perfectly. So, even though the original swf worked fine during the preview test, there must be something about the file that does not work when loaded on the site.
    I found an article about creating and inserting a flv file from an avi...that will get me 1/2 way there so I will be trying that. Perhaps there was a step in the avi to flv process that needs fixing...and then the swf creation would work.
    I appreciate your responses!
    ~ Caprice

  • Azure SQL database working locally but not when published to Azure

    I have an
    AngularJS  solution that is connecting to a SQL Azure database.  When
    I run the solution locally, it’s configured to connect up to the SQL Azure database, the solution works fine. However,
    when I publish the solution to Azure the connection to the SQL Azure database does not work.
    When debugging with Chrome I get the error Failed to load resource: the server responded with a status of 500 (Internal Server
    Error) 
    I'm not using EF. but dapper.
    My connectionstring is as follows
    <add name="PortalConnection" providerName="System.Data.SqlClient" connectionString="Server=tcp:xxx.database.windows.net,1433;Database=xxx;User ID="xxx";Password="xxx";Trusted_Connection=False;Encrypt=True;Connection
    Timeout=30;"/>
    When I run the web solution locally from Visual Studio, my sql queries runs like it should, it's only the published version having problems. 
    Any ideas?
    Software Developer

    Hi,
    Thanks for answer.
    I had followed that step by step guide for deploying to Windows Azure. So that was not the problem.
    But I was able to get a better error message by turning off custom error in web.config.
    I got the error message: "Windows login are not supported in this version of SQL Server"
    I solved this by using the SqlConnectionStringBuilder instead of getting the connection string from 
    web.config.
    So everything works great now, just think it's strange it worked locally before..
    Regards
    -entery
    Software Developer

  • XMLDataSet works, but not when loaded with UpdateContent

    I have page that contains a spry collaspile panel area and a
    xmldataset.
    The page when accessed directly from a url Loads fine
    http://www.gillespiecrm.com/display/default/clientdetail.template.php?uid=1&client=427
    However, if I take the above try to load it within another
    page of an application with updateContent
    Spry.Utils.updateContent('client' + sTabDivId + 'detail',
    'display/default/clientdetail.template.php?uid=1&client=427');
    The collasible tabs work, but the xmldataset does not.
    can anyone explain why this is occuring?
    Thanks
    Z

    Hi Zeus,
    I have already answered this query in a different post. May
    be you should go through it
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=602&threadid =1295717&enterthread=y
    You need to replace Spry.Utils.setInnerHTML() method as
    explained there.
    -JV

  • HT201320 Gmail pw works in Safari but not when loaded on Ipad Air

    After changing my Google password, I tried loading it on my Ipad Air, but I keep getting error messages stating it is incorrect.
    It works fine when I sign into Google through Safari on the same device, but I can't load mail, schedule, etc.

    Hello Daniel Neuspiel
    Check out the article below to troubleshoot issues with accessing and setting up Gmail on your iPad. Check to make sure also for any type of two step verification on Gmail’s end if you need to access it to let your iPad have access to it.
    iOS: Gmail account will not connect to Gmail server
    http://support.apple.com/kb/ts3058
    You may also want to try out their app as on option. The link below will get you there.
    Gmail - email from Google
    https://itunes.apple.com/us/app/gmail-email-from-google/id422689480?mt=8
    Regards,
    -Norm G.

  • Var Request Works Locally but not when Placed Online

    When I run this code on machine locally, it works perfect, however when I put it online it no longer works, can anybody help?
    Additionally the only the reason i placed the var request in a function was because I have another var request earlier in the code as was not sure how to run it without a duplicate entry error.
    goresult();
    function goresult() {
         var request:URLRequest=new URLRequest("http://www.whichpartyshouldivotefor.co.uk/wp-content/themes/test/leadingparty.php");
         request.method=URLRequestMethod.GET;
         var getresult:URLLoader = new URLLoader();
         getresult.dataFormat=URLLoaderDataFormat.VARIABLES;
         getresult.addEventListener(Event.COMPLETE, completeHandler);
         getresult.load(request);
    function completeHandler(evt:Event) {
         var conservativeresult=evt.target.data.conservative;
         var libdemresult=evt.target.data.libdem;
         var labourresult=evt.target.data.labour;
         trace (conservativeresult);
         vote.text = conservativeresult;

    My best guess is that you are coming across a security sandbox violation - AKA a crossdomain scripting error.
    This means that you need a crossdomain.xml on the root of your web-host that allows "whichpartyshouldivotefor.co.uk"

  • Cfmail  - works locally but not when uploaded

    Hi,
    I'm using cfmail with form variables for the email addreses.
    It's so users can send email to political candidates. Here's the
    code:
    <cfoutput>#Form.semails#</cfoutput>,<cfoutput>#Form.hemails#</cfoutput></p>
    <cfmail to="#Form.semails#,#Form.hemails#"
    replyto="#Form.useremail#" failto="[email protected]"
    from="#Form.useremail#" subject="Keep Maine Toxin-Free!"
    server="mail.nosuch.com" port="26" timeout="40"
    username="[email protected]" password="nosuch">
    #Form.usermessage#
    </cfmail>
    The form submit page collects those variables and passes them
    as form variables - GET. The "to" field in cfmail is populated by
    hidden fields that contain session variables... they're forwarded
    on as those .semails and .hemails form variables. Actual values
    have been replaced with "none" or "nosuch" for security, but you
    can see the structure anyway.
    This works when run locally, sends the emails as it should.
    When uploaded exactly as is to godaddy's server, it doesn't send
    emails. Doesn't throw any errors, the form results page displays as
    it should... but the emails just never get sent.
    I'd really appreciate any ideas...
    Joe

    Adam Cameron wrote:
    > I don't know how these shared hosting outfits work, and
    what access you
    > have to what, but here's some questions:
    >
    > - have you inspected the mail logs to see if they cast
    any light on the
    > scene
    > - have you configured CF to tell it where the SMTP
    server is?
    > - do you need to authenticate to it, and that sort of
    thing?
    > - are the email messages failing @ the CF end (in which
    case they'll be in
    > the mail/undeliverable dir (not entirely sure that's the
    name of it, but
    > have a shufti around in the cfusion dir...), or are they
    getting to the
    > SMTP server and failing there (check the SMTP server's
    logs).
    >
    Unfortunately all that can't be done by us users of these
    shared hosting
    outfits. You'll need to contact GoDaddy support and ask them
    to take
    these steps. I'm sorry about your probably experience with
    this.
    While I use GoDaddy for my personal hosting where I care more
    about not
    spending a great deal of money over high performance. I do
    not wish my
    support experiences on anybody. If you know ColdFusion well
    and can
    tell support what needs to be done, they should be able to do
    it. Or,
    more likely, you would be able to figure out the self help
    tools to do
    it yourself. But, unless this has changed since my last
    experience,
    their support staff is not ColdFusion literate and are unable
    to guide
    other, inexperienced ColdFusion users.
    Saying all that. Email works just fine on my GoDaddy website
    and I do
    not believe I had to do anything special to use it.

  • Airport Extreme N works fine but not when WDS activated

    I replaced my old Airport Extreme by the new 802.11n.
    Works fine with our Macbooks (pro) enabled for n.
    But when I activate WDS (I'd like to use my old airport Express for airtunes sometimes), an error message appears (WDS error) in the summary, and the light flashes alternatively in green and yellow... Everything else seems to work (internet connexion), but it seems no WDS possible... If I swtich it off, everything is just fine and green...
    Of course I reinitialized the base, I once used the Airport utility assistant and then manually reput my personal options. I upgraded my airport firmware to 7.1 and WDS error message is still there with the flashing light... And I tried to see if my old express would make it but nope.

    I had similar issues. To roll the firmware back to an earlier version try this:
    - With the option key depressed, launch the Airport Utility (located: /Applications/Utilities)
    - Select your problematic extreme base station and then while holding option again, click "Continue" and then choose Manual Setup.
    - It should prompt you to choose a firmware version to upload. You can select 7.0 or 7.1.
    The process is a little different on PC. Let me know if this solves your problem or if you need the directions for doing this from within Windows!

  • VBA Code works initially but not when I reopen the spreadsheet

    I found this great code to let users add a name to a table.  It asks the user if they want to add the item, they say yes and then it adds it to the list and sorts it alphabetically.  It is great until I close and reopen the spreadsheet.  Then,
    I only get the error box on the top left corner of the cell.  It doesn't do any of the above.  Why won't it work when reopened?  I have tried recreating the spreadsheet twice with the exact results.  Nothing changes on the code when I look
    at it so I don't think that is it but I only know enough about code to be dangerous.
    I am using Excel 2010 and it is saved as a Macros Enabled Workbook.

    Hi,
    The default settings of Office program are based on the installation copy.
    If we just use the Office installation copy that download from Microsoft website,
    Disable all with notification is the default setting. Quote from:
    http://technet.microsoft.com/en-us/library/ee857085(v=office.14).aspx
    On the other hand, they can be customized by ourselves with OCT. Please see the thread:
    http://social.technet.microsoft.com/Forums/office/en-US/2ccfd3bf-b4ff-45b0-a898-ab153e3f06c2/using-office-customization-tool-for-office-2010-to-setup-custommsp-to-change-macro-security?forum=officesetupdeployprevious
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Flv player works locally but not when uploaded

    Another day, another issue...
    I have a flash movie that includes an flv player with previews and buttons. It reads the content from an xml file.
    It works without problem when I test it locally. Trouble is when I upload it, everything displays correctly but the flv movie file doesn't play. Here's the test link:
    http://www.swsoftware.com/ncjhs/assets/video/flvplayer.html
    XML file is http://www.swsoftware.com/NCJHS/Assets/Video/video.xml
    Flash file is http://www.swsoftware.com/ncjhs/assets/video/flvplayer.fla
    Anyone have any suggestions? I'm new to flash and this forum has been a tremendous help in resolving my (somewhat numerous) problems.
    Sam

    When I tried to view the posted url I got the following
    errors in the order I have listed them.
    CSInit is undefined Line 23
    Line 75 Object Expected
    Line 66 Object Expected
    My Platform.
    IE 7
    Windows XP Pro

  • Fragment works standalone but not when inserted in a form

    I have a search fragment. When I open the fragment and click "Preview" in designer. I click on the "search" button, and it executes a web service that retrieves info from a database and displays it into a table. Everything is working beautifully. The fragment is set to Interactive, and Dynamic XML form.
    I now create a new form and I insert this search fragment into the form. This form is also set to Interactive, and Dynamic XML form. Now, when I click on the "search" button, all of the javascript behind the button executes (i.e. my messageBox debugging messages) but the web service that retrieves the database info doesn't seem to execute.
    What am I missing? I'm perplexed as to why the fragment works stand-alone but doesn't want to work when incorporated into a parent form.
    Any ideas?

    Nope, no errors in the java debugger console.
    The fragment is an xdp (Adobe XML Form) - with form properties "Interactive Form" and "Dynamic XML Form"
    The "parent" form that contains the fragment is an xdp with the exact same form properties as the fragment.
    Here's what's in the debugger console, just general info:
    Acrobat JavaScript Debugger Functions Version 7.0
    Acrobat Database Connectivity Built-in Functions Version 8.0
    Acrobat EScript Built-in Functions Version 8.0
    Acrobat Annotations / Collaboration Built-in Functions Version 8.0
    Acrobat Annotations / Collaboration Built-in Wizard Functions Version 8.0
    Acrobat Multimedia Version 8.0
    Acrobat SOAP 8.0
    Anything else I can check?
    --Elaine

  • How do i setup my MacBook Pro to play music from Spotify or Deezer via a separate Airplay enabled speaker? I know my MacBook is Airplay enabled because i can see the icon in iTunes, which works fine, but not when general web browsing.

    Airplay music from Spotify on a MacBook Pro

    I would sign out again, then update your Mac (latest version, not 10.7.3 as shown in your signature), open "Settings > Mail, Contacts, Calendars" and then choose iCloud and sign in again. I would also do the same on your iOS device (sign out and in). Make sure to confirm the message when you will be asked to merge the contacts with iCloud.

  • Kerberos double hop works internally, but not when published via TMG

    Hi all,
              Have 2 x IIS 8.5 servers internally with .net applications on them
    The IIS servers have been configured to use a domain account for their apppool... and credentials are pass successfully from the front end server to the back end server.
    When publishing the front-end server via TMG, the front-end web pages show up fine, but the delegated credentials aren't passed to the "back end" pages and a 401 - unauthorised error is presented.
    The TMG computer account has the front end and back end http SPN's defined for delegation in its AD account properties.
    Is this expected ? is this a limitation of TMG ? or have I simply done something incorrect ?

    Hi,
    Please check the following article to see if you missed anything.
    About Kerberos constrained delegation
    https://technet.microsoft.com/en-us/library/cc995228.aspx
    Best Regards,
    Joyce
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Maybe you are looking for