Additional Trigger for Lightbox Composition

Hi guys,
I would like to add a second trigger (button/text) to a lightbox composition in Muse. This however is not a available feature in Muse (you cannot duplicate or add a trigger). So I was thinking about accomplishing this by embedding a script with .mucow or  editing the lightbox script, but I couldn't find the code which displays the lightbox. Do you have any solution, or any idea where I should be start looking? Thanks alot!

You could create a blank composition widget, using the that trigger, then inert the Lightbox widget inside composition widgets box. (widget inside widgets work).

Similar Messages

  • Final trigger for lightbox seems to load in active state

    i am a total noob
    i designed a site with a lightbox and 5 triggers.
    i made the triggers blank boxes and overlayed them on a grid of 5 photos.
    i also added txt to each trigger to define its rollover state- normal is no fill/ rollover and pushed is filled/ active is no fill.
    for some reason, the final trigger does not do the roll over action for the text box. i think it is because it loads into the active state but i can not be sure.
    i noticed that once the corresponding triggers are activated, the text boxes do not resume they're roll over behavior- they remain in the active state.
    this is the site www.joepennella.com
    the trigger i'm taling about is on the bottom right- for "commencement"
    any guidance would be greatly appreciated
    max

    how do i change it so that when the page loads that text frame loads normal state? i can't seem to get this particular txt frame to do that. all the others do it. i've deleted it, copied another, made it from scratch- this last one always seems to load in active state
    also, after coming out of the lightbox- is it possible to make the txt frame return to normal state?

  • Tooltip Trigger for Lightbox Display

    Is it possible to have a tooltip as a lightbox trigger?
    In other words, you hover over the trigger and a tooltip pops up, click the trigger and a lightbox display appears.
    My goal is to have an image of a hand pointing at the trigger when you roll over it, and disappear when you move your mouse off. Click the trigger and a lightbox display appears with more information.

    how do i change it so that when the page loads that text frame loads normal state? i can't seem to get this particular txt frame to do that. all the others do it. i've deleted it, copied another, made it from scratch- this last one always seems to load in active state
    also, after coming out of the lightbox- is it possible to make the txt frame return to normal state?

  • Trouble with Lightbox Composition and triggers

    I find working with the lightbox composition and triggers utterly infuriating!
    I am trying to build a page with multiple lightbox compositions on it and I want each lightbox (and each slide within) to be identical - i.e. all to be the same size image frame, the same size text frame and styles etc. I have set up one with 6 slides and can copy and paste this down the page, but I am trying to add more triggers (and images) on some lightboxes and this is where I have difficulty. When I click the 'add trigger' button it adds another trigger but doesn't add the image frame or text frame. I then try to copy and paste the image and text frames onto the space but instead of this working as expected it simply adds the image on top of all the other images (and my previous and next buttons). If I try to 'send backwards' it puts the image frame behind the main container.
    Is there a way to add a trigger so that it basically duplicates the previous slide into the next, where I could then simply change the image and text?
    I also want all but the first of the triggers to be invisible. Is there a view mode that shows frame edges (as you can in InDesign) so I can see where the other triggers are? Currently I make all the triggers a solid colour until just before I publish the site when I make them all invisible. However once published if I need to edit the site I can't go back in a quickly select all the triggers, I have to stab around blindly until I happen to select them. It would be great if there was a way to view the frame edges - this would also make it handy when moving items so you don't overlap them inadvertantly, or would show me if I have an empty frame sitting somewhere.

    As of now every new trigger you add you get a blank target frame without any of the contents from the previous slide. You may submit this as an idea to either allow to add new frames based on a defined template or allow an existing frame to be duplicated.
    For now, you can copy all the objects in an existing frame and copy them. Then select the target frame and do an Edit > Paste in place. This would paste the content on top of the widget (not part of the target frame yet). Now with the content still selected click on one of the objects with mouse and nudge the selected objects a little bit (a pixel or two) - this would add them to the target slide. Then you can again select them and nudge them back in place as required.
    For selecting transparent triggers, you can select the one visible trigger and then right-click/ctrl+click and choose "Select Same (Trigger)". This would select all the triggers in the widget and allow you to set fill or stroke to them all at once.
    Cheers,
    Vikas

  • [svn:osmf:] 13002: Some fixes for the composite view trait.

    Revision: 13002
    Revision: 13002
    Author:   [email protected]
    Date:     2009-12-16 13:04:30 -0800 (Wed, 16 Dec 2009)
    Log Message:
    Some fixes for the composite view trait.  Integrated some of the unit tests (though some still break and are commented out).
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositeViewTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelViewTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/SerialViewTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/LayoutContextSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/MediaFrameworkTests.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestParallelElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestSerialElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/DynamicMediaElement.as
    Added Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestParallelElementWithV iewTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestSerialElementWithVie wTrait.as

    It's important to understand what traits are and what they're not:
    Traits are not intended to be generically extensible:  there's a fixed set within the framework (although we may add additional traits in the future, to support new Flash/FMS capabilities).  We experimented with making them fully extensible, but it turned out to be not worth the cost, particularly since there shouldn't be that many traits in a media system.
    Traits represent fundamental characteristics or capabilities of the media in its context.  For example, some media is playable (videos), other media is not (images).
    A trait cannot apply to all media types.  If it could, then there would be no reason to model it as a trait, instead we would model it as part of the MediaElement.  Metadata is a good example of this, in that any MediaElement might have some metadata associated with it, so it wouldn't make sense to make metadata a trait.  Similarly, any MediaElement has the ability to go into fullscreen mode, so I wouldn't model the ability to go fullscreen as a trait.
    On a semi-related note, I'm often asked (inside Adobe and elsewhere) for a technical overview of OSMF.  I've posted the slides that I use for this purpose here:
    https://sourceforge.net/adobe/osmf/wiki/_discuss/thread/d6c3d719/1962/attachment/OSMF%20Ar chitectural%20Building%20Blocks.pdf
    The slides cover the fundamental building blocks of OSMF, things you are likely to use over and over if you're building complex media experiences.  They might shed some light on which different parts of OSMF should be used in which situations.

  • Lightbox composition auto play upon page load

    Hi,
    Is there any way to have a lightbox composition auto play without having to click the trigger first? i.e. I'm toying with the idea of having a small welcome video play on my site via the lightbox function, but without someone having to click the trigger to get there.
    Hope that makes sense. Is it possible to do?
    Thanks,
    -Kristine

    Please refer to similar discussion here :
    https://forums.adobe.com/thread/1476283
    Thanks,
    Sanjit

  • Is it possible to remove a trigger from a composition?

    I've got a portfolio-type website where I'm using a series of thumbnail stills in a composition to trigger a lightbox with larger examples of the stills. I want to change a couple of the thumbnail triggers so they send the user to an external website instead of the lightbox popup. Is that possible or do I need to disassemble the current build and rebuild with selective items in the lightbox comp? Apologies if this has come up before, I did a quick search but am new to Muse and the community forums here. Thanks!

    So if I understand this correctly, you would like to use the Lightbox composition widget with say like three triggers, but have only two of them pop up an image in a lightbox, the other trigger should take you to an external website? If that is what you'd like to achieve, you can add a rectangle over one of the triggers with the same color as that of the background, remove the stroke from it and link it.
    Thanks,
    Vinayak

  • [svn:osmf:] 13236: Additional updates for ViewTrait API changes.

    Revision: 13236
    Revision: 13236
    Author:   [email protected]
    Date:     2009-12-30 23:19:55 -0800 (Wed, 30 Dec 2009)
    Log Message:
    Additional updates for ViewTrait API changes.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/posterframe/RTMPPosterF rameElement.as
        osmf/trunk/apps/samples/framework/HTMLGatewaySample/HTMLGatewaySample.as
        osmf/trunk/apps/samples/framework/HelloWorld/HelloWorld4.as
        osmf/trunk/framework/MediaFramework/.flexLibProperties
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositeMediaTraitFactory.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/MediaPlayer.as
        osmf/trunk/framework/MediaFramework/org/osmf/proxies/ListenerProxyElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/swf/SWFElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/DisplayObjectTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/MediaTraitBase.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/MediaTraitType.as
        osmf/trunk/framework/MediaFramework/org/osmf/utils/OSMFStrings.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestParallelElementWithD isplayObjectTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestSerialElementWithDis playObjectTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/gateways/TestRegionGateway.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestMediaElementLayoutTarget. as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamDisplayObjectTrait. as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/proxies/TestListenerProxyElementAsSu bclass.as
        osmf/trunk/framework/MediaFrameworkIntegrationTest/org/osmf/content/TestContentElementInt egration.as
        osmf/trunk/plugins/MASTPlugin/org/osmf/mast/adapter/MASTAdapter.as
    Added Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelDisplayObjectTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/SerialDisplayObjectTrait.as
    Removed Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelViewTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/SerialViewTrait.as

    In reference to this change in the Custom Reports... Better experience when exporting data - to prevent customer confusion when exporting data from Mac computers, we have removed the export to excel option and exporting in CSV format by default.
    What is the customer confusion we are trying to stop here? I've got even more confused customers at the moment because all of a sudden they can't find the export to excel option but know it exists if they log in on a PC?
    Mark

  • Using a OAM to Trigger a Lightbox in Muse

    Hello,
    I am wondering if you can use a OAM to trigger a lightbox in Muse, or a  clever work around to do it. Tried placing one inside a trigger, but the link becomes unclickable.
    I have been searching and reading for an answer, and have not found a solution. I'm just assuming this can't be done right now, but it was worth a shot.
    Thanks!

    Hi,
    Was this ever solved? I am also having the same problem.

  • About a year ago I purchased the student addition of the Adobe Creative suite 6 Design Standard and just recently purchased an additional computer for my home. Can I use the same disc that I previously purchased to download the program?

    About a year ago I purchased the student addition of the Adobe Creative suite 6 Design Standard and just recently purchased an additional computer for my home. Can I use the same disc that I previously purchased to download the program?

    Yes, as long as the machine meets the system requirements for the software you can install and activate it.  Your license allows you to have the software installed and activated on two machines.

  • One trigger for Multiple tables

    Hi all,
    I want write a trigger for mutiple tables.
    For Example,
    In database schema,some user update one table.I want to capture what the table and capture old value and new value.
    the above example for all insert and delete also.
    Regards
    Fame

    Hi, Fame,
    Sorry, a trigger only works on one table, so you need a separate trigger on each separate table.
    All of those triggers can call a common procedure.
    If you'd like to give a more detailed description of what you want to do, using two or three tables, then someone can give you more detailed instructions on how to do it.
    Always say which version of Oracle you're using.

  • I purchased additional storage for my phone not realizing it was storage for icloud. Can I get a refund?

    I purchased additional storage for my phone not realizing it was storage for icloud. Can I get a refund?

    You cannot buy additional storage for your iphone at all.
    You can contact itunes support and ask if they will allow a refund.

  • "unexpected additional time for review"...Any Ideas what this means?

    I received the following from apple, anyone know what it means, Have not heard from them since... I have 3 apps for sale and have not seen this before... are they just swamped? Or is this something specific to my app? Thoughts?
    thanks for reply
    michael
    {quote}
    Hello,
    Your application, MY APP NAME, is requiring unexpected additional time for review. We apologize for the delay, and will update you with further status as soon as we are able.
    Thank you for your patience.
    Regards,
    iPhone Developer Program
    {quote}

    It usually means there's something questionable about your app and Apple doesn't have a formal policy yet of how to handle it. From what I've read with other people in a similar situation, it might be because Apple suspects your app is doing something in violation of the SDK rules, but it's a grey area.
    I read one person say they received such an email when they had an app that simulated smoking (kinda like iBeer, but for cigarettes). Apple's legal team was probably mulling it over for awhile to figure out whether it deserved outright rejection or might be allowed in the store.
    Sometimes, once your app is in this status, it will be there for MONTHS. Yes, months. Best advice is once you receive such an email move on to a new app idea. Your app might eventually be accepted, but no telling how long it will take and Apple is usually silent in regards to further email queries asking for clarification.
    I have an app in this state right now. The questionable part of my app is that under certain circumstances the app simulates a cracked screen. The app was initially rejected and when I pointed out that another app (Sonic Boom) already does this and is approved in the store, I received this status update that my app is now requiring additional time for review.
    Hopefully it really means Apple is reconsidering their position and it's not a way to just put my app on hold indefinitely.
    Yes, it's frustrating, and yes, it makes me rethink the whole idea of investing serious time in developing apps for the iPhone.

  • I have used the "description" spot in iPhoto for in-depth additional information for photos of my ancestors. Now I am wanting to know if there is a way to print the photos along with the descriptions; either photo by photo, or maybe more than one per page

    I have used the "description" spot in iPhoto for in-depth additional information for photos of my ancestors. Now I am wanting to know if there is a way to print the photos along with the descriptions; either photo by photo, or maybe more than one per page, or possibly in some sort of booklet format. Thank you very much.

    You can make a Book and have a photo on one side and your text description on the other.

  • Additional article for free goods-  Exclusive Bonus buy

    Dear All,
    Additional article for free goods in bonus buy
    In exclusive free goods, a material different from the orignal material can be specified as the free goods.
    Example: A customer who buys 3 pieces of Trouser's, gets 2 pieces of shirt free.
    So my question is , how can i add 2 pieces of shirt free if it has different variant (ex: i want to enter Red colour  & Green colour article ) in bonus buy, As in Bonus buy we only can enter one line item.
    Please help....
    Regards
    Saurabh

    in VBG1
    1. enter the name of the Article grouping, e.g. Shirt1
    2. at tab Article, enter article number(s) and quantity. in your case, enter the variants of the generic article (one for red shirt, one for green shirt, or whatever). enter quantity 1 for both variants.
    3. save
    when creating the bonus buy,
    1. select radio button Article Grouping
    2. enter the article Grouping you just created in "Article Grouping" <--- this is the bonus articles, not the preriquisite
    please notice that the "FreeGoods" is 1 - inclusive; however, it doesn't matter here.
    this is probably different from what you normally do when creating a normal free goods condition in SD. since the prerequisite article is already maintained in the area below. that means the article grouping you just maintained in step 2 is the bonus. as a result, the 2 articles in the article group are bonus articles.

Maybe you are looking for

  • Question on the Timing of upgrade and pre-ordering

    Down and dirty: 2 lines, family share. One upgrade is already up, second phones upgrade is up Feb 8th.  Since the phone isn't due out until the 10th (or so for preorders), would I be able to put in for the upgrade for both on the 3rd, or would I have

  • Exception CX_SY_OPEN_SQL_DB while executing a BSP page

    Hi, I have created a BSP app'n with 2 pages. In one page i am using a class interface within that one method. In that method im firing a select query. If i run the BSP page, im getting the CX_SY_OPEN_SQL_DB exception with DBIF_RSQL_INVALID_RSQL error

  • Express Document Update was Terminated by "...."

    Hi, Some of my users are having the above problem, when i checked in transaction code st22, it shows Runtime Errors: PERFORM_NOT_FOUND Except: CX_SY_DYN_CALL_ILLEGAL_FORM Users are using VA01,VA02 when having this problem. Anyone with similar problem

  • Video file converter question..

    Does anyone have a suggestion for a good, free video converter that will convert avi to mpeg? Thank you!

  • Success! All fixes together in one thread...step-by-step...

    Okay, after one and a half days of bad installs, error messages, and reading this board I've FINALLY gotten v5.0 to work on my XP system. How'd I do it? Well, I took ALL the fixes offered on this site and did them all at once. Here's what I did...ste