Accessing Flash in a portlet

hi all,
I need to acess a flash file in a portlet.I am able to do that using <iframe> tag in mine .aspx . Is this possible to add flash file in other way. can i access .swf file directly from a portlet.
regards
Vineet

hi all,
I need to acess a flash file in a portlet.I am able to do that using <iframe> tag in mine .aspx . Is this possible to add flash file in other way. can i access .swf file directly from a portlet.
regards
Vineet

Similar Messages

  • Trying to access Flash Player Settings Manager always asks to install but I already have it installe

    I am trying to access Flash player website settings manager.  I link from a browser to the settings manager but instead of a panel there is a download required to get latest Flash Player which I already have.  I download it successfully. Windows 7 control panel has Adobe Flash Player 11 ActiveX 64-bit. When I link again, I get the same message to download flash player as if I never did it before.  What am I missing? There is also Flash Player (32-bit) icon that invokes Flash Player settings manager.Is this the best I can do to get the website storage settings?  My ultimate goal is to remove Flash player cookies which I learned about today to be a problem. Thanks.

    I am trying to access Flash player website settings manager.
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager02.htm l
    I link from a browser to the settings manager but instead of a panel there is a download required to get latest Flash Player which I already have.
    I have no idea what you are talking about.  Just at what site are you getting this message to download instead of the settings panel?
    My ultimate goal is to remove Flash player cookies which I learned about today to be a problem. Thanks.
    If you want to temporarily remove Flash Player LSO's(cookies), just delete the browser's temporary files.  If you want to permanently remove LSO's, go to your control panel and activate the Flash Player Settings Manager.  Change the Local Storage Settings to Block all sites from storing information on this computer.  However, most sites with Flash Player videos will not work with this setting.

  • When I try to watch certain videos on my ipad2 it says Thanks for trying to access Flash Player. Unfortunately it is not available for your device because of restrictions that Apple has put in place.  Can any tell me what app I can download to replace it.

    When I try to watch certain videos on my ipad2 it says Thanks for trying to access Flash Player. Unfortunately it is not available for your device because of restrictions that Apple has put in place.  Can any tell me what app I can download to replace adobe flash player.
    Thanks

    Use the iSwifter browser from the app store. Works for most flash content.

  • Flash content blank and unable to access flash control panel to turn off hardware acceleration.

    Flash content appears as blank and nothing happens when attempting to access flash player settings. Not sure if it helps, but the operating system is Mac OS X Mavericks running in virutal machine.
    * QuickTime
    * Shockwave Flash 14.0 r0
    * Displays Java applet content, or a placeholder if Java is not installed.

    Hi 薛定谔的老猫,
    On your [about:addons] page, please select "Always Activate" for the Flash player.
    *If it is crashing: [[Send plugin crash reports to help Mozilla improve Firefox]]
    *Please also try to reload the page after you change this setting.
    * Also try to reinstall Flash.
    Please post back with your results, it can help other users.

  • How do I access flash after downloading it?

    How do I access Flash after downloading it to my PC

    Double click the program icon is what works for me

  • How 2 access flash drives via iphone..(just an idea)

    guys im jus gona give idea or a new concept 4 the iphone4 ie a new feature which can be included in the future..what does the iphone doesn't have when compared to the mac book.??..a"USB port"..i have designed a cable such that in one end its a mini usb male pin and on the other end its a normal usb female pin...so if there is a female pin usb port in the iphone...and with some upgradation in the software(os)
    ..it will help accessing flash drives,memory cards..etc..the data transfer port which is now used in the iphone can also be transformed.."my main idea is to access flash drives"...im sure tat apple engineers r brainy enough 2 come up wit this concept in some other way...

    Firstly, you will have to buy more equipment as the Express doesn't support extra drives.
    If you can use BTMM, then the Time Capsule is good, or the AirPort Extreme. However, these don't offer a web interface to access them, or a way of accessing them from iOS.
    Synology NASes might work, or if you want to mess around a Raspberry Pi. Possibly even a Mac mini if you have the cash to spend.

  • Flash in a portlet

    I have an html portlet with a flash file embeded in the html, but when I try to load the portlet it looks for the flash file in the http:\\portalserver\portal\ directory instead of on the portlet server. The swf file and html file are in the same directory on the portlet server. Anybody have any ideas?
    Berney

    // This exact code works in both ALUI 6.1 (.net 1) and 6.5 (.net 2) w/ no changes necessary
    using System;
    using com.plumtree.openfoundation.util;
    using com.plumtree.portaluiinfrastructure.tags;
    using com.plumtree.portaluiinfrastructure.tags.metadata;
    using com.plumtree.server;
    using com.plumtree.uiinfrastructure.constants;
    using com.plumtree.xpshared.htmlelements;
    using com.plumtree.openlog;
    using com.plumtree.openkernel.config;     // PortalObjectsFactory - GetAdminSession()
    using com.plumtree.xpshared.config;          // ConfigPathResolver     - GetAdminSession()
    using com.plumtree.openkernel.factory; // OKConfigFactory          - GetAdminSession()
    using com.plumtree.openfoundation.web; // IXPRequest
    using System.Text;
    using com.plumtree.uiinfrastructure.activityspace; // ActivitySpace
    using com.plumtree.portalpages.common.uiparts;          // NavigationModel
    using ConfigHelper = com.plumtree.uiinfrastructure.statichelpers.ConfigHelper;
    namespace FooCustomTags.src.com.Foo.taglib
    public class FlashTag : ATag
    public FlashTag() : base()
    public static readonly ITagMetaData TAG;
    public static readonly RequiredTagAttribute FILENAME;
    public static readonly RequiredTagAttribute ISRVRPATH;
    public static readonly RequiredTagAttribute HEIGHT;
    public static readonly RequiredTagAttribute WIDTH;
    public static readonly OptionalTagAttribute RESTRICTTOCOMMID;
    public static readonly OptionalTagAttribute PLAY;
    public static readonly OptionalTagAttribute LOOP;
    public static readonly OptionalTagAttribute QUALITY;
    public static readonly OptionalTagAttribute WMODE;
    public static readonly OptionalTagAttribute SCALE;
    public static readonly OptionalTagAttribute BGCOLOR;
    private static OpenLogger log = OpenLogService.GetLogger("FooCustomTags","FlashTag");
    static FlashTag()
    TAG = new TagMetaData("flashtag", "This tag displays EOD properties for the current user.");
    FILENAME = new RequiredTagAttribute("filename", "filename.swf",AttributeType.STRING);
    ISRVRPATH = new RequiredTagAttribute("isrvrpath", "everything after isrvr.com/is/ and before /myfile.swf; e.g. CustomImages/FOO",AttributeType.STRING);
    HEIGHT = new RequiredTagAttribute("height", "movie height",AttributeType.INT);
    WIDTH = new RequiredTagAttribute("width", "movie width",AttributeType.INT);
    RESTRICTTOCOMMID = new OptionalTagAttribute("restricttocommid","render tag only on this community; great for single header optimazation when only need flash on home page", AttributeType.INT, "0");
    PLAY = new OptionalTagAttribute("play","swf param attribute", AttributeType.STRING, "True");
    LOOP = new OptionalTagAttribute("loop","swf param attribute", AttributeType.STRING, "False");
    QUALITY = new OptionalTagAttribute("quality","swf param attribute", AttributeType.STRING, "autohigh");
    WMODE = new OptionalTagAttribute("wmode","swf param attribute", AttributeType.STRING, "opaque");
    SCALE = new OptionalTagAttribute("scale","swf param attribute", AttributeType.STRING, "");
    BGCOLOR = new OptionalTagAttribute("bgcolor","swf param attribute", AttributeType.STRING, "#");
    /// <seealso cref="com.plumtree.portaluiinfrastructure.tags.ATag#DisplayTag()"></seealso>
    public override HTMLElement DisplayTag()
    string fileName = GetTagAttributeAsString(FILENAME);
    string isrvrPath = GetTagAttributeAsString(ISRVRPATH);
    int height = GetTagAttributeAsInt(HEIGHT);
    int width = GetTagAttributeAsInt(WIDTH);
    int restrictToCommId = GetTagAttributeAsInt(RESTRICTTOCOMMID);
    string strShowThis = string.Empty;
    string swfPLAY = GetTagAttributeAsString(PLAY);
    string swfLOOP = GetTagAttributeAsString(LOOP);
    string swfQUALITY = GetTagAttributeAsString(QUALITY);
    string swfWMODE = GetTagAttributeAsString(WMODE);
    string swfSCALE = GetTagAttributeAsString(SCALE);
    string swfBGCOLOR = GetTagAttributeAsString(BGCOLOR);
    AActivitySpace m_asOwner = (AActivitySpace) this.GetEnvironment();
    NavigationModel navModel = (NavigationModel) m_asOwner.GetModel(NavigationModel.STR_MVC_CLASS_NAME);
    if(restrictToCommId == 0 || restrictToCommId == navModel.GetCurCommunityID())
    StringBuilder sb = new StringBuilder();
    string[] httpFix = ConfigHelper.GetImageServerBaseURL(m_asOwner).Split('/');
    log.Debug(httpFix[0] + ", " + isrvrPath + "/" + fileName + "; " + height + "x" + width);
    string imgUrl = ConfigHelper.GetImageServerBaseURL(m_asOwner).Replace("plumtree",isrvrPath);
    sb.Append("<object CLASSID=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" ");
    sb.Append("WIDTH=\"" + width + "\" ");
    sb.Append("HEIGHT=\"" + height + "\" ");
    sb.Append("codebase=\"");
    sb.Append(httpFix[0] + "//active.macromedia.com/flash3/cabs/swflash.cab#version=3,0,0,0\" id=\"ShockwaveFlash1\">");
    sb.Append("<param name=\"MOVIE\" ");
    sb.Append("value=\"" + imgUrl + fileName + "\">");
    sb.Append("<param name=\"PLAY\" value=\"" + swfPLAY + "\">");
    sb.Append("<param name=\"BGCOLOR\" value=\"" + swfBGCOLOR + "\">");
    sb.Append("<param name=\"LOOP\" value=\"" + swfLOOP + "\">");
    sb.Append("<param name=\"QUALITY\" value=\"" + swfQUALITY + "\">");
    sb.Append("<param name=\"SCALE\" value=\"" + swfSCALE + "\">");
    sb.Append("<param name=\"WMODE\" value=\"" + swfWMODE + "\">");
    sb.Append("<embed SRC=\"" + imgUrl + fileName + "\" ");
    sb.Append("WIDTH=\"" + width + "\" ");
    sb.Append("HEIGHT=\"" + height + "\" ");
    sb.Append("PLAY=\"" + swfPLAY + "\" ");
    sb.Append("BGCOLOR=\"" + swfBGCOLOR + "\" ");
    sb.Append("PLUGINSPAGE=\"" + httpFix[0] + "//www.macromedia.com/shockwave/download/index.cgi? P1_Prod_Version=ShockwaveFlash\">");
    sb.Append("</object>");
    strShowThis = sb.ToString();
    HTMLElementCollection result = new HTMLElementCollection();
    result.AddInnerHTMLString(strShowThis);
    return result;
    #region interface stubs
    /// <seealso cref="com.plumtree.portaluiinfrastructure.tags.ATag#GetTagType()"></seealso>
    public override TagType GetTagType()
    // This tag does not display any of the HTML inside the tag,
    // and must be used as a singleton tag.
    return TagType.NO_BODY;
    /// <seealso cref="com.plumtree.portaluiinfrastructure.tags.ATag#SupportsAccessStyle(AccessStyles)"></seealso>
    public override bool SupportsAccessStyle(AccessStyles _style)
    // This tag does not display any JavaScript, and therefore
    // supports all access styles.
    return true;
    /// <seealso cref="com.plumtree.portaluiinfrastructure.tags.ATag#Create()"></seealso>
    public override ATag Create()
    return new FlashTag();
    #endregion
    Edited by: tjannotta on Nov 17, 2009 8:58 AM
    I replaced our company namespace info, etc. w/ 'foo'. Replace or strip out as you see fit!
    Check out my post higher up on this page for attribute instructions and example implementation

  • Firefox crashes on windows 7 when accessing flash websites

    Hi.
    When I use fire-fox, it keeps on freezing when i'm accessing any websites that use flash. Googling this problem wouldn't solve it. I have updated firefox to the latest / adobe but it wouldn't solve the problem. If I use another firefox based product like Palemon or Sea monkey, same issue occurs. Other browsers like Chrome crashes when I start it, opera crashes too much and IE is crap and slow and doesn't support much, so firefox is the only solution.
    I tried firefox on my friends laptop (mac) as it worked fine.
    It is definitely a windows 7 issue.
    It is associated with plugin-container.exe.
    No crash logs or any bug reporters were appearing.
    I also tried reverting to the prev version (both flash and firefox) but didn't help. This is very strange. Any help please?

    I have begun having this problems on both of my machines. One is running Vista and the other Windows 7 home premium. Both are fully up-to-date. When a page contains flash content, Firefox's memory usage continuously increases to the point that FF crashes.
    The problem started after I selectively blocked images and objects via Tools>Page Info>Media on a page that I was on. Firefox has become totally unusable if I have Flashplayer enabled and a page contains Flash content. I have disabled Flash in Firefox, but have to use Chrome to access sites where I must have Flashplayer enabled.
    Hopefully this will be corrected quickly.

  • How to access Flash Apps over https with a self signed certificate?

    I have a Flex app that needs to access data from a SOAP web service over https with a self signed certificate. The app needs to ignore the https warnings, just as a browser would warn & allow the user to proceed. Buying a valid signed certificate is not an option for us.
    It works fine over http.
    How can I achieve this?
    I read that URLRequest has a property: authenticate, that I can set to false. However, this property is available only for Adobe AIR applications from what I can see. This doesn't seem available for Flex apps.
    I have tried this in both Flex 3 & the latest Flash Builder 4. Have the same issue in both cases.
    Help appreciated.
    Thanks

    You'd really need to ask in the Flex or Flash Builder forums as this is a front end code modification and Flash Player can't do any of that.

  • IFS Access from Portal (Sample Portlets)?

    Just wondering if there are any sample JSP/Servlet Portlets floating around illustrating access to iFS (9.0.3 cmsdk) for document storage/management. Something that is a true portlet that lives properly within a portal environment would be ideal.
    thanks

    I was aware of the Oracle sample, but it really isn't that functional as indicated by other threads in this forum. It basically is a link to the iFS WebUI that jumps out of portal. In any case, we intend to work with the cmsdk which does not support WebUI.
    Can anyone share/point to some examples of portlets (JSP,Servlet based) that can access the facilities of cmsdk.
    thanks

  • How to access Flash elements panel in DW SC3?

    when I insert Image Viewer and every time I click on it the
    Flash elements panel shows up automatically.
    However if I close the panel group, I can no longer get the
    Flash elements panels when I click on the Viewer and I can't find
    any access or menu that opens this panel. The only way I found is
    to create a new viewer and undo. Does anyone know how is one
    suppose to access this panel after being closed?

    1.  First, minimize the file panel by clicking in the dark bar at the very top of the file panel (the one that has a little arrow on the right side), which will make the file panel tiny (no file names will be shown).  Unless you have previously removed assets and snippets by dragging their tabs out and closing them, the tiny file panel will be attached to the asset panel and snippets panel, so you will be minimizing all of these at once.
    2.  Next, drag the file panel to the level that has tabs saying, Code, Split, Design. 
    3.  Then drag the file panel to either the far left of the screen or far right of the screen, which will cause it to dock. 
    4.  Finally, click the tiny arrow on the top right of the dark bar of the file panel; this will expand the file panel again so that you can see your file names. It will also expand the assets panel and the snippets panel if they are attached.

  • Accessing Flash variables in MCs (not global)

    Hello,
    Just to make sure : you can't access variables that are in
    movieclips,
    can you ?
    I suppose I need to write get/set function whithin Flash to
    alter those
    variable ?
    Thanks
    PJ

    > you can't access variables that are in movieclips,
    > can you ?
    I /think/ you can, and that it's a matter of addressing the
    clip and
    variable properly. For example:
    put sprite(1).myClip.myVariable
    would suggest that sprite 1 points to a #flash cast member
    which has a
    movieClip in the _root timeline named myClip which in turn
    contains a
    variable named myVariable

  • Accessing flash movieclips and textfields in flex

    How can I access movieclip and textfields from flash in flex. Suppose I have a dynamic textfield with instance name txt inside a movieclip with instance name mc on stage how can I change the text of the textfield in flex using a swfloader. Has anybody done anything similar.

    Swfloader.content.mc.txt
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Accessing flash drive on macbook air

    hi, i recently got a air mac and needed to transfer all of my music, movies and photos from my old laptop onto a usb flash drive but im having trouble trying to figure out how to transfer the information from the flashdrive onto my mac, i dont know how to access the documents. thanks

    Choose Computer from the Finder's Go menu, double-click that drive, and drag the files to the desired locations. You'll also need an application capable of opening them.
    (96903)

  • Can't access flash settings to disable acceleration

    Hello,
    I am getting the "black rectangle" on youtube videos, and I have narrowed the cause down to my lack of hardware acceleration.  Unfortunately, despite clicking "settings" by right-clicking where the video should be, no settings dialog opens up.
    How can I access the settings dialog to turn off hardware acceleration? 
    This is using a Mac OSX Snow Leopard with the latest Adobe Flash plugin and this happens on both the latest Firefox and Chrome.
    Thanks for any help,
    K

    Thanks. That allowed me to get to the font settings and realise that that wasn't the problem. It was actually Display/Resolutions, which I thought I had already checked.

Maybe you are looking for