I'm looking to create an inspector like that available in Rappid. Unfortunately, I don't have money lying around to just buy Rappid... so I was hoping to make the inspector in pure JointJs. I've tried looking around for ideas on where to start, but I can't seem to find anything useful. Does anyone know a method of creating an inspector similar to that in Rappid?
Related
I have a wireframe in Balsamiq.
I know how to link to another screen.
I would like to click a button and open a popup on the same screen. Is it possible with Balsamiq?
Unfortunately, this is not something you can achieve in our little tool which has low interactivity on purpose, as detailed here: https://blogs.balsamiq.com/ux/2011/06/17/why-we-arent-doing-interaction/
The Linking feature is indeed the best way to achieve this result in Balsamiq Mockups.
Please let us know if you need anything else, we're here to help! (support#balsamiq.com)
-Virgin from Balsamiq
I found a library, this library supports vertical scrolling cards, I want to change this library according to my needs (Horizontal scrolling).
Can anyone suggest how to implement Cards just like the mentioned library cards horizontally.
Guys I just found a library, which helped me to solve this issue.
Carousel Library
Best Library I found which I customized for my project:
https://github.com/applm/CarouselWidget
Other helpful libraries:
https://github.com/davidschreiber/FancyCoverFlow
https://android-arsenal.com/details/1/3289
I hope, this answer may help you in finding solution.
As I always suggest to ask an author and this time I'm the author of this library, I'll tell you what to do.
RecentsList is very simple and the only place you have to change is here: https://github.com/ZieIony/MaterialRecents/blob/master/app/src/main/java/tk/zielony/materialrecents/RecentsList.java#L127 . This method layouts cards inside container. You have to write your own layouting logic.
Why I don't implement that change? Because I'm not sure what do you mean by horizontal cards. Lollipop in landscape orientation shows vertical cards (at least the one I have on my desk).
The second reason is that I think I should rewrite this library from scratch. It was just an experiment with custom layouting code. Correct implementation would use view reusing and recycling just like RecyclerView and ListView do.
In gtk-2 it was possible to make an animated striped progressbar. Is this really not possible with gtk-3? I've looked everywhere on the internet and at the gtk-3 documentation and have not found anything that indicates that it is possible.
Do you mean, you want the GtkProgressBar pulsing? Use gtk_progress_bar_pulse (GtkProgressBar *widget). If this is about Theming gtk, animation control by the engine. For more animation you have to code the engine yourself, unfortunately, which is same with gtk+-2.0. Read GtkStyleContext documentation for more clearer.
I want to get a very basic interaction with a SVG loaded through Athens in Pharo using Morphic. This example shows what I'm looking for. I have used
(ASVGMorph fromFile: 'lion.svg') drawOn: Display getCanvas
but clicking the SVG makes the picture dissapear. However all examples I have seen were using a web browser. Is this possible using Athens? There is any other work in this area?
That's because you are drawing it in display canvas, which is refreshed every time... so is natural that you lost it...
What you need to do is:
(ASVGMorph fromFile: 'lion.svg') openInWorld.
or better, you probably want to put it in a window:
(ASVGMorph fromFile: 'lion.svg') openInWindow.
at the end, you will probably want it inside some other morph that you create, but debugging anyone of the solutions above with show you how to proceed :)
Yes, as Esteban pointed, to keep morph on desktop, you should add it to world, i.e. use
openInWorld, or #openInWindow.
ASVGMorph is very basic, however, and not intended to serve all possible use cases.
For more advanced uses, it is preferred to use ASVGRoot instance and draw it in own morph or compose with other drawings.
I need do a very special nav or tab bar for a app, I looked this but I not have idea how to make some similar, I work with Titanium mobile, someone with experience could tell me how to make some similar with Titanium, or if someone have other navigation bar more complex that the examples on the kitchensink.
This is where I'd start. Understand that that video is obviously a complex interface and will definitely take work on your part.
This (http://softlywired.com/ticustommenu/) piece of code will get you started, but you will need to go way beyond it writing that interface control. I'd then move on to creating the boxes that pop up, without animation, down the center. After that was working, I'd look at animating them and adding the event listeners to it.
You'd be a star in the Titanium community if you got it working and released the source code to it.