Questions tagged [walkthrough]
55 questions
45
votes
2 answers
Is there a gdb command to finish a loop construct?
In gdb, I have the finish command to easily finish execution of a function frame, often when walking through code in the debugger, after looking at a few iterations of a loop, I'd like to finish the loop and continue walking after it. Presently, I…

WilliamKF
- 41,123
- 68
- 193
- 295
10
votes
5 answers
How to use Python 3 and Django with Apache?
My goal is to set up Python 3 with Apache. My biggest problem is actually acquiring mod_python.so. For the life of me I found only one site where it could be downloaded (http://www.modpython.org/) and what I got was a bunch of build and install…

Hubro
- 56,214
- 69
- 228
- 381
8
votes
4 answers
C++ Walkthrough cout.setf(ios::fixed); and cout.precision();
/* Problem 38 */
#include
using namespace std;
class abc {
double n;
public:
abc() { n = 67.5; cout << "1\n"; }
abc(double num) { set(num); cout << "2\n"; }
double get()…

Ali
- 9,997
- 20
- 70
- 105
6
votes
3 answers
Walkthrough / tooltip / demo for iPhone app
I've got an app that appeals to an older demographic. The interface is simple but with some custom controls where a simple graphic is not completely self explanatory (save to playlist, sort by genre for example).
I've seen plenty of apps with great…

Michael Morrison
- 1,323
- 1
- 18
- 30
5
votes
2 answers
How to do overlay onboarding, walkthrough, product guided tour in Angular
It's very hard to find something good looking related to guided tour, onboarding, etc. for Angular. Most of the libraries are ugly, abandoned, or built only for desktop-driven tours.
For mobile, there isn't any library to support it properly. Most…

Igor Kurkov
- 4,318
- 2
- 30
- 31
4
votes
2 answers
How to add custom view in ViewPager for walkthrough
I've used ViewPagerIndicator to get WalkThrough like most popular application. But I can't understand how to add Pictures in ViewPager which shows how to use the application.
What I want is like these Walk Through.
What i got till now.
I…

Vikalp Patel
- 10,669
- 6
- 61
- 96
4
votes
1 answer
chardinJs and Angular
Currently I'm looking for a plugin/js that I can use to show my users a small walkthrough of my site. I have jquery and angular both running on my page.
I have been using Chardin.js (https://github.com/heelhook/chardin.js). This plugin works and is…

gsitu322
- 117
- 2
- 10
3
votes
1 answer
In Flutter, How does one create a 'how this app works' walk-through?
I want to launch a simple walk-through for our app. The user would log in for the first time (or select the 'tutorial' option in settings), and it would walk you through how to use the app.
To clarify, the app would launch a dialog/alertdialog and…

nerdMonkey
- 107
- 1
- 14
3
votes
2 answers
How to Use UI-tour in Angular 6
Anyone have an idea which is the library to use UI-tour or walkthrough in angular application. I don't find any valid library except ng-walkthrough.
My need is the one where we can have more flexibility and supportability with the library.
I have…

Bharat
- 119
- 2
- 4
- 17
3
votes
1 answer
Implementing a Language Service By Using the Managed Package Framework
I've followed the steps listed in the walk through (http://msdn.microsoft.com/en-us/library/bb166360.aspx) for implementing and registering a LanguageService and I simply can't get it to work.
My package loads correctly, I can add functioning menu…

BSharp
- 91
- 8
3
votes
1 answer
How to create Onboarding/WalkThrough/ App-intro screen like this swift 3
i want to create Onboarding / Walkthrough screens in swift but my screens are transparent , i need to create each image of this screens with transparent background or better way to do this , please tell me better way to this.,,,
I want transparent…

Asmita
- 477
- 8
- 20
3
votes
3 answers
iPhone App Tutorial/Help Screen UI
What is the best way to create tutorial or help screens that can be viewed in an iPhone App on launch?
I'm debating between using two paradigms:
Edit a screenshot of the app with an image editing program to add static help text. Interaction is…

Paul Solt
- 8,375
- 5
- 41
- 46
3
votes
2 answers
How to detect a first app launching and display an instruction screen?
I am developing a walkthrough screen which should appear only the first time when the user opens the app. So far I created the walkthrough page and PageViewController.
See the picture:
I read lots of similar questions here and I understood that I…

Dakata
- 1,227
- 2
- 14
- 33
1
vote
0 answers
Is the openshift Basic Walkthrough still working?
I keep fingers crossed that this writing appears somewhere near RedHat OpenShift.
Is this walk-through still working?
https://docs.openshift.com/online/pro/getting_started/basic_walkthrough.html
My experience from today is, that creating a Project…

matjung
- 173
- 1
- 7
1
vote
0 answers
ngx-joyride with animation effect
I am working on angular 7. I have implemented ngx-joyride in my project and it's working fine. But I want that all joyride popup should show with slide animation effect. How can I do it? I tried with transition css but it's not working.

Hiral
- 77
- 8