Is there a way of parenting objects in Muse?

Hi, I'm creating a page where there are some parallaxing elements.
I want a tooltip widget to stick to one of these parallaxing objects, but they keep sliding apart.
It seems it's a too clumsy method to make the widget have the exact same parallaxing effect as
the object, so I'm wondering if there is a way to parent the object to the widget, like in AfterEffects?
Other solutions are welcome too, of course.

Hi
You can try to group the objects and then apply scroll on all, else try to insert tooltip inside any other composition and then apply scroll to that composition.
Please let me know if I am missing something here.
Thanks,
Sanjit

Similar Messages

  • Is there a way to access object from other schema?

    1. Is there a way to access object from other schema
    Without using synonym/public synonym without prefixing schema owner?
    2. If you do not see any object in all_objects by same name owned by connected user or public, can there still be objects hidden from this view? for instance synonyms created by SYSTEM
    TIA for help

    Well, you missed something somewhere. If there is no
    ALTER SESSION SET CURRENT_SCHEMA=whoeverthen there must be either public synonym for the object as this shows:
    SQL> CREATE USER a identified by a;
    User created.
    SQL> GRANT CREATE SESSION to a;
    Grant succeeded.
    SQL> CREATE USER b identified by b;
    User created.
    SQL> GRANT CREATE SESSION, CREATE PROCEDURE, CREATE PUBLIC SYNONYM to b;
    Grant succeeded.
    SQL> connect b/b
    Connected.
    SQL> CREATE PACKAGE test AS
      2     PROCEDURE testit;
      3  END;
      4  /
    Package created.
    SQL> CREATE PACKAGE BODY test AS
      2  PROCEDURE testit IS
      3  BEGIN
      4     NULL;
      5  END;
      6  END;
      7  /
    Package body created.
    SQL> connect a/a
    Connected.
    SQL> desc b.test
    ERROR:
    ORA-04043: object b.test does not exist
    SQL> connect b/b
    Connected.
    SQL> GRANT EXECUTE ON test TO a;
    Grant succeeded.
    SQL> connect a/a
    Connected.
    SQL> desc b.test;
    PROCEDURE TESTIT
    SQL> desc test;
    ERROR:
    ORA-04043: object test does not exist
    SQL> connect b/b
    Connected.
    SQL> CREATE PUBLIC SYNONYM test FOR TEST;
    Synonym created.
    SQL> connect a/a
    Connected.
    SQL> desc test
    PROCEDURE TESTITAnother possibility without public synonyms is that crv had granted the other user privileges on some object, and the other user creates a private synonym for that. When crv granted privileges on a different object with the same name, the private synonym became valid again. Something like:
    SQL> connect /
    Connected.
    SQL> drop public synonym test;
    Synonym dropped.
    SQL> GRANT CREATE SYNONYM TO a;
    Grant succeeded.
    SQL> connect a/a
    Connected.
    SQL> desc test;
    ERROR:
    ORA-04043: object test does not exist
    SQL> desc b.test
    PROCEDURE TESTIT
    SQL> CREATE SYNONYM test FOR b.test;
    Synonym created.
    SQL> desc test;
    PROCEDURE TESTIT
    SQL> connect b/b
    Connected.
    SQL> REVOKE EXECUTE ON test FROM a;
    Revoke succeeded.
    SQL> connect a/a
    Connected.
    SQL> desc test;
    ERROR:
    ORA-04043: object "B"."TEST" does not exist
    SQL> desc b.test
    ERROR:
    ORA-04043: object b.test does not exist
    SQL> connect b/b
    Connected.
    SQL> DROP PACKAGE test;
    Package dropped.
    SQL> CREATE FUNCTION test (p_num IN NUMBER) RETURN NUMBER AS
      2  BEGIN
      3     RETURN p_num * 10;
      4  END;
      5  /
    Function created.
    SQL> GRANT EXECUTE ON test TO a;
    Grant succeeded.
    SQL> connect a/a
    Connected.
    SQL> desc test;
    FUNCTION test RETURNS NUMBER
    Argument Name                  Type                    In/Out Default?
    P_NUM                          NUMBER                  INSo, I would go looking for the synonyms.
    TTFN
    John

  • Is there a way in parental settings to disable the ability to erase history?

    Is there a way in parental settings to disable the ability to erase history?

    Crop wasn't such a bad idea.
    Drop to be revealed clip in V1.
    Drop clip for the curtain effect in V2 and add crop.
    Set first keyframe at say 1 second for LEFT 50%, second keyframe at say 2 seconds to 100%
    Add the clip for the curtain effect again but on V3 (superimposded).
    Add crop.
    Now animate RIGHT: 1 second 50% at 2 seconds 100%.
    Done

  • Is there any way, to create with Adobe Muse HTML-Mail Templates?

    Is there any way, to create with Adobe Muse HTML-Mail Templates? or to convert the createt page to only html content? any other tool like an website copyer?
    tanks for help!

    Off the top of my head, you should be able to create mail templates in muse BUT it will require  very basic html/css knowledge on your part. I am assuming you want to do just the signature?
    Create the design you would like on one page, dont do any kind of styling in a master page. Then export the site into a folder. Open the html file with notepad/ textedit and then copy just the code for JUST the template. Throw it in you mail app of choice and it should work.
    This seems like something that would be done alot quicker in dreamweaver in design view.
    PLEASE NOTE: ^i could be completely wrong - but in theory this may work.

  • Is there any way to create objects in jstl even if its not a java bean

    please someone help me :<(
    thx in advance for the time you'll spend on my question.
    i am translating some code in jsp with embedded java to jstl. and in scriptlets they created java object of some class and using it in loop. but that class is not bean, so i can't use <jsp:useBean> tag so how do i do that here is the code
    <% TabLayoutConfiguratorImpl tabsConfigurator = new TabLayoutConfiguratorImpl();
    %>
    <logic:iterate id="tab" name="tabList" type="TabItem" >
    <% // compute href
    if (!tabsConfigurator.isHidden(tab))
    -----statements-----
    %>
    </logic:iterate>
    how can i create TabLayoutConfiguratorImpl class object and use everything should be done in jstl? is there any way at all?
    here is my class
    package conf;
    import javax.servlet.http.*;
    import org.apache.struts.tiles.ComponentContext;
    public class TabLayoutConfiguratorImpl implements TabLayoutConfigurator
    public void configure(HttpServletRequest request) {
    HttpSession session = request.getSession();
    ComponentContext context = ComponentContext.getContext(request);
    this.configureDefinition(context);
    java.util.Iterator i = ((java.util.List) context.getAttribute("tabList")).iterator();
    while (i.hasNext())
    TabItem tab = (TabItem) i.next();
    this.configureTab(tab, session);
    // subclasses should override this if there the attributes in the Definition
    // need to be manipulated
    protected void configureDefinition(ComponentContext context)
    // default implementation does nothing
    // subclasses should override this if tabs in the definition
    // need to be manipulated
    protected void configureTab(TabItem tab, HttpSession session)
    // default implementation does nothing
    // subclasses should override this if they want to hide tabs in the
    // configuration
    public boolean isHidden(TabItem tab)
    // default implementation returns false - ie they are visible
    return false;
    }

    I don't see what is wrong with
    <jsp:useBean id="tabsConfigurator" class="com.mypackage.TabLayoutConfiguratorImpl"/>
    The class has a no-args constructor at least. The useBean tag will work with it. Probably.
    But still, some code just can't be translated into scriptless JSTL.
    Calling methods which take parameters is one of those things.
    In this case you probably want to write a custom tag to work with your tabs
    I would probably look at using custom tags like this:
    <%@ taglib prefix="tab" uri="/WEB-INF/TabLayout.tld"%>
    // tab to create the configurator.
    // either export it as a var, or use other tags only nested within this one
    // so you can get access to the configurator.
    <tab:configure var="configurator">
      <tab:render configurator="${configurator}" tab="${tab}">
    </tab:configure>I don't know exactly what the scriptlet code will be doing. But I think a custom taglib would be the only way to eliminate scriptlet code that you have here.

  • Is there a way to print object addresses?

    Hi,
    I know if i do System.out.println(objectA); and the object has NOT overwritten the toString() method, then the object's address is printed out, but is there a way to get the object's address if the toString() method is overwritten? thanks!

    The bigger problem IMO is that the hashcode (identity
    hashcode) can change over time. You sure about that?
    From hahsCode docs: Whenever it is invoked on the same object more than once during an execution of a Java application, the hashCode method must consistently return the same integer, provided no information used in equals comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application.
    Even if an object's address changes, I wouldn't think that any information used in equals would change. In partciular, obj == obj will always be true, and since Object.equals returns ==, it follows (I think) that an Object's hashCode (and hence identity hashCode) is constant over the life of that object.

  • Is there a way set the object type defaults in the Profile Matchup (PEPM)?

    Our users would like to have the Profile Matchup (PEPM) default the object type to P (Qualifications profile of Person) and S (Requirements profile of Position).  Currently launching PEPM defaults to U (user) and S (position).  Is there a way to change the default value from U to P using a PID? or some other method?
    Thanks in advance,
    - Lora

    Hi Lora,
    I can't think of a way without changing the program behind it.
    Regards,
    Priya.

  • Is there a way through parental controls to limit time by weekly totals?

    OK, so I am trying to limit time on the computer by hours per week instead of a daily total.  is there any way that anyone knows how to do this?
    For example, I would like to limit computer use to 3 hours total per week.
              That being said, I would like to 3 hours to be able to be used whenever.
    It could be monday morning for 3 hours, or friday for 3 hours.
    Or monday 1 hour, tuesday 1 hour, and wednesday 1 hour.
    however the user wants to spend their 3 hours.
    Anyone have any ideas?                          

    The sponsor is not happy for low res printing either. As an organisation we should be looking at DRM more closely, and we've added to the requirement with this problem. We are also going to look in to the option of attaching metadata and scanning that at our exit points (e-mail, printers, usb's, etc.) so that users have free reign internally but can't send sensitive documents out. Obviously it's all going to be very expensive!
    Cheers for the respones guys.

  • Is there any way to make Object size permanent in Pages?

    Hi. Does anyone know how to make the size of an object permanent? I use a lot of clip art and after resizing it, I would like it to stay that size but each time I select an object, the size selection box always appears. This is mainly a problem for Pages for the iPad.
    Appreciate any help

    Only if you have used a character style to italicise the words. If you have that you can change one of the word to a chosen colour and all words with that style will get the new colour

  • Is there any way to publish from Adobe Muse directly to a domain without Business Catalyst?

    I'm getting extremely frustrated with Adobe Muse. I think it's ridiculous having to go through Business Catalyst to publish a website when I have already purchased my own domain. Please tell me there is a way around this.

    No problem. We recognize it would provide a more consistent user experience if we merged all possible output paths under the "Publish" experience. It's just not something that's hit the top of the priority list, yet. Enjoy Muse.
    Just as an fyi, there are currently 2 features that require BC hosting, so you may want to keep those in mind as you plan/develop your site.
    1) The CAPTCHA field in forms; and
    2) The In-Browser Editing functionality.
    We are aware many customers would like to see these features enabled on non-BC hosting.

  • Is there a way to use movies in Muse?

    I understand that HTML5 uses various movie formats for different browsers, like .wem and .ogv. I have movies in the necessary formats that I want to use on my website. Does Muse allow any or all of these formats to be inserted?

    Hi,
    Check this thread, discussing the similar issue
    Re: What video format that is compatible with Muse

  • Is there a way to scale down the movement of a parented object, while keeping it on the same path as the parent?

    I have three elements in my comp--a foreground element, a mediumground element (a tree), and a background element (the sky). I want to parent
    the medium and background elements to the path of the foreground element--but since they are farther away form the camera, they would not move
    as much as the foreground layer. Is there a way to parent these two layers to the foreground element, and then scale back the percentage of their movement?

    I think you are making this much too difficult. If you have foreground, middle ground, and background layers make them all 3-D and arrange them in 3-D space then add a camera and move the camera. Your parallax shift will be automatic and perfect if you arrange the layers properly.
    As you move the layers in z space you can scale them up so your composition looks right. You can't even use a simple expression to tie the distance of the layer to the camera to automatically fix the scale.
    If you want to just move a layer on the x axis half as far as the foreground layer moves in x then the expression would look like this:
    mlx = thisComp.layer("master").position[0];
    sf  =  .5 // scale factor;
    nx = mlx * sf;
    [value[0] + nx, value[1]]
    In English this expression says mlx equals the master layer x value
    The scale factor (sf) is 50% experssed as a decimal
    The new x value (nx) is equal to the master layer x position times the scale factor
    Then you just write an array for the original x value plus the new x value  and take the existing y value from this layer.
    This expression gives you the opportunity to keyframe both the X and Y position of the layer.  If I wasn't typing this post on my phone I would've taken the time to subtract the master layer X and Y position from Half of the comp height and width so the following layer would not have to be brought back into position after writing the expression.

  • Is there a way to make a linked PDF open in Acrobat instead of the browser?

    I would like to make a PDF open in Acrobat instead of the browser, so that the user can see its interactive features. Is there a way to do this in Muse? Or does it always spend on the user's browser settings?

    This would depend on the browser plugin installed , if browser does not have reader plugin then pdf will not open in browser.
    Not much can be done via Muse , but you can try some settings on pdf like password protected etc.
    Thanks,
    Sanjit

  • When you stop a slideshow in Muse by clicking on a thumbnail, is there a way for the slideshow to automatically resume?

    Is there a way for a slideshow in Muse to resume after you have stopped it to spend more time viewing one of the images?

    Hi
    With current stage we dont have resume feature for slideshow.
    You can check our future release by joining pre-release forums.
    Thanks,
    Sanjit

  • Is there any way to connect a mobile site made with Muse to a MySQL database?

    I've began the beginning stages of building a mobile site with the trial version of Muse and am really enjoying the functionality and ease of use. I'm eager to purchase the full version but one question stands in the way at the moment.
    The plan with this mobile site is to have it offer many if not all of the same features and functionalities of the desktop version. In order to achieve this I need to be able to sync the site up with a MySQL database, is there any way to achieve this in Muse? If not is it possible to do this once the site has been exported as HTML or uploaded to an FTP host?
    Thanks all!

    It would take a significant amount of work as you would have to change the pages to PHP. You would also lose any more compatibility with Muse.
    An alternative would be to host with Adobe Business Catalyst and upgrade to the eCommerce hosting plan and do your database functions using Business Catalyst Web Apps. It is a bit of a learning curve but in my opinion the better option than hosting on third party hosting and trying to convert everything.
    Keep in mind that even if you change the pages to php to add mySQL connection this would all have to be done by hand or with Dreamweaver. Muse does not support Database connectivity or dynamic content. The only real practical workaround is to use Business Catalyst along with Muse.

Maybe you are looking for

  • BW Info Cube

    Hi Guru’s I want to know how BW info cube are coming to CRM system and how we are sending data from BW Server to CRM server can any one give me brief Information about this BW Info cube Many Tanks’ Mahesh Kumar [email protected]

  • Film plays in shared library....

    but wont actually sync to my ipad??

  • Dynamic Extract.  Do Not Want Leading Zeros in Pipe Delimited Record

    Greetings, I am using the following code to create a pipe delimited extract file dynamically.  The problem: leading zeros are being lost.  For example, when I do an extract of BKPF, BELNR is appended to the extract without leading zeros.  This is a p

  • Which Mac Pro to buy for Logic Pro and Final Cut Pro X?

    Hi, I'm considering to buy a Mac Pro for my personal studio. I have 2 choices in my mind: 1st one is the "Quad-core (one 3.2GHz Quad-Core Intel Xeon) with 6GB RAM", and the 2nd one is "12-core (Two 2.4GHz 6-Core Intel Xeon) with 12GB RAM". I'll be ma

  • Use the same apple id of apps to ibooks

    Hi, I wnat to use my apple ID tha I have for publishing apps of ios and MAcos with publishing ibooks. I try to create in a itunes conect an acount to distrubute books, but itunes conect dont let me do it with my apple id that I have for apps Is not p