#component prototype help!
14 messages · Page 1 of 1 (latest)
Sorry, just to clarify - you have the main component in a frame representing a page or is it somewhere else and you have instances of it in all pages?
i have the main component on the homepage right now, and the components are copied to the other pages
this is what it currently looks like
those direct to their designated frames
the solution i have found but sounds very inefficient is going into each frame and altering the copied component to direct to the home page
maybe this will help clarify some things
^ this is an altered component
^ this is the main component
this is the interaction page on the main component frame, i cannot open the homepage overlay
Ah I see what you're doing.
Try decoupling the main component from the page, just set it outside of the frame and then connect the home wire. Once all the wires are connected drop an instance of it on each page, that should work!
So basically:
- main component doesn't live on a page
- main component links to pages
- instance of main component (with the links) lives on each page including the home page
Generally speaking main components should not be tied to a page. Creates some weird behaviors in prototypes & also managing libraries gets tougher when you need to chase the mains down!
oh no way